Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] drm/buddy: Documentation and internal helper cleanup
@ 2026-02-04 10:43 Sanjay Yadav
  2026-02-04 10:43 ` [PATCH 1/2] drm/buddy: Move internal helpers to drm_buddy.c Sanjay Yadav
                   ` (7 more replies)
  0 siblings, 8 replies; 11+ messages in thread
From: Sanjay Yadav @ 2026-02-04 10:43 UTC (permalink / raw)
  To: dri-devel
  Cc: intel-xe, Christian König, Arunpravin Paneer Selvam,
	Matthew Auld

This series improves the DRM buddy allocator by adding missing
documentation and cleaning up internal helpers.

It adds kernel-doc for the allocator structures and flags, covering
drm_buddy, drm_buddy_block, and the allocation flags (RANGE, TOPDOWN,
CONTIGUOUS, CLEAR, TRIM_DISABLE) to make the allocator’s design and usage
clearer for readers and contributors.

It also reduces the header surface by moving internal helpers from
drm_buddy.h into drm_buddy.c as static functions, since they have no
external users, and removes drm_get_buddy(), an unused exported wrapper
around the internal __get_buddy() helper. This clarifies the intended API
and avoids exporting unused symbols.

No functional changes.

Cc: Christian König <christian.koenig@amd.com>
Cc: Arunpravin Paneer Selvam <Arunpravin.PaneerSelvam@amd.com>
Suggested-by: Matthew Auld <matthew.auld@intel.com>

Sanjay Yadav (2):
  drm/buddy: Move internal helpers to drm_buddy.c
  drm/buddy: Add kernel-doc for allocator structures and flags

 drivers/gpu/drm/drm_buddy.c |  41 ++++++----
 include/drm/drm_buddy.h     | 149 ++++++++++++++++++++++++------------
 2 files changed, 126 insertions(+), 64 deletions(-)

-- 
2.52.0


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

* [PATCH 1/2] drm/buddy: Move internal helpers to drm_buddy.c
  2026-02-04 10:43 [PATCH 0/2] drm/buddy: Documentation and internal helper cleanup Sanjay Yadav
@ 2026-02-04 10:43 ` Sanjay Yadav
  2026-02-06  8:27   ` Paneer Selvam, Arunpravin
  2026-02-04 10:43 ` [PATCH 2/2] drm/buddy: Add kernel-doc for allocator structures and flags Sanjay Yadav
                   ` (6 subsequent siblings)
  7 siblings, 1 reply; 11+ messages in thread
From: Sanjay Yadav @ 2026-02-04 10:43 UTC (permalink / raw)
  To: dri-devel
  Cc: intel-xe, Christian König, Arunpravin Paneer Selvam,
	Matthew Auld

Move drm_buddy_block_state(), drm_buddy_block_is_allocated(),
drm_buddy_block_is_free(), and drm_buddy_block_is_split() from
drm_buddy.h to drm_buddy.c as static functions since they have
no external callers.

Remove drm_get_buddy() as it was an unused exported wrapper
around the internal __get_buddy().

No functional changes.

Cc: Christian König <christian.koenig@amd.com>
Cc: Arunpravin Paneer Selvam <Arunpravin.PaneerSelvam@amd.com>
Suggested-by: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
---
 drivers/gpu/drm/drm_buddy.c | 41 ++++++++++++++++++++++---------------
 include/drm/drm_buddy.h     | 27 ------------------------
 2 files changed, 24 insertions(+), 44 deletions(-)

diff --git a/drivers/gpu/drm/drm_buddy.c b/drivers/gpu/drm/drm_buddy.c
index fd34d3755f7c..05fe9d12e274 100644
--- a/drivers/gpu/drm/drm_buddy.c
+++ b/drivers/gpu/drm/drm_buddy.c
@@ -21,6 +21,30 @@ enum drm_buddy_free_tree {
 
 static struct kmem_cache *slab_blocks;
 
+static unsigned int
+drm_buddy_block_state(struct drm_buddy_block *block)
+{
+	return block->header & DRM_BUDDY_HEADER_STATE;
+}
+
+static bool
+drm_buddy_block_is_allocated(struct drm_buddy_block *block)
+{
+	return drm_buddy_block_state(block) == DRM_BUDDY_ALLOCATED;
+}
+
+static bool
+drm_buddy_block_is_free(struct drm_buddy_block *block)
+{
+	return drm_buddy_block_state(block) == DRM_BUDDY_FREE;
+}
+
+static bool
+drm_buddy_block_is_split(struct drm_buddy_block *block)
+{
+	return drm_buddy_block_state(block) == DRM_BUDDY_SPLIT;
+}
+
 #define for_each_free_tree(tree) \
 	for ((tree) = 0; (tree) < DRM_BUDDY_MAX_FREE_TREES; (tree)++)
 
@@ -459,23 +483,6 @@ static int split_block(struct drm_buddy *mm,
 	return 0;
 }
 
-/**
- * drm_get_buddy - get buddy address
- *
- * @block: DRM buddy block
- *
- * Returns the corresponding buddy block for @block, or NULL
- * if this is a root block and can't be merged further.
- * Requires some kind of locking to protect against
- * any concurrent allocate and free operations.
- */
-struct drm_buddy_block *
-drm_get_buddy(struct drm_buddy_block *block)
-{
-	return __get_buddy(block);
-}
-EXPORT_SYMBOL(drm_get_buddy);
-
 /**
  * drm_buddy_reset_clear - reset blocks clear state
  *
diff --git a/include/drm/drm_buddy.h b/include/drm/drm_buddy.h
index b909fa8f810a..eb8b4f5e15b3 100644
--- a/include/drm/drm_buddy.h
+++ b/include/drm/drm_buddy.h
@@ -101,36 +101,12 @@ drm_buddy_block_order(struct drm_buddy_block *block)
 	return block->header & DRM_BUDDY_HEADER_ORDER;
 }
 
-static inline unsigned int
-drm_buddy_block_state(struct drm_buddy_block *block)
-{
-	return block->header & DRM_BUDDY_HEADER_STATE;
-}
-
-static inline bool
-drm_buddy_block_is_allocated(struct drm_buddy_block *block)
-{
-	return drm_buddy_block_state(block) == DRM_BUDDY_ALLOCATED;
-}
-
 static inline bool
 drm_buddy_block_is_clear(struct drm_buddy_block *block)
 {
 	return block->header & DRM_BUDDY_HEADER_CLEAR;
 }
 
-static inline bool
-drm_buddy_block_is_free(struct drm_buddy_block *block)
-{
-	return drm_buddy_block_state(block) == DRM_BUDDY_FREE;
-}
-
-static inline bool
-drm_buddy_block_is_split(struct drm_buddy_block *block)
-{
-	return drm_buddy_block_state(block) == DRM_BUDDY_SPLIT;
-}
-
 static inline u64
 drm_buddy_block_size(struct drm_buddy *mm,
 		     struct drm_buddy_block *block)
@@ -142,9 +118,6 @@ int drm_buddy_init(struct drm_buddy *mm, u64 size, u64 chunk_size);
 
 void drm_buddy_fini(struct drm_buddy *mm);
 
-struct drm_buddy_block *
-drm_get_buddy(struct drm_buddy_block *block);
-
 int drm_buddy_alloc_blocks(struct drm_buddy *mm,
 			   u64 start, u64 end, u64 size,
 			   u64 min_page_size,
-- 
2.52.0


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

* [PATCH 2/2] drm/buddy: Add kernel-doc for allocator structures and flags
  2026-02-04 10:43 [PATCH 0/2] drm/buddy: Documentation and internal helper cleanup Sanjay Yadav
  2026-02-04 10:43 ` [PATCH 1/2] drm/buddy: Move internal helpers to drm_buddy.c Sanjay Yadav
@ 2026-02-04 10:43 ` Sanjay Yadav
  2026-02-06  8:39   ` Paneer Selvam, Arunpravin
  2026-02-04 10:54 ` ✓ CI.KUnit: success for drm/buddy: Documentation and internal helper cleanup Patchwork
                   ` (5 subsequent siblings)
  7 siblings, 1 reply; 11+ messages in thread
From: Sanjay Yadav @ 2026-02-04 10:43 UTC (permalink / raw)
  To: dri-devel
  Cc: intel-xe, Christian König, Arunpravin Paneer Selvam,
	Matthew Auld

Add missing kernel-doc for DRM buddy allocator flags,
drm_buddy_block, and drm_buddy. The documentation covers block
header fields, allocator roots, free trees, and allocation flags
such as RANGE, TOPDOWN, CONTIGUOUS, CLEAR, and TRIM_DISABLE.
Private members are marked with kernel-doc private markers
and documented with regular comments.

No functional changes.

Cc: Christian König <christian.koenig@amd.com>
Cc: Arunpravin Paneer Selvam <Arunpravin.PaneerSelvam@amd.com>
Suggested-by: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
---
 include/drm/drm_buddy.h | 122 +++++++++++++++++++++++++++++++++-------
 1 file changed, 102 insertions(+), 20 deletions(-)

diff --git a/include/drm/drm_buddy.h b/include/drm/drm_buddy.h
index eb8b4f5e15b3..5e2969822362 100644
--- a/include/drm/drm_buddy.h
+++ b/include/drm/drm_buddy.h
@@ -14,14 +14,81 @@
 
 struct drm_printer;
 
+/**
+ * DRM_BUDDY_RANGE_ALLOCATION - Allocate within a specific address range
+ *
+ * When set, allocation is restricted to the range [start, end) specified
+ * in drm_buddy_alloc_blocks(). Without this flag, start/end are ignored
+ * and allocation can use any free space.
+ */
 #define DRM_BUDDY_RANGE_ALLOCATION		BIT(0)
+
+/**
+ * DRM_BUDDY_TOPDOWN_ALLOCATION - Allocate from top of address space
+ *
+ * Allocate starting from high addresses and working down. Useful for
+ * separating different allocation types (e.g., kernel vs userspace)
+ * to reduce fragmentation.
+ */
 #define DRM_BUDDY_TOPDOWN_ALLOCATION		BIT(1)
+
+/**
+ * DRM_BUDDY_CONTIGUOUS_ALLOCATION - Require physically contiguous blocks
+ *
+ * The allocation must be satisfied with a single contiguous block.
+ * If the requested size cannot be allocated contiguously, the
+ * allocation fails with -ENOSPC.
+ */
 #define DRM_BUDDY_CONTIGUOUS_ALLOCATION		BIT(2)
+
+/**
+ * DRM_BUDDY_CLEAR_ALLOCATION - Prefer pre-cleared (zeroed) memory
+ *
+ * Attempt to allocate from the clear tree first. If insufficient clear
+ * memory is available, falls back to dirty memory. Useful when the
+ * caller needs zeroed memory and wants to avoid GPU clear operations.
+ */
 #define DRM_BUDDY_CLEAR_ALLOCATION		BIT(3)
+
+/**
+ * DRM_BUDDY_CLEARED - Mark returned blocks as cleared
+ *
+ * Used with drm_buddy_free_list() to indicate that the memory being
+ * freed has been cleared (zeroed). The blocks will be placed in the
+ * clear tree for future DRM_BUDDY_CLEAR_ALLOCATION requests.
+ */
 #define DRM_BUDDY_CLEARED			BIT(4)
+
+/**
+ * DRM_BUDDY_TRIM_DISABLE - Disable automatic block trimming
+ *
+ * By default, if an allocation is smaller than the allocated block,
+ * excess memory is trimmed and returned to the free pool. This flag
+ * disables trimming, keeping the full power-of-two block size.
+ */
 #define DRM_BUDDY_TRIM_DISABLE			BIT(5)
 
+/**
+ * struct drm_buddy_block - Block within a buddy allocator
+ *
+ * Each block in the buddy allocator is represented by this structure.
+ * Blocks are organized in a binary tree where each parent block can be
+ * split into two children (left and right buddies). The allocator manages
+ * blocks at various orders (power-of-2 sizes) from chunk_size up to the
+ * largest contiguous region.
+ *
+ * @private: Private data owned by the allocator user (e.g., driver-specific data)
+ * @link: List node for user ownership while block is allocated
+ */
 struct drm_buddy_block {
+/* private: */
+	/*
+	 * Header bit layout:
+	 * - Bits 63:12: block offset within the address space
+	 * - Bits 11:10: state (ALLOCATED, FREE, or SPLIT)
+	 * - Bit 9: clear bit (1 if memory is zeroed)
+	 * - Bits 5:0: order (log2 of size relative to chunk_size)
+	 */
 #define DRM_BUDDY_HEADER_OFFSET GENMASK_ULL(63, 12)
 #define DRM_BUDDY_HEADER_STATE  GENMASK_ULL(11, 10)
 #define   DRM_BUDDY_ALLOCATED	   (1 << 10)
@@ -36,7 +103,7 @@ struct drm_buddy_block {
 	struct drm_buddy_block *left;
 	struct drm_buddy_block *right;
 	struct drm_buddy_block *parent;
-
+/* public: */
 	void *private; /* owned by creator */
 
 	/*
@@ -46,43 +113,58 @@ struct drm_buddy_block {
 	 * drm_buddy_free* ownership is given back to the mm.
 	 */
 	union {
+/* private: */
 		struct rb_node rb;
+/* public: */
 		struct list_head link;
 	};
-
+/* private: */
 	struct list_head tmp_link;
 };
 
 /* Order-zero must be at least SZ_4K */
 #define DRM_BUDDY_MAX_ORDER (63 - 12)
 
-/*
- * Binary Buddy System.
+/**
+ * struct drm_buddy - DRM binary buddy allocator
+ *
+ * The buddy allocator provides efficient power-of-two memory allocation
+ * with fast allocation and free operations. It is commonly used for GPU
+ * memory management where allocations can be split into power-of-two
+ * block sizes.
  *
- * Locking should be handled by the user, a simple mutex around
- * drm_buddy_alloc* and drm_buddy_free* should suffice.
+ * Locking should be handled by the user; a simple mutex around
+ * drm_buddy_alloc_blocks() and drm_buddy_free_block()/drm_buddy_free_list()
+ * should suffice.
+ *
+ * @n_roots: Number of root blocks in the roots array.
+ * @max_order: Maximum block order (log2 of largest block size / chunk_size).
+ * @chunk_size: Minimum allocation granularity in bytes. Must be at least SZ_4K.
+ * @size: Total size of the address space managed by this allocator in bytes.
+ * @avail: Total free space currently available for allocation in bytes.
+ * @clear_avail: Free space available in the clear tree (zeroed memory) in bytes.
+ *               This is a subset of @avail.
  */
 struct drm_buddy {
-	/* Maintain a free list for each order. */
-	struct rb_root **free_trees;
-
+/* private: */
 	/*
-	 * Maintain explicit binary tree(s) to track the allocation of the
-	 * address space. This gives us a simple way of finding a buddy block
-	 * and performing the potentially recursive merge step when freeing a
-	 * block.  Nodes are either allocated or free, in which case they will
-	 * also exist on the respective free list.
+	 * Array of red-black trees for free block management.
+	 * Indexed as free_trees[clear/dirty][order] where:
+	 * - Index 0 (DRM_BUDDY_DIRTY_TREE): blocks with unknown content
+	 * - Index 1 (DRM_BUDDY_CLEAR_TREE): blocks with zeroed content
+	 * Each tree holds free blocks of the corresponding order.
 	 */
-	struct drm_buddy_block **roots;
-
+	struct rb_root **free_trees;
 	/*
-	 * Anything from here is public, and remains static for the lifetime of
-	 * the mm. Everything above is considered do-not-touch.
+	 * Array of root blocks representing the top-level blocks of the
+	 * binary tree(s). Multiple roots exist when the total size is not
+	 * a power of two, with each root being the largest power-of-two
+	 * that fits in the remaining space.
 	 */
+	struct drm_buddy_block **roots;
+/* public: */
 	unsigned int n_roots;
 	unsigned int max_order;
-
-	/* Must be at least SZ_4K */
 	u64 chunk_size;
 	u64 size;
 	u64 avail;
-- 
2.52.0


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

* ✓ CI.KUnit: success for drm/buddy: Documentation and internal helper cleanup
  2026-02-04 10:43 [PATCH 0/2] drm/buddy: Documentation and internal helper cleanup Sanjay Yadav
  2026-02-04 10:43 ` [PATCH 1/2] drm/buddy: Move internal helpers to drm_buddy.c Sanjay Yadav
  2026-02-04 10:43 ` [PATCH 2/2] drm/buddy: Add kernel-doc for allocator structures and flags Sanjay Yadav
@ 2026-02-04 10:54 ` Patchwork
  2026-02-04 11:53 ` ✗ Xe.CI.BAT: failure " Patchwork
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-02-04 10:54 UTC (permalink / raw)
  To: Sanjay Yadav; +Cc: intel-xe

== Series Details ==

Series: drm/buddy: Documentation and internal helper cleanup
URL   : https://patchwork.freedesktop.org/series/161140/
State : success

== Summary ==

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

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

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

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



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

* ✗ Xe.CI.BAT: failure for drm/buddy: Documentation and internal helper cleanup
  2026-02-04 10:43 [PATCH 0/2] drm/buddy: Documentation and internal helper cleanup Sanjay Yadav
                   ` (2 preceding siblings ...)
  2026-02-04 10:54 ` ✓ CI.KUnit: success for drm/buddy: Documentation and internal helper cleanup Patchwork
@ 2026-02-04 11:53 ` Patchwork
  2026-02-04 22:03 ` ✗ Xe.CI.FULL: " Patchwork
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-02-04 11:53 UTC (permalink / raw)
  To: Sanjay Yadav; +Cc: intel-xe

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

== Series Details ==

Series: drm/buddy: Documentation and internal helper cleanup
URL   : https://patchwork.freedesktop.org/series/161140/
State : failure

== Summary ==

ERROR: The runconfig 'xe-4495-241994730989320c926da9f2d0a5ec80b48f993d_BAT' does not exist in the database

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for drm/buddy: Documentation and internal helper cleanup
  2026-02-04 10:43 [PATCH 0/2] drm/buddy: Documentation and internal helper cleanup Sanjay Yadav
                   ` (3 preceding siblings ...)
  2026-02-04 11:53 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-02-04 22:03 ` Patchwork
  2026-02-04 22:32 ` ✓ CI.KUnit: success for drm/buddy: Documentation and internal helper cleanup (rev2) Patchwork
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-02-04 22:03 UTC (permalink / raw)
  To: Sanjay Yadav; +Cc: intel-xe

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

== Series Details ==

Series: drm/buddy: Documentation and internal helper cleanup
URL   : https://patchwork.freedesktop.org/series/161140/
State : failure

== Summary ==

ERROR: The runconfig 'xe-4495-241994730989320c926da9f2d0a5ec80b48f993d_FULL' does not exist in the database

== Logs ==

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

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

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

* ✓ CI.KUnit: success for drm/buddy: Documentation and internal helper cleanup (rev2)
  2026-02-04 10:43 [PATCH 0/2] drm/buddy: Documentation and internal helper cleanup Sanjay Yadav
                   ` (4 preceding siblings ...)
  2026-02-04 22:03 ` ✗ Xe.CI.FULL: " Patchwork
@ 2026-02-04 22:32 ` Patchwork
  2026-02-04 23:24 ` ✓ Xe.CI.BAT: " Patchwork
  2026-02-05 13:53 ` ✗ Xe.CI.FULL: failure " Patchwork
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-02-04 22:32 UTC (permalink / raw)
  To: Sanjay Yadav; +Cc: intel-xe

== Series Details ==

Series: drm/buddy: Documentation and internal helper cleanup (rev2)
URL   : https://patchwork.freedesktop.org/series/161140/
State : success

== Summary ==

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

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

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

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



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

* ✓ Xe.CI.BAT: success for drm/buddy: Documentation and internal helper cleanup (rev2)
  2026-02-04 10:43 [PATCH 0/2] drm/buddy: Documentation and internal helper cleanup Sanjay Yadav
                   ` (5 preceding siblings ...)
  2026-02-04 22:32 ` ✓ CI.KUnit: success for drm/buddy: Documentation and internal helper cleanup (rev2) Patchwork
@ 2026-02-04 23:24 ` Patchwork
  2026-02-05 13:53 ` ✗ Xe.CI.FULL: failure " Patchwork
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-02-04 23:24 UTC (permalink / raw)
  To: Sanjay Yadav; +Cc: intel-xe

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

== Series Details ==

Series: drm/buddy: Documentation and internal helper cleanup (rev2)
URL   : https://patchwork.freedesktop.org/series/161140/
State : success

== Summary ==

CI Bug Log - changes from xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb_BAT -> xe-pw-161140v2_BAT
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

  Missing    (1): bat-bmg-3 


Changes
-------

  No changes found


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

  * IGT: IGT_8736 -> IGT_8737
  * Linux: xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb -> xe-pw-161140v2

  IGT_8736: 8736
  IGT_8737: 8737
  xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb: 766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb
  xe-pw-161140v2: 161140v2

== Logs ==

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

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

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

* ✗ Xe.CI.FULL: failure for drm/buddy: Documentation and internal helper cleanup (rev2)
  2026-02-04 10:43 [PATCH 0/2] drm/buddy: Documentation and internal helper cleanup Sanjay Yadav
                   ` (6 preceding siblings ...)
  2026-02-04 23:24 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-02-05 13:53 ` Patchwork
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2026-02-05 13:53 UTC (permalink / raw)
  To: Sanjay Yadav; +Cc: intel-xe

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

== Series Details ==

Series: drm/buddy: Documentation and internal helper cleanup (rev2)
URL   : https://patchwork.freedesktop.org/series/161140/
State : failure

== Summary ==

CI Bug Log - changes from xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb_FULL -> xe-pw-161140v2_FULL
====================================================

Summary
-------

  **FAILURE**

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

### IGT changes ###

#### Possible regressions ####

  * igt@kms_pm_rpm@universal-planes-dpms:
    - shard-bmg:          [PASS][1] -> [DMESG-WARN][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-8/igt@kms_pm_rpm@universal-planes-dpms.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-7/igt@kms_pm_rpm@universal-planes-dpms.html

  * igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute:
    - shard-bmg:          [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-4/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-8/igt@xe_compute_preempt@compute-preempt-many-vram-evict@engine-drm_xe_engine_class_compute.html

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

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

### IGT changes ###

#### Issues hit ####

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

  * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
    - shard-bmg:          NOTRUN -> [SKIP][6] ([Intel XE#7059])
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html

  * igt@kms_big_fb@x-tiled-64bpp-rotate-270:
    - shard-lnl:          NOTRUN -> [SKIP][7] ([Intel XE#1407]) +1 other test skip
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-7/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html

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

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
    - shard-lnl:          NOTRUN -> [SKIP][9] ([Intel XE#1124]) +5 other tests skip
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html

  * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
    - shard-lnl:          NOTRUN -> [SKIP][10] ([Intel XE#1512])
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-3/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
    - shard-bmg:          NOTRUN -> [SKIP][11] ([Intel XE#2314] / [Intel XE#2894])
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-6/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html

  * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][12] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html

  * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][13] ([Intel XE#2887]) +7 other tests skip
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-9/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][14] ([Intel XE#2669] / [Intel XE#3433]) +3 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#3432])
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs:
    - shard-lnl:          NOTRUN -> [SKIP][16] ([Intel XE#2887]) +9 other tests skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-2/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html

  * igt@kms_chamelium_audio@hdmi-audio-edid:
    - shard-bmg:          NOTRUN -> [SKIP][17] ([Intel XE#2252]) +5 other tests skip
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-2/igt@kms_chamelium_audio@hdmi-audio-edid.html

  * igt@kms_chamelium_color@ctm-max:
    - shard-lnl:          NOTRUN -> [SKIP][18] ([Intel XE#306])
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-2/igt@kms_chamelium_color@ctm-max.html
    - shard-bmg:          NOTRUN -> [SKIP][19] ([Intel XE#2325])
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-2/igt@kms_chamelium_color@ctm-max.html

  * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
    - shard-lnl:          NOTRUN -> [SKIP][20] ([Intel XE#373]) +2 other tests skip
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-7/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html

  * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-c-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#6969]) +1 other test skip
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-5/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-c-hdmi-a-3.html

  * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][22] ([Intel XE#6969] / [Intel XE#7006])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-5/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-hdmi-a-3.html

  * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#6974])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
    - shard-lnl:          NOTRUN -> [SKIP][24] ([Intel XE#6974])
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html

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

  * igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
    - shard-bmg:          NOTRUN -> [FAIL][26] ([Intel XE#3304]) +3 other tests fail
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-4/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html

  * igt@kms_content_protection@srm:
    - shard-lnl:          NOTRUN -> [SKIP][27] ([Intel XE#3278])
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-5/igt@kms_content_protection@srm.html

  * igt@kms_cursor_crc@cursor-rapid-movement-32x10:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#2320]) +2 other tests skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html

  * igt@kms_cursor_crc@cursor-sliding-max-size:
    - shard-lnl:          NOTRUN -> [SKIP][29] ([Intel XE#1424]) +1 other test skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-max-size.html

  * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
    - shard-bmg:          [PASS][30] -> [SKIP][31] ([Intel XE#2291]) +1 other test skip
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-9/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
    - shard-lnl:          NOTRUN -> [SKIP][32] ([Intel XE#309]) +4 other tests skip
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html

  * igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
    - shard-lnl:          NOTRUN -> [SKIP][33] ([Intel XE#1508])
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html

  * igt@kms_dsc@dsc-fractional-bpp-with-bpc:
    - shard-lnl:          NOTRUN -> [SKIP][34] ([Intel XE#2244])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#2244])
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#4156])
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-8/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
    - shard-bmg:          [PASS][37] -> [SKIP][38] ([Intel XE#2316]) +3 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html

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

  * igt@kms_flip@flip-vs-suspend@c-hdmi-a3:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][40] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-10/igt@kms_flip@flip-vs-suspend@c-hdmi-a3.html

  * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][41] ([Intel XE#7178]) +2 other tests skip
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
    - shard-lnl:          NOTRUN -> [SKIP][42] ([Intel XE#1397] / [Intel XE#1745])
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
    - shard-lnl:          NOTRUN -> [SKIP][43] ([Intel XE#1397])
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-lnl:          NOTRUN -> [SKIP][44] ([Intel XE#651]) +3 other tests skip
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-1/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][45] ([Intel XE#2311]) +11 other tests skip
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#4141]) +4 other tests skip
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff:
    - shard-bmg:          NOTRUN -> [SKIP][47] ([Intel XE#2312])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
    - shard-lnl:          NOTRUN -> [SKIP][48] ([Intel XE#656]) +11 other tests skip
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
    - shard-bmg:          NOTRUN -> [SKIP][49] ([Intel XE#2313]) +14 other tests skip
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html

  * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt:
    - shard-lnl:          NOTRUN -> [SKIP][50] ([Intel XE#7061]) +1 other test skip
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt.html
    - shard-bmg:          NOTRUN -> [SKIP][51] ([Intel XE#7061]) +3 other tests skip
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt.html

  * igt@kms_joiner@basic-force-big-joiner:
    - shard-lnl:          NOTRUN -> [SKIP][52] ([Intel XE#7086])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-2/igt@kms_joiner@basic-force-big-joiner.html

  * igt@kms_pipe_stress@stress-xrgb8888-yftiled:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#6912])
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-8/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
    - shard-lnl:          NOTRUN -> [SKIP][54] ([Intel XE#6912])
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-1/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier@pipe-a-plane-0:
    - shard-bmg:          NOTRUN -> [SKIP][55] ([Intel XE#7130]) +8 other tests skip
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-9/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier@pipe-a-plane-0.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier@pipe-b-plane-5:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#7111] / [Intel XE#7130]) +1 other test skip
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-9/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier@pipe-b-plane-5.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping:
    - shard-lnl:          NOTRUN -> [SKIP][57] ([Intel XE#7130] / [Intel XE#7131])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-3/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping@pipe-a-plane-5:
    - shard-lnl:          NOTRUN -> [SKIP][58] ([Intel XE#7131]) +1 other test skip
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-3/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping@pipe-a-plane-5.html

  * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
    - shard-bmg:          NOTRUN -> [SKIP][59] ([Intel XE#7111] / [Intel XE#7130] / [Intel XE#7131])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-10/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html

  * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-a-plane-5:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#7131])
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-10/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-a-plane-5.html

  * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-5:
    - shard-bmg:          NOTRUN -> [SKIP][61] ([Intel XE#7111] / [Intel XE#7131])
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-10/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-5.html

  * igt@kms_plane@pixel-format-yf-tiled-modifier@pipe-b-plane-5:
    - shard-lnl:          NOTRUN -> [SKIP][62] ([Intel XE#7130]) +17 other tests skip
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-6/igt@kms_plane@pixel-format-yf-tiled-modifier@pipe-b-plane-5.html

  * igt@kms_plane_multiple@2x-tiling-x:
    - shard-lnl:          NOTRUN -> [SKIP][63] ([Intel XE#4596])
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-8/igt@kms_plane_multiple@2x-tiling-x.html

  * igt@kms_plane_multiple@tiling-yf:
    - shard-lnl:          NOTRUN -> [SKIP][64] ([Intel XE#5020]) +1 other test skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-1/igt@kms_plane_multiple@tiling-yf.html
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#5020])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-6/igt@kms_plane_multiple@tiling-yf.html

  * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a:
    - shard-lnl:          NOTRUN -> [SKIP][66] ([Intel XE#6886]) +3 other tests skip
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html
    - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#6886]) +4 other tests skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-4/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html

  * igt@kms_pm_backlight@fade:
    - shard-bmg:          NOTRUN -> [SKIP][68] ([Intel XE#870])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-10/igt@kms_pm_backlight@fade.html

  * igt@kms_pm_dc@dc5-psr:
    - shard-lnl:          [PASS][69] -> [FAIL][70] ([Intel XE#718])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-3/igt@kms_pm_dc@dc5-psr.html

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

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

  * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
    - shard-lnl:          NOTRUN -> [SKIP][73] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +1 other test skip
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#4608]) +3 other tests skip
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1.html

  * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
    - shard-lnl:          NOTRUN -> [SKIP][75] ([Intel XE#1406] / [Intel XE#2893]) +2 other tests skip
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-5/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html

  * igt@kms_psr2_su@frontbuffer-xrgb8888:
    - shard-lnl:          NOTRUN -> [SKIP][76] ([Intel XE#1128] / [Intel XE#1406])
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html

  * igt@kms_psr@fbc-psr2-primary-render@edp-1:
    - shard-lnl:          NOTRUN -> [SKIP][77] ([Intel XE#1406] / [Intel XE#4609])
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-8/igt@kms_psr@fbc-psr2-primary-render@edp-1.html

  * igt@kms_psr@pr-primary-blt:
    - shard-lnl:          NOTRUN -> [SKIP][78] ([Intel XE#1406]) +2 other tests skip
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-4/igt@kms_psr@pr-primary-blt.html

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

  * igt@kms_rotation_crc@primary-rotation-270:
    - shard-bmg:          NOTRUN -> [SKIP][80] ([Intel XE#3414] / [Intel XE#3904])
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-4/igt@kms_rotation_crc@primary-rotation-270.html

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

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

  * igt@kms_sharpness_filter@filter-modifiers:
    - shard-bmg:          NOTRUN -> [SKIP][83] ([Intel XE#6503])
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-7/igt@kms_sharpness_filter@filter-modifiers.html

  * igt@kms_vrr@flip-basic-fastset:
    - shard-bmg:          NOTRUN -> [SKIP][84] ([Intel XE#1499])
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-10/igt@kms_vrr@flip-basic-fastset.html

  * igt@kms_vrr@negative-basic:
    - shard-bmg:          [PASS][85] -> [SKIP][86] ([Intel XE#1499])
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-7/igt@kms_vrr@negative-basic.html
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-5/igt@kms_vrr@negative-basic.html

  * igt@xe_eudebug@basic-vm-bind-extended:
    - shard-lnl:          NOTRUN -> [SKIP][87] ([Intel XE#4837])
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-6/igt@xe_eudebug@basic-vm-bind-extended.html

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

  * igt@xe_eudebug_online@single-step:
    - shard-bmg:          NOTRUN -> [SKIP][89] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-6/igt@xe_eudebug_online@single-step.html

  * igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram:
    - shard-lnl:          NOTRUN -> [SKIP][90] ([Intel XE#4837] / [Intel XE#6665]) +2 other tests skip
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-8/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-vram.html

  * igt@xe_evict@evict-mixed-many-threads-small:
    - shard-bmg:          [PASS][91] -> [INCOMPLETE][92] ([Intel XE#6321]) +1 other test incomplete
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html

  * igt@xe_evict@evict-small-multi-queue-priority-cm:
    - shard-bmg:          NOTRUN -> [SKIP][93] ([Intel XE#7140])
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-8/igt@xe_evict@evict-small-multi-queue-priority-cm.html

  * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
    - shard-lnl:          NOTRUN -> [SKIP][94] ([Intel XE#688]) +5 other tests skip
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-8/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html

  * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
    - shard-bmg:          NOTRUN -> [SKIP][95] ([Intel XE#2322]) +4 other tests skip
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-6/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html

  * igt@xe_exec_basic@multigpu-once-userptr:
    - shard-lnl:          NOTRUN -> [SKIP][96] ([Intel XE#1392]) +2 other tests skip
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-7/igt@xe_exec_basic@multigpu-once-userptr.html

  * igt@xe_exec_fault_mode@many-multi-queue-userptr-rebind:
    - shard-lnl:          NOTRUN -> [SKIP][97] ([Intel XE#7136]) +7 other tests skip
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-5/igt@xe_exec_fault_mode@many-multi-queue-userptr-rebind.html

  * igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch:
    - shard-bmg:          NOTRUN -> [SKIP][98] ([Intel XE#7136]) +3 other tests skip
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-8/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch.html

  * igt@xe_exec_multi_queue@many-execs-preempt-mode-userptr:
    - shard-lnl:          NOTRUN -> [SKIP][99] ([Intel XE#6874]) +9 other tests skip
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-8/igt@xe_exec_multi_queue@many-execs-preempt-mode-userptr.html

  * igt@xe_exec_multi_queue@one-queue-priority-smem:
    - shard-bmg:          NOTRUN -> [SKIP][100] ([Intel XE#6874]) +16 other tests skip
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-2/igt@xe_exec_multi_queue@one-queue-priority-smem.html

  * igt@xe_exec_system_allocator@many-64k-mmap-new-huge:
    - shard-bmg:          NOTRUN -> [SKIP][101] ([Intel XE#5007]) +1 other test skip
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-4/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html

  * igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset:
    - shard-lnl:          NOTRUN -> [SKIP][102] ([Intel XE#5007])
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-5/igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset.html

  * igt@xe_exec_system_allocator@process-many-mmap-free-huge:
    - shard-bmg:          NOTRUN -> [SKIP][103] ([Intel XE#4943]) +7 other tests skip
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-3/igt@xe_exec_system_allocator@process-many-mmap-free-huge.html

  * igt@xe_exec_system_allocator@twice-mmap-huge:
    - shard-lnl:          NOTRUN -> [SKIP][104] ([Intel XE#4943]) +7 other tests skip
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-6/igt@xe_exec_system_allocator@twice-mmap-huge.html

  * igt@xe_exec_threads@threads-many-queues:
    - shard-lnl:          NOTRUN -> [FAIL][105] ([Intel XE#7166])
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-6/igt@xe_exec_threads@threads-many-queues.html

  * igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-basic:
    - shard-lnl:          NOTRUN -> [SKIP][106] ([Intel XE#7138]) +3 other tests skip
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-5/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-basic.html

  * igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race:
    - shard-bmg:          NOTRUN -> [SKIP][107] ([Intel XE#7138]) +3 other tests skip
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race.html

  * igt@xe_live_ktest@xe_eudebug:
    - shard-lnl:          NOTRUN -> [SKIP][108] ([Intel XE#2833])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-8/igt@xe_live_ktest@xe_eudebug.html

  * igt@xe_multigpu_svm@mgpu-latency-copy-basic:
    - shard-bmg:          NOTRUN -> [SKIP][109] ([Intel XE#6964]) +1 other test skip
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-9/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html

  * igt@xe_multigpu_svm@mgpu-pagefault-prefetch:
    - shard-lnl:          NOTRUN -> [SKIP][110] ([Intel XE#6964]) +1 other test skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-5/igt@xe_multigpu_svm@mgpu-pagefault-prefetch.html

  * igt@xe_pat@pat-index-xelpg:
    - shard-bmg:          NOTRUN -> [SKIP][111] ([Intel XE#2236])
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-3/igt@xe_pat@pat-index-xelpg.html
    - shard-lnl:          NOTRUN -> [SKIP][112] ([Intel XE#979])
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-2/igt@xe_pat@pat-index-xelpg.html

  * igt@xe_pxp@display-black-pxp-fb:
    - shard-bmg:          NOTRUN -> [SKIP][113] ([Intel XE#4733]) +1 other test skip
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-7/igt@xe_pxp@display-black-pxp-fb.html

  * igt@xe_query@multigpu-query-oa-units:
    - shard-lnl:          NOTRUN -> [SKIP][114] ([Intel XE#944])
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-6/igt@xe_query@multigpu-query-oa-units.html
    - shard-bmg:          NOTRUN -> [SKIP][115] ([Intel XE#944])
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-5/igt@xe_query@multigpu-query-oa-units.html

  * igt@xe_sriov_flr@flr-vf1-clear:
    - shard-lnl:          NOTRUN -> [SKIP][116] ([Intel XE#3342]) +1 other test skip
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-4/igt@xe_sriov_flr@flr-vf1-clear.html

  * igt@xe_waitfence@abstime:
    - shard-bmg:          [PASS][117] -> [TIMEOUT][118] ([Intel XE#6506])
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-8/igt@xe_waitfence@abstime.html
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-7/igt@xe_waitfence@abstime.html

  
#### Possible fixes ####

  * igt@intel_hwmon@hwmon-write:
    - shard-bmg:          [FAIL][119] ([Intel XE#4665]) -> [PASS][120]
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-5/igt@intel_hwmon@hwmon-write.html
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-10/igt@intel_hwmon@hwmon-write.html

  * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
    - shard-bmg:          [SKIP][121] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][122]
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-9/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html

  * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [SKIP][123] ([Intel XE#2291]) -> [PASS][124] +3 other tests pass
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_feature_discovery@display-2x:
    - shard-bmg:          [SKIP][125] ([Intel XE#2373]) -> [PASS][126]
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-5/igt@kms_feature_discovery@display-2x.html
   [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-2/igt@kms_feature_discovery@display-2x.html

  * igt@kms_flip@2x-blocking-wf_vblank:
    - shard-bmg:          [SKIP][127] ([Intel XE#2316]) -> [PASS][128] +6 other tests pass
   [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-6/igt@kms_flip@2x-blocking-wf_vblank.html
   [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-2/igt@kms_flip@2x-blocking-wf_vblank.html

  * igt@kms_hdr@static-toggle-dpms:
    - shard-bmg:          [SKIP][129] ([Intel XE#1503]) -> [PASS][130]
   [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-5/igt@kms_hdr@static-toggle-dpms.html
   [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-7/igt@kms_hdr@static-toggle-dpms.html

  * igt@xe_exec_system_allocator@once-large-malloc-bo-unmap:
    - shard-bmg:          [ABORT][131] ([Intel XE#7169]) -> [PASS][132]
   [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-9/igt@xe_exec_system_allocator@once-large-malloc-bo-unmap.html
   [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-3/igt@xe_exec_system_allocator@once-large-malloc-bo-unmap.html

  * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
    - shard-lnl:          [FAIL][133] ([Intel XE#5625]) -> [PASS][134]
   [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
   [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html

  * igt@xe_fault_injection@exec-queue-create-fail-xe_exec_queue_create:
    - shard-bmg:          [ABORT][135] -> [PASS][136]
   [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-10/igt@xe_fault_injection@exec-queue-create-fail-xe_exec_queue_create.html
   [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-1/igt@xe_fault_injection@exec-queue-create-fail-xe_exec_queue_create.html

  * igt@xe_pm@s4-multiple-execs:
    - shard-lnl:          [ABORT][137] ([Intel XE#7169]) -> [PASS][138]
   [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-lnl-7/igt@xe_pm@s4-multiple-execs.html
   [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-lnl-2/igt@xe_pm@s4-multiple-execs.html

  
#### Warnings ####

  * igt@kms_content_protection@atomic-dpms-hdcp14:
    - shard-bmg:          [FAIL][139] ([Intel XE#3304]) -> [SKIP][140] ([Intel XE#7194])
   [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-9/igt@kms_content_protection@atomic-dpms-hdcp14.html
   [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-6/igt@kms_content_protection@atomic-dpms-hdcp14.html

  * igt@kms_content_protection@lic-type-0-hdcp14:
    - shard-bmg:          [SKIP][141] ([Intel XE#7194]) -> [FAIL][142] ([Intel XE#3304]) +1 other test fail
   [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-6/igt@kms_content_protection@lic-type-0-hdcp14.html
   [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-4/igt@kms_content_protection@lic-type-0-hdcp14.html

  * igt@kms_content_protection@suspend-resume:
    - shard-bmg:          [FAIL][143] ([Intel XE#1178] / [Intel XE#3304]) -> [SKIP][144] ([Intel XE#6705])
   [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-7/igt@kms_content_protection@suspend-resume.html
   [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-6/igt@kms_content_protection@suspend-resume.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
    - shard-bmg:          [SKIP][145] ([Intel XE#2291]) -> [DMESG-WARN][146] ([Intel XE#5354])
   [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
   [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html

  * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
    - shard-bmg:          [DMESG-WARN][147] ([Intel XE#5354]) -> [SKIP][148] ([Intel XE#2291])
   [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-9/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
   [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html

  * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw:
    - shard-bmg:          [SKIP][149] ([Intel XE#2311]) -> [SKIP][150] ([Intel XE#2312]) +10 other tests skip
   [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html
   [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
    - shard-bmg:          [SKIP][151] ([Intel XE#4141]) -> [SKIP][152] ([Intel XE#2312]) +4 other tests skip
   [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
   [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][153] ([Intel XE#2312]) -> [SKIP][154] ([Intel XE#4141]) +5 other tests skip
   [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
   [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
    - shard-bmg:          [SKIP][155] ([Intel XE#2312]) -> [SKIP][156] ([Intel XE#2311]) +19 other tests skip
   [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
   [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][157] ([Intel XE#2313]) -> [ABORT][158] ([Intel XE#7169])
   [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
   [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][159] ([Intel XE#2313]) -> [SKIP][160] ([Intel XE#2312]) +12 other tests skip
   [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff:
    - shard-bmg:          [SKIP][161] ([Intel XE#2312]) -> [SKIP][162] ([Intel XE#2313]) +12 other tests skip
   [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html
   [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html

  * igt@kms_hdr@brightness-with-hdr:
    - shard-bmg:          [SKIP][163] ([Intel XE#3544]) -> [SKIP][164] ([Intel XE#3374] / [Intel XE#3544])
   [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
   [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-bmg:          [SKIP][165] ([Intel XE#4596]) -> [SKIP][166] ([Intel XE#5021])
   [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html
   [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v2/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-yf.html

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

  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
  [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
  [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
  [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
  [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
  [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
  [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
  [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
  [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
  [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
  [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
  [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
  [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
  [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
  [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
  [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
  [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
  [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
  [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
  [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
  [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
  [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
  [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
  [Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
  [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
  [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
  [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
  [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
  [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
  [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
  [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
  [Intel XE#4665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4665
  [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
  [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
  [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
  [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
  [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
  [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
  [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
  [Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
  [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
  [Intel XE#6705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6705
  [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
  [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
  [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
  [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
  [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
  [Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969
  [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
  [Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006
  [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
  [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
  [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
  [Intel XE#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111
  [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
  [Intel XE#7131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131
  [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
  [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
  [Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
  [Intel XE#7166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7166
  [Intel XE#7169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7169
  [Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
  [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
  [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
  [Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
  [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
  [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979


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

  * IGT: IGT_8736 -> IGT_8737
  * Linux: xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb -> xe-pw-161140v2

  IGT_8736: 8736
  IGT_8737: 8737
  xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb: 766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb
  xe-pw-161140v2: 161140v2

== Logs ==

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

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

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

* RE: [PATCH 1/2] drm/buddy: Move internal helpers to drm_buddy.c
  2026-02-04 10:43 ` [PATCH 1/2] drm/buddy: Move internal helpers to drm_buddy.c Sanjay Yadav
@ 2026-02-06  8:27   ` Paneer Selvam, Arunpravin
  0 siblings, 0 replies; 11+ messages in thread
From: Paneer Selvam, Arunpravin @ 2026-02-06  8:27 UTC (permalink / raw)
  To: Sanjay Yadav, dri-devel@lists.freedesktop.org
  Cc: intel-xe@lists.freedesktop.org, Koenig, Christian, Matthew Auld

[AMD Official Use Only - AMD Internal Distribution Only]

Reviewed-by: Arunpravin Paneer Selvam <Arunpravin.PaneerSelvam@amd.com>

-----Original Message-----
From: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
Sent: Wednesday, February 4, 2026 4:14 PM
To: dri-devel@lists.freedesktop.org
Cc: intel-xe@lists.freedesktop.org; Koenig, Christian <Christian.Koenig@amd.com>; Paneer Selvam, Arunpravin <Arunpravin.PaneerSelvam@amd.com>; Matthew Auld <matthew.auld@intel.com>
Subject: [PATCH 1/2] drm/buddy: Move internal helpers to drm_buddy.c

Move drm_buddy_block_state(), drm_buddy_block_is_allocated(), drm_buddy_block_is_free(), and drm_buddy_block_is_split() from drm_buddy.h to drm_buddy.c as static functions since they have no external callers.

Remove drm_get_buddy() as it was an unused exported wrapper around the internal __get_buddy().

No functional changes.

Cc: Christian König <christian.koenig@amd.com>
Cc: Arunpravin Paneer Selvam <Arunpravin.PaneerSelvam@amd.com>
Suggested-by: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
---
 drivers/gpu/drm/drm_buddy.c | 41 ++++++++++++++++++++++---------------
 include/drm/drm_buddy.h     | 27 ------------------------
 2 files changed, 24 insertions(+), 44 deletions(-)

diff --git a/drivers/gpu/drm/drm_buddy.c b/drivers/gpu/drm/drm_buddy.c index fd34d3755f7c..05fe9d12e274 100644
--- a/drivers/gpu/drm/drm_buddy.c
+++ b/drivers/gpu/drm/drm_buddy.c
@@ -21,6 +21,30 @@ enum drm_buddy_free_tree {

 static struct kmem_cache *slab_blocks;

+static unsigned int
+drm_buddy_block_state(struct drm_buddy_block *block) {
+       return block->header & DRM_BUDDY_HEADER_STATE; }
+
+static bool
+drm_buddy_block_is_allocated(struct drm_buddy_block *block) {
+       return drm_buddy_block_state(block) == DRM_BUDDY_ALLOCATED; }
+
+static bool
+drm_buddy_block_is_free(struct drm_buddy_block *block) {
+       return drm_buddy_block_state(block) == DRM_BUDDY_FREE; }
+
+static bool
+drm_buddy_block_is_split(struct drm_buddy_block *block) {
+       return drm_buddy_block_state(block) == DRM_BUDDY_SPLIT; }
+
 #define for_each_free_tree(tree) \
        for ((tree) = 0; (tree) < DRM_BUDDY_MAX_FREE_TREES; (tree)++)

@@ -459,23 +483,6 @@ static int split_block(struct drm_buddy *mm,
        return 0;
 }

-/**
- * drm_get_buddy - get buddy address
- *
- * @block: DRM buddy block
- *
- * Returns the corresponding buddy block for @block, or NULL
- * if this is a root block and can't be merged further.
- * Requires some kind of locking to protect against
- * any concurrent allocate and free operations.
- */
-struct drm_buddy_block *
-drm_get_buddy(struct drm_buddy_block *block) -{
-       return __get_buddy(block);
-}
-EXPORT_SYMBOL(drm_get_buddy);
-
 /**
  * drm_buddy_reset_clear - reset blocks clear state
  *
diff --git a/include/drm/drm_buddy.h b/include/drm/drm_buddy.h index b909fa8f810a..eb8b4f5e15b3 100644
--- a/include/drm/drm_buddy.h
+++ b/include/drm/drm_buddy.h
@@ -101,36 +101,12 @@ drm_buddy_block_order(struct drm_buddy_block *block)
        return block->header & DRM_BUDDY_HEADER_ORDER;  }

-static inline unsigned int
-drm_buddy_block_state(struct drm_buddy_block *block) -{
-       return block->header & DRM_BUDDY_HEADER_STATE;
-}
-
-static inline bool
-drm_buddy_block_is_allocated(struct drm_buddy_block *block) -{
-       return drm_buddy_block_state(block) == DRM_BUDDY_ALLOCATED;
-}
-
 static inline bool
 drm_buddy_block_is_clear(struct drm_buddy_block *block)  {
        return block->header & DRM_BUDDY_HEADER_CLEAR;  }

-static inline bool
-drm_buddy_block_is_free(struct drm_buddy_block *block) -{
-       return drm_buddy_block_state(block) == DRM_BUDDY_FREE;
-}
-
-static inline bool
-drm_buddy_block_is_split(struct drm_buddy_block *block) -{
-       return drm_buddy_block_state(block) == DRM_BUDDY_SPLIT;
-}
-
 static inline u64
 drm_buddy_block_size(struct drm_buddy *mm,
                     struct drm_buddy_block *block)
@@ -142,9 +118,6 @@ int drm_buddy_init(struct drm_buddy *mm, u64 size, u64 chunk_size);

 void drm_buddy_fini(struct drm_buddy *mm);

-struct drm_buddy_block *
-drm_get_buddy(struct drm_buddy_block *block);
-
 int drm_buddy_alloc_blocks(struct drm_buddy *mm,
                           u64 start, u64 end, u64 size,
                           u64 min_page_size,
--
2.52.0


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

* RE: [PATCH 2/2] drm/buddy: Add kernel-doc for allocator structures and flags
  2026-02-04 10:43 ` [PATCH 2/2] drm/buddy: Add kernel-doc for allocator structures and flags Sanjay Yadav
@ 2026-02-06  8:39   ` Paneer Selvam, Arunpravin
  0 siblings, 0 replies; 11+ messages in thread
From: Paneer Selvam, Arunpravin @ 2026-02-06  8:39 UTC (permalink / raw)
  To: Sanjay Yadav, dri-devel@lists.freedesktop.org
  Cc: intel-xe@lists.freedesktop.org, Koenig, Christian, Matthew Auld

[AMD Official Use Only - AMD Internal Distribution Only]

-----Original Message-----
From: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
Sent: Wednesday, February 4, 2026 4:14 PM
To: dri-devel@lists.freedesktop.org
Cc: intel-xe@lists.freedesktop.org; Koenig, Christian <Christian.Koenig@amd.com>; Paneer Selvam, Arunpravin <Arunpravin.PaneerSelvam@amd.com>; Matthew Auld <matthew.auld@intel.com>
Subject: [PATCH 2/2] drm/buddy: Add kernel-doc for allocator structures and flags

Add missing kernel-doc for DRM buddy allocator flags, drm_buddy_block, and drm_buddy. The documentation covers block header fields, allocator roots, free trees, and allocation flags such as RANGE, TOPDOWN, CONTIGUOUS, CLEAR, and TRIM_DISABLE.
Private members are marked with kernel-doc private markers and documented with regular comments.

No functional changes.

Cc: Christian König <christian.koenig@amd.com>
Cc: Arunpravin Paneer Selvam <Arunpravin.PaneerSelvam@amd.com>
Suggested-by: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
---
 include/drm/drm_buddy.h | 122 +++++++++++++++++++++++++++++++++-------
 1 file changed, 102 insertions(+), 20 deletions(-)

diff --git a/include/drm/drm_buddy.h b/include/drm/drm_buddy.h index eb8b4f5e15b3..5e2969822362 100644
--- a/include/drm/drm_buddy.h
+++ b/include/drm/drm_buddy.h
@@ -14,14 +14,81 @@

 struct drm_printer;

+/**
+ * DRM_BUDDY_RANGE_ALLOCATION - Allocate within a specific address
+range
+ *
+ * When set, allocation is restricted to the range [start, end)
+specified
+ * in drm_buddy_alloc_blocks(). Without this flag, start/end are
+ignored
+ * and allocation can use any free space.
+ */
 #define DRM_BUDDY_RANGE_ALLOCATION             BIT(0)
+
+/**
+ * DRM_BUDDY_TOPDOWN_ALLOCATION - Allocate from top of address space
+ *
+ * Allocate starting from high addresses and working down. Useful for
+ * separating different allocation types (e.g., kernel vs userspace)
+ * to reduce fragmentation.
+ */
 #define DRM_BUDDY_TOPDOWN_ALLOCATION           BIT(1)
+
+/**
+ * DRM_BUDDY_CONTIGUOUS_ALLOCATION - Require physically contiguous
+blocks
+ *
+ * The allocation must be satisfied with a single contiguous block.
+ * If the requested size cannot be allocated contiguously, the
+ * allocation fails with -ENOSPC.
+ */
 #define DRM_BUDDY_CONTIGUOUS_ALLOCATION                BIT(2)
+
+/**
+ * DRM_BUDDY_CLEAR_ALLOCATION - Prefer pre-cleared (zeroed) memory
+ *
+ * Attempt to allocate from the clear tree first. If insufficient clear
+ * memory is available, falls back to dirty memory. Useful when the
+ * caller needs zeroed memory and wants to avoid GPU clear operations.
+ */
 #define DRM_BUDDY_CLEAR_ALLOCATION             BIT(3)
+
+/**
+ * DRM_BUDDY_CLEARED - Mark returned blocks as cleared
+ *
+ * Used with drm_buddy_free_list() to indicate that the memory being
+ * freed has been cleared (zeroed). The blocks will be placed in the
+ * clear tree for future DRM_BUDDY_CLEAR_ALLOCATION requests.
+ */
 #define DRM_BUDDY_CLEARED                      BIT(4)
+
+/**
+ * DRM_BUDDY_TRIM_DISABLE - Disable automatic block trimming
+ *
+ * By default, if an allocation is smaller than the allocated block,
+ * excess memory is trimmed and returned to the free pool. This flag
+ * disables trimming, keeping the full power-of-two block size.
+ */
 #define DRM_BUDDY_TRIM_DISABLE                 BIT(5)

+/**
+ * struct drm_buddy_block - Block within a buddy allocator
+ *
+ * Each block in the buddy allocator is represented by this structure.
+ * Blocks are organized in a binary tree where each parent block can be
+ * split into two children (left and right buddies). The allocator
+manages
+ * blocks at various orders (power-of-2 sizes) from chunk_size up to
+the
+ * largest contiguous region.
+ *
+ * @private: Private data owned by the allocator user (e.g.,
+driver-specific data)
+ * @link: List node for user ownership while block is allocated  */
 struct drm_buddy_block {
+/* private: */
+       /*
+        * Header bit layout:
+        * - Bits 63:12: block offset within the address space
+        * - Bits 11:10: state (ALLOCATED, FREE, or SPLIT)
+        * - Bit 9: clear bit (1 if memory is zeroed)
+        * - Bits 5:0: order (log2 of size relative to chunk_size)
+        */
 #define DRM_BUDDY_HEADER_OFFSET GENMASK_ULL(63, 12)  #define DRM_BUDDY_HEADER_STATE  GENMASK_ULL(11, 10)
 #define   DRM_BUDDY_ALLOCATED     (1 << 10)
@@ -36,7 +103,7 @@ struct drm_buddy_block {
        struct drm_buddy_block *left;
        struct drm_buddy_block *right;
        struct drm_buddy_block *parent;
-
+/* public: */
        void *private; /* owned by creator */

        /*
@@ -46,43 +113,58 @@ struct drm_buddy_block {
         * drm_buddy_free* ownership is given back to the mm.
         */
        union {
+/* private: */
                struct rb_node rb;
+/* public: */
                struct list_head link;
        };
-
+/* private: */
        struct list_head tmp_link;
 };

 /* Order-zero must be at least SZ_4K */  #define DRM_BUDDY_MAX_ORDER (63 - 12)

-/*
- * Binary Buddy System.
+/**
+ * struct drm_buddy - DRM binary buddy allocator
+ *
+ * The buddy allocator provides efficient power-of-two memory
+allocation
+ * with fast allocation and free operations. It is commonly used for
+GPU
+ * memory management where allocations can be split into power-of-two
+ * block sizes.
  *
- * Locking should be handled by the user, a simple mutex around
- * drm_buddy_alloc* and drm_buddy_free* should suffice.
+ * Locking should be handled by the user; a simple mutex around
+ * drm_buddy_alloc_blocks() and
+ drm_buddy_free_block()/drm_buddy_free_list()
+ * should suffice.
+ *
+ * @n_roots: Number of root blocks in the roots array.
+ * @max_order: Maximum block order (log2 of largest block size / chunk_size).
+ * @chunk_size: Minimum allocation granularity in bytes. Must be at least SZ_4K.
+ * @size: Total size of the address space managed by this allocator in bytes.
+ * @avail: Total free space currently available for allocation in bytes.
+ * @clear_avail: Free space available in the clear tree (zeroed memory) in bytes.
+ *               This is a subset of @avail.
  */
 struct drm_buddy {
-       /* Maintain a free list for each order. */
-       struct rb_root **free_trees;
-
+/* private: */
        /*
-        * Maintain explicit binary tree(s) to track the allocation of the
-        * address space. This gives us a simple way of finding a buddy block
-        * and performing the potentially recursive merge step when freeing a
-        * block.  Nodes are either allocated or free, in which case they will
-        * also exist on the respective free list.
+        * Array of red-black trees for free block management.
+        * Indexed as free_trees[clear/dirty][order] where:
+        * - Index 0 (DRM_BUDDY_DIRTY_TREE): blocks with unknown content
+        * - Index 1 (DRM_BUDDY_CLEAR_TREE): blocks with zeroed content

I think Index 0 is DRM_BUDDY_CLEAR_TREE and 1 is DRM_BUDDY_DIRTY_TREE


+        * Each tree holds free blocks of the corresponding order.
         */
-       struct drm_buddy_block **roots;
-
+       struct rb_root **free_trees;
        /*
-        * Anything from here is public, and remains static for the lifetime of
-        * the mm. Everything above is considered do-not-touch.
+        * Array of root blocks representing the top-level blocks of the
+        * binary tree(s). Multiple roots exist when the total size is not
+        * a power of two, with each root being the largest power-of-two
+        * that fits in the remaining space.
         */
+       struct drm_buddy_block **roots;
+/* public: */
        unsigned int n_roots;
        unsigned int max_order;
-
-       /* Must be at least SZ_4K */
        u64 chunk_size;
        u64 size;
        u64 avail;
--
2.52.0


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

end of thread, other threads:[~2026-02-06  8:39 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-04 10:43 [PATCH 0/2] drm/buddy: Documentation and internal helper cleanup Sanjay Yadav
2026-02-04 10:43 ` [PATCH 1/2] drm/buddy: Move internal helpers to drm_buddy.c Sanjay Yadav
2026-02-06  8:27   ` Paneer Selvam, Arunpravin
2026-02-04 10:43 ` [PATCH 2/2] drm/buddy: Add kernel-doc for allocator structures and flags Sanjay Yadav
2026-02-06  8:39   ` Paneer Selvam, Arunpravin
2026-02-04 10:54 ` ✓ CI.KUnit: success for drm/buddy: Documentation and internal helper cleanup Patchwork
2026-02-04 11:53 ` ✗ Xe.CI.BAT: failure " Patchwork
2026-02-04 22:03 ` ✗ Xe.CI.FULL: " Patchwork
2026-02-04 22:32 ` ✓ CI.KUnit: success for drm/buddy: Documentation and internal helper cleanup (rev2) Patchwork
2026-02-04 23:24 ` ✓ Xe.CI.BAT: " Patchwork
2026-02-05 13:53 ` ✗ Xe.CI.FULL: failure " Patchwork

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