* [PATCH v3 0/2] drm/buddy: Documentation and internal helper cleanup
@ 2026-02-12 9:25 Sanjay Yadav
2026-02-12 9:25 ` [PATCH v3 1/2] drm/buddy: Add kernel-doc for allocator structures and flags Sanjay Yadav
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Sanjay Yadav @ 2026-02-12 9:25 UTC (permalink / raw)
To: dri-devel; +Cc: intel-xe
This series improves the GPU buddy allocator by adding missing
documentation and cleaning up internal helpers.
It adds kernel-doc for the allocator structures and flags, covering
gpu_buddy, gpu_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
gpu_buddy.h into buddy.c as static functions, since they have no
external users, and removes gpu_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.
v2:
- Rebased after DRM buddy allocator moved to drivers/gpu/
- Keep gpu_buddy_block_is_free() in header since it's now
used by drm_buddy.c
- Corrected GPU_BUDDY_CLEAR_TREE and GPU_BUDDY_DIRTY_TREE index
values (Arun)
- Updated commit message and cover letter to reflect changes
v3:
- Document reserved bits 8:6 in header layout (Arun)
- Fix checkpatch warning
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: Add kernel-doc for allocator structures and flags
drm/buddy: Move internal helpers to buddy.c
drivers/gpu/buddy.c | 35 ++++-----
include/linux/gpu_buddy.h | 148 +++++++++++++++++++++++++++-----------
2 files changed, 123 insertions(+), 60 deletions(-)
--
2.52.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v3 1/2] drm/buddy: Add kernel-doc for allocator structures and flags
2026-02-12 9:25 [PATCH v3 0/2] drm/buddy: Documentation and internal helper cleanup Sanjay Yadav
@ 2026-02-12 9:25 ` Sanjay Yadav
2026-02-12 9:25 ` [PATCH v3 2/2] drm/buddy: Move internal helpers to buddy.c Sanjay Yadav
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Sanjay Yadav @ 2026-02-12 9:25 UTC (permalink / raw)
To: dri-devel; +Cc: intel-xe
Add missing kernel-doc for GPU buddy allocator flags,
gpu_buddy_block, and gpu_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.
v2:
- Corrected GPU_BUDDY_CLEAR_TREE and GPU_BUDDY_DIRTY_TREE index
values (Arun)
- Rebased after DRM buddy allocator moved to drivers/gpu/
- Updated commit message
v3:
- Document reserved bits 8:6 in header layout (Arun)
- Fix checkpatch warning
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>
Reviewed-by: Arunpravin Paneer Selvam <Arunpravin.PaneerSelvam@amd.com>
---
include/linux/gpu_buddy.h | 123 +++++++++++++++++++++++++++++++-------
1 file changed, 103 insertions(+), 20 deletions(-)
diff --git a/include/linux/gpu_buddy.h b/include/linux/gpu_buddy.h
index 07ac65db6d2e..bf2a42256536 100644
--- a/include/linux/gpu_buddy.h
+++ b/include/linux/gpu_buddy.h
@@ -12,11 +12,58 @@
#include <linux/sched.h>
#include <linux/rbtree.h>
+/**
+ * GPU_BUDDY_RANGE_ALLOCATION - Allocate within a specific address range
+ *
+ * When set, allocation is restricted to the range [start, end) specified
+ * in gpu_buddy_alloc_blocks(). Without this flag, start/end are ignored
+ * and allocation can use any free space.
+ */
#define GPU_BUDDY_RANGE_ALLOCATION BIT(0)
+
+/**
+ * GPU_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 GPU_BUDDY_TOPDOWN_ALLOCATION BIT(1)
+
+/**
+ * GPU_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 GPU_BUDDY_CONTIGUOUS_ALLOCATION BIT(2)
+
+/**
+ * GPU_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 GPU_BUDDY_CLEAR_ALLOCATION BIT(3)
+
+/**
+ * GPU_BUDDY_CLEARED - Mark returned blocks as cleared
+ *
+ * Used with gpu_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 GPU_BUDDY_CLEAR_ALLOCATION requests.
+ */
#define GPU_BUDDY_CLEARED BIT(4)
+
+/**
+ * GPU_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 GPU_BUDDY_TRIM_DISABLE BIT(5)
enum gpu_buddy_free_tree {
@@ -28,7 +75,28 @@ enum gpu_buddy_free_tree {
#define for_each_free_tree(tree) \
for ((tree) = 0; (tree) < GPU_BUDDY_MAX_FREE_TREES; (tree)++)
+/**
+ * struct gpu_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 gpu_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 8:6: reserved
+ * - Bits 5:0: order (log2 of size relative to chunk_size)
+ */
#define GPU_BUDDY_HEADER_OFFSET GENMASK_ULL(63, 12)
#define GPU_BUDDY_HEADER_STATE GENMASK_ULL(11, 10)
#define GPU_BUDDY_ALLOCATED (1 << 10)
@@ -43,7 +111,7 @@ struct gpu_buddy_block {
struct gpu_buddy_block *left;
struct gpu_buddy_block *right;
struct gpu_buddy_block *parent;
-
+/* public: */
void *private; /* owned by creator */
/*
@@ -53,43 +121,58 @@ struct gpu_buddy_block {
* gpu_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 GPU_BUDDY_MAX_ORDER (63 - 12)
-/*
- * Binary Buddy System.
+/**
+ * struct gpu_buddy - GPU 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
- * gpu_buddy_alloc* and gpu_buddy_free* should suffice.
+ * Locking should be handled by the user; a simple mutex around
+ * gpu_buddy_alloc_blocks() and gpu_buddy_free_block()/gpu_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 gpu_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 (GPU_BUDDY_CLEAR_TREE): blocks with zeroed content
+ * - Index 1 (GPU_BUDDY_DIRTY_TREE): blocks with unknown content
+ * Each tree holds free blocks of the corresponding order.
*/
- struct gpu_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 gpu_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] 6+ messages in thread
* [PATCH v3 2/2] drm/buddy: Move internal helpers to buddy.c
2026-02-12 9:25 [PATCH v3 0/2] drm/buddy: Documentation and internal helper cleanup Sanjay Yadav
2026-02-12 9:25 ` [PATCH v3 1/2] drm/buddy: Add kernel-doc for allocator structures and flags Sanjay Yadav
@ 2026-02-12 9:25 ` Sanjay Yadav
2026-02-12 9:36 ` ✓ CI.KUnit: success for drm/buddy: Documentation and internal helper cleanup (rev4) Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Sanjay Yadav @ 2026-02-12 9:25 UTC (permalink / raw)
To: dri-devel; +Cc: intel-xe
Move gpu_buddy_block_state(), gpu_buddy_block_is_allocated(),
and gpu_buddy_block_is_split() from gpu_buddy.h to gpu_buddy.c
as static functions since they have no external callers.
Remove gpu_get_buddy() as it was an unused exported wrapper
around the internal __get_buddy().
No functional changes.
v2:
- Rebased after DRM buddy allocator moved to drivers/gpu/
- Keep gpu_buddy_block_is_free() in header since it's now
used by drm_buddy.c
- Updated commit message
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>
Reviewed-by: Arunpravin Paneer Selvam <Arunpravin.PaneerSelvam@amd.com>
---
drivers/gpu/buddy.c | 35 ++++++++++++++++++-----------------
include/linux/gpu_buddy.h | 25 ++-----------------------
2 files changed, 20 insertions(+), 40 deletions(-)
diff --git a/drivers/gpu/buddy.c b/drivers/gpu/buddy.c
index 603c59a2013a..b27761246d4b 100644
--- a/drivers/gpu/buddy.c
+++ b/drivers/gpu/buddy.c
@@ -14,6 +14,24 @@
static struct kmem_cache *slab_blocks;
+static unsigned int
+gpu_buddy_block_state(struct gpu_buddy_block *block)
+{
+ return block->header & GPU_BUDDY_HEADER_STATE;
+}
+
+static bool
+gpu_buddy_block_is_allocated(struct gpu_buddy_block *block)
+{
+ return gpu_buddy_block_state(block) == GPU_BUDDY_ALLOCATED;
+}
+
+static bool
+gpu_buddy_block_is_split(struct gpu_buddy_block *block)
+{
+ return gpu_buddy_block_state(block) == GPU_BUDDY_SPLIT;
+}
+
static struct gpu_buddy_block *gpu_block_alloc(struct gpu_buddy *mm,
struct gpu_buddy_block *parent,
unsigned int order,
@@ -449,23 +467,6 @@ static int split_block(struct gpu_buddy *mm,
return 0;
}
-/**
- * gpu_get_buddy - get buddy address
- *
- * @block: GPU 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 gpu_buddy_block *
-gpu_get_buddy(struct gpu_buddy_block *block)
-{
- return __get_buddy(block);
-}
-EXPORT_SYMBOL(gpu_get_buddy);
-
/**
* gpu_buddy_reset_clear - reset blocks clear state
*
diff --git a/include/linux/gpu_buddy.h b/include/linux/gpu_buddy.h
index bf2a42256536..f1fb6eff604a 100644
--- a/include/linux/gpu_buddy.h
+++ b/include/linux/gpu_buddy.h
@@ -191,16 +191,10 @@ gpu_buddy_block_order(struct gpu_buddy_block *block)
return block->header & GPU_BUDDY_HEADER_ORDER;
}
-static inline unsigned int
-gpu_buddy_block_state(struct gpu_buddy_block *block)
-{
- return block->header & GPU_BUDDY_HEADER_STATE;
-}
-
static inline bool
-gpu_buddy_block_is_allocated(struct gpu_buddy_block *block)
+gpu_buddy_block_is_free(struct gpu_buddy_block *block)
{
- return gpu_buddy_block_state(block) == GPU_BUDDY_ALLOCATED;
+ return (block->header & GPU_BUDDY_HEADER_STATE) == GPU_BUDDY_FREE;
}
static inline bool
@@ -209,18 +203,6 @@ gpu_buddy_block_is_clear(struct gpu_buddy_block *block)
return block->header & GPU_BUDDY_HEADER_CLEAR;
}
-static inline bool
-gpu_buddy_block_is_free(struct gpu_buddy_block *block)
-{
- return gpu_buddy_block_state(block) == GPU_BUDDY_FREE;
-}
-
-static inline bool
-gpu_buddy_block_is_split(struct gpu_buddy_block *block)
-{
- return gpu_buddy_block_state(block) == GPU_BUDDY_SPLIT;
-}
-
static inline u64
gpu_buddy_block_size(struct gpu_buddy *mm,
struct gpu_buddy_block *block)
@@ -232,9 +214,6 @@ int gpu_buddy_init(struct gpu_buddy *mm, u64 size, u64 chunk_size);
void gpu_buddy_fini(struct gpu_buddy *mm);
-struct gpu_buddy_block *
-gpu_get_buddy(struct gpu_buddy_block *block);
-
int gpu_buddy_alloc_blocks(struct gpu_buddy *mm,
u64 start, u64 end, u64 size,
u64 min_page_size,
--
2.52.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✓ CI.KUnit: success for drm/buddy: Documentation and internal helper cleanup (rev4)
2026-02-12 9:25 [PATCH v3 0/2] drm/buddy: Documentation and internal helper cleanup Sanjay Yadav
2026-02-12 9:25 ` [PATCH v3 1/2] drm/buddy: Add kernel-doc for allocator structures and flags Sanjay Yadav
2026-02-12 9:25 ` [PATCH v3 2/2] drm/buddy: Move internal helpers to buddy.c Sanjay Yadav
@ 2026-02-12 9:36 ` Patchwork
2026-02-12 10:10 ` ✓ Xe.CI.BAT: " Patchwork
2026-02-13 12:02 ` ✗ Xe.CI.FULL: failure " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-02-12 9:36 UTC (permalink / raw)
To: Sanjay Yadav; +Cc: intel-xe
== Series Details ==
Series: drm/buddy: Documentation and internal helper cleanup (rev4)
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
[09:34:42] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:34:46] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[09:35:17] Starting KUnit Kernel (1/1)...
[09:35:17] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:35:18] ================== guc_buf (11 subtests) ===================
[09:35:18] [PASSED] test_smallest
[09:35:18] [PASSED] test_largest
[09:35:18] [PASSED] test_granular
[09:35:18] [PASSED] test_unique
[09:35:18] [PASSED] test_overlap
[09:35:18] [PASSED] test_reusable
[09:35:18] [PASSED] test_too_big
[09:35:18] [PASSED] test_flush
[09:35:18] [PASSED] test_lookup
[09:35:18] [PASSED] test_data
[09:35:18] [PASSED] test_class
[09:35:18] ===================== [PASSED] guc_buf =====================
[09:35:18] =================== guc_dbm (7 subtests) ===================
[09:35:18] [PASSED] test_empty
[09:35:18] [PASSED] test_default
[09:35:18] ======================== test_size ========================
[09:35:18] [PASSED] 4
[09:35:18] [PASSED] 8
[09:35:18] [PASSED] 32
[09:35:18] [PASSED] 256
[09:35:18] ==================== [PASSED] test_size ====================
[09:35:18] ======================= test_reuse ========================
[09:35:18] [PASSED] 4
[09:35:18] [PASSED] 8
[09:35:18] [PASSED] 32
[09:35:18] [PASSED] 256
[09:35:18] =================== [PASSED] test_reuse ====================
[09:35:18] =================== test_range_overlap ====================
[09:35:18] [PASSED] 4
[09:35:18] [PASSED] 8
[09:35:18] [PASSED] 32
[09:35:18] [PASSED] 256
[09:35:18] =============== [PASSED] test_range_overlap ================
[09:35:18] =================== test_range_compact ====================
[09:35:18] [PASSED] 4
[09:35:18] [PASSED] 8
[09:35:18] [PASSED] 32
[09:35:18] [PASSED] 256
[09:35:18] =============== [PASSED] test_range_compact ================
[09:35:18] ==================== test_range_spare =====================
[09:35:18] [PASSED] 4
[09:35:18] [PASSED] 8
[09:35:18] [PASSED] 32
[09:35:18] [PASSED] 256
[09:35:18] ================ [PASSED] test_range_spare =================
[09:35:18] ===================== [PASSED] guc_dbm =====================
[09:35:18] =================== guc_idm (6 subtests) ===================
[09:35:18] [PASSED] bad_init
[09:35:18] [PASSED] no_init
[09:35:18] [PASSED] init_fini
[09:35:18] [PASSED] check_used
[09:35:18] [PASSED] check_quota
[09:35:18] [PASSED] check_all
[09:35:18] ===================== [PASSED] guc_idm =====================
[09:35:18] ================== no_relay (3 subtests) ===================
[09:35:18] [PASSED] xe_drops_guc2pf_if_not_ready
[09:35:18] [PASSED] xe_drops_guc2vf_if_not_ready
[09:35:18] [PASSED] xe_rejects_send_if_not_ready
[09:35:18] ==================== [PASSED] no_relay =====================
[09:35:18] ================== pf_relay (14 subtests) ==================
[09:35:18] [PASSED] pf_rejects_guc2pf_too_short
[09:35:18] [PASSED] pf_rejects_guc2pf_too_long
[09:35:18] [PASSED] pf_rejects_guc2pf_no_payload
[09:35:18] [PASSED] pf_fails_no_payload
[09:35:18] [PASSED] pf_fails_bad_origin
[09:35:18] [PASSED] pf_fails_bad_type
[09:35:18] [PASSED] pf_txn_reports_error
[09:35:18] [PASSED] pf_txn_sends_pf2guc
[09:35:18] [PASSED] pf_sends_pf2guc
[09:35:18] [SKIPPED] pf_loopback_nop
[09:35:18] [SKIPPED] pf_loopback_echo
[09:35:18] [SKIPPED] pf_loopback_fail
[09:35:18] [SKIPPED] pf_loopback_busy
[09:35:18] [SKIPPED] pf_loopback_retry
[09:35:18] ==================== [PASSED] pf_relay =====================
[09:35:18] ================== vf_relay (3 subtests) ===================
[09:35:18] [PASSED] vf_rejects_guc2vf_too_short
[09:35:18] [PASSED] vf_rejects_guc2vf_too_long
[09:35:18] [PASSED] vf_rejects_guc2vf_no_payload
[09:35:18] ==================== [PASSED] vf_relay =====================
[09:35:18] ================ pf_gt_config (6 subtests) =================
[09:35:18] [PASSED] fair_contexts_1vf
[09:35:18] [PASSED] fair_doorbells_1vf
[09:35:18] [PASSED] fair_ggtt_1vf
[09:35:18] ====================== fair_contexts ======================
[09:35:18] [PASSED] 1 VF
[09:35:18] [PASSED] 2 VFs
[09:35:18] [PASSED] 3 VFs
[09:35:18] [PASSED] 4 VFs
[09:35:18] [PASSED] 5 VFs
[09:35:18] [PASSED] 6 VFs
[09:35:18] [PASSED] 7 VFs
[09:35:18] [PASSED] 8 VFs
[09:35:18] [PASSED] 9 VFs
[09:35:18] [PASSED] 10 VFs
[09:35:18] [PASSED] 11 VFs
[09:35:18] [PASSED] 12 VFs
[09:35:18] [PASSED] 13 VFs
[09:35:18] [PASSED] 14 VFs
[09:35:18] [PASSED] 15 VFs
[09:35:18] [PASSED] 16 VFs
[09:35:18] [PASSED] 17 VFs
[09:35:18] [PASSED] 18 VFs
[09:35:18] [PASSED] 19 VFs
[09:35:18] [PASSED] 20 VFs
[09:35:18] [PASSED] 21 VFs
[09:35:18] [PASSED] 22 VFs
[09:35:18] [PASSED] 23 VFs
[09:35:18] [PASSED] 24 VFs
[09:35:18] [PASSED] 25 VFs
[09:35:18] [PASSED] 26 VFs
[09:35:18] [PASSED] 27 VFs
[09:35:18] [PASSED] 28 VFs
[09:35:18] [PASSED] 29 VFs
[09:35:18] [PASSED] 30 VFs
[09:35:18] [PASSED] 31 VFs
[09:35:18] [PASSED] 32 VFs
[09:35:18] [PASSED] 33 VFs
[09:35:18] [PASSED] 34 VFs
[09:35:18] [PASSED] 35 VFs
[09:35:18] [PASSED] 36 VFs
[09:35:18] [PASSED] 37 VFs
[09:35:18] [PASSED] 38 VFs
[09:35:18] [PASSED] 39 VFs
[09:35:18] [PASSED] 40 VFs
[09:35:18] [PASSED] 41 VFs
[09:35:18] [PASSED] 42 VFs
[09:35:18] [PASSED] 43 VFs
[09:35:18] [PASSED] 44 VFs
[09:35:18] [PASSED] 45 VFs
[09:35:18] [PASSED] 46 VFs
[09:35:18] [PASSED] 47 VFs
[09:35:18] [PASSED] 48 VFs
[09:35:18] [PASSED] 49 VFs
[09:35:18] [PASSED] 50 VFs
[09:35:18] [PASSED] 51 VFs
[09:35:18] [PASSED] 52 VFs
[09:35:18] [PASSED] 53 VFs
[09:35:18] [PASSED] 54 VFs
[09:35:18] [PASSED] 55 VFs
[09:35:18] [PASSED] 56 VFs
[09:35:18] [PASSED] 57 VFs
[09:35:18] [PASSED] 58 VFs
[09:35:18] [PASSED] 59 VFs
[09:35:18] [PASSED] 60 VFs
[09:35:18] [PASSED] 61 VFs
[09:35:18] [PASSED] 62 VFs
[09:35:18] [PASSED] 63 VFs
[09:35:18] ================== [PASSED] fair_contexts ==================
[09:35:18] ===================== fair_doorbells ======================
[09:35:18] [PASSED] 1 VF
[09:35:18] [PASSED] 2 VFs
[09:35:18] [PASSED] 3 VFs
[09:35:18] [PASSED] 4 VFs
[09:35:18] [PASSED] 5 VFs
[09:35:18] [PASSED] 6 VFs
[09:35:18] [PASSED] 7 VFs
[09:35:18] [PASSED] 8 VFs
[09:35:18] [PASSED] 9 VFs
[09:35:18] [PASSED] 10 VFs
[09:35:18] [PASSED] 11 VFs
[09:35:18] [PASSED] 12 VFs
[09:35:18] [PASSED] 13 VFs
[09:35:18] [PASSED] 14 VFs
[09:35:18] [PASSED] 15 VFs
[09:35:18] [PASSED] 16 VFs
[09:35:18] [PASSED] 17 VFs
[09:35:18] [PASSED] 18 VFs
[09:35:18] [PASSED] 19 VFs
[09:35:18] [PASSED] 20 VFs
[09:35:18] [PASSED] 21 VFs
[09:35:18] [PASSED] 22 VFs
[09:35:18] [PASSED] 23 VFs
[09:35:18] [PASSED] 24 VFs
[09:35:18] [PASSED] 25 VFs
[09:35:18] [PASSED] 26 VFs
[09:35:18] [PASSED] 27 VFs
[09:35:18] [PASSED] 28 VFs
[09:35:18] [PASSED] 29 VFs
[09:35:18] [PASSED] 30 VFs
[09:35:18] [PASSED] 31 VFs
[09:35:18] [PASSED] 32 VFs
[09:35:18] [PASSED] 33 VFs
[09:35:18] [PASSED] 34 VFs
[09:35:18] [PASSED] 35 VFs
[09:35:18] [PASSED] 36 VFs
[09:35:18] [PASSED] 37 VFs
[09:35:18] [PASSED] 38 VFs
[09:35:18] [PASSED] 39 VFs
[09:35:18] [PASSED] 40 VFs
[09:35:18] [PASSED] 41 VFs
[09:35:18] [PASSED] 42 VFs
[09:35:18] [PASSED] 43 VFs
[09:35:18] [PASSED] 44 VFs
[09:35:18] [PASSED] 45 VFs
[09:35:18] [PASSED] 46 VFs
[09:35:18] [PASSED] 47 VFs
[09:35:18] [PASSED] 48 VFs
[09:35:18] [PASSED] 49 VFs
[09:35:18] [PASSED] 50 VFs
[09:35:18] [PASSED] 51 VFs
[09:35:18] [PASSED] 52 VFs
[09:35:18] [PASSED] 53 VFs
[09:35:18] [PASSED] 54 VFs
[09:35:18] [PASSED] 55 VFs
[09:35:18] [PASSED] 56 VFs
[09:35:18] [PASSED] 57 VFs
[09:35:18] [PASSED] 58 VFs
[09:35:18] [PASSED] 59 VFs
[09:35:18] [PASSED] 60 VFs
[09:35:18] [PASSED] 61 VFs
[09:35:18] [PASSED] 62 VFs
[09:35:18] [PASSED] 63 VFs
[09:35:18] ================= [PASSED] fair_doorbells ==================
[09:35:18] ======================== fair_ggtt ========================
[09:35:18] [PASSED] 1 VF
[09:35:18] [PASSED] 2 VFs
[09:35:18] [PASSED] 3 VFs
[09:35:18] [PASSED] 4 VFs
[09:35:18] [PASSED] 5 VFs
[09:35:18] [PASSED] 6 VFs
[09:35:18] [PASSED] 7 VFs
[09:35:18] [PASSED] 8 VFs
[09:35:18] [PASSED] 9 VFs
[09:35:18] [PASSED] 10 VFs
[09:35:18] [PASSED] 11 VFs
[09:35:18] [PASSED] 12 VFs
[09:35:18] [PASSED] 13 VFs
[09:35:18] [PASSED] 14 VFs
[09:35:18] [PASSED] 15 VFs
[09:35:18] [PASSED] 16 VFs
[09:35:18] [PASSED] 17 VFs
[09:35:18] [PASSED] 18 VFs
[09:35:18] [PASSED] 19 VFs
[09:35:18] [PASSED] 20 VFs
[09:35:18] [PASSED] 21 VFs
[09:35:18] [PASSED] 22 VFs
[09:35:18] [PASSED] 23 VFs
[09:35:18] [PASSED] 24 VFs
[09:35:18] [PASSED] 25 VFs
[09:35:18] [PASSED] 26 VFs
[09:35:18] [PASSED] 27 VFs
[09:35:18] [PASSED] 28 VFs
[09:35:18] [PASSED] 29 VFs
[09:35:18] [PASSED] 30 VFs
[09:35:18] [PASSED] 31 VFs
[09:35:18] [PASSED] 32 VFs
[09:35:18] [PASSED] 33 VFs
[09:35:18] [PASSED] 34 VFs
[09:35:18] [PASSED] 35 VFs
[09:35:18] [PASSED] 36 VFs
[09:35:18] [PASSED] 37 VFs
[09:35:18] [PASSED] 38 VFs
[09:35:18] [PASSED] 39 VFs
[09:35:18] [PASSED] 40 VFs
[09:35:18] [PASSED] 41 VFs
[09:35:18] [PASSED] 42 VFs
[09:35:18] [PASSED] 43 VFs
[09:35:18] [PASSED] 44 VFs
[09:35:18] [PASSED] 45 VFs
[09:35:18] [PASSED] 46 VFs
[09:35:18] [PASSED] 47 VFs
[09:35:18] [PASSED] 48 VFs
[09:35:18] [PASSED] 49 VFs
[09:35:18] [PASSED] 50 VFs
[09:35:18] [PASSED] 51 VFs
[09:35:18] [PASSED] 52 VFs
[09:35:18] [PASSED] 53 VFs
[09:35:18] [PASSED] 54 VFs
[09:35:18] [PASSED] 55 VFs
[09:35:18] [PASSED] 56 VFs
[09:35:18] [PASSED] 57 VFs
[09:35:18] [PASSED] 58 VFs
[09:35:18] [PASSED] 59 VFs
[09:35:18] [PASSED] 60 VFs
[09:35:18] [PASSED] 61 VFs
[09:35:18] [PASSED] 62 VFs
[09:35:18] [PASSED] 63 VFs
[09:35:18] ==================== [PASSED] fair_ggtt ====================
[09:35:18] ================== [PASSED] pf_gt_config ===================
[09:35:18] ===================== lmtt (1 subtest) =====================
[09:35:18] ======================== test_ops =========================
[09:35:18] [PASSED] 2-level
[09:35:18] [PASSED] multi-level
[09:35:18] ==================== [PASSED] test_ops =====================
[09:35:18] ====================== [PASSED] lmtt =======================
[09:35:18] ================= pf_service (11 subtests) =================
[09:35:18] [PASSED] pf_negotiate_any
[09:35:18] [PASSED] pf_negotiate_base_match
[09:35:18] [PASSED] pf_negotiate_base_newer
[09:35:18] [PASSED] pf_negotiate_base_next
[09:35:18] [SKIPPED] pf_negotiate_base_older
[09:35:18] [PASSED] pf_negotiate_base_prev
[09:35:18] [PASSED] pf_negotiate_latest_match
[09:35:18] [PASSED] pf_negotiate_latest_newer
[09:35:18] [PASSED] pf_negotiate_latest_next
[09:35:18] [SKIPPED] pf_negotiate_latest_older
[09:35:18] [SKIPPED] pf_negotiate_latest_prev
[09:35:18] =================== [PASSED] pf_service ====================
[09:35:18] ================= xe_guc_g2g (2 subtests) ==================
[09:35:18] ============== xe_live_guc_g2g_kunit_default ==============
[09:35:18] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[09:35:18] ============== xe_live_guc_g2g_kunit_allmem ===============
[09:35:18] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[09:35:18] =================== [SKIPPED] xe_guc_g2g ===================
[09:35:18] =================== xe_mocs (2 subtests) ===================
[09:35:18] ================ xe_live_mocs_kernel_kunit ================
[09:35:18] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[09:35:18] ================ xe_live_mocs_reset_kunit =================
[09:35:18] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[09:35:18] ==================== [SKIPPED] xe_mocs =====================
[09:35:18] ================= xe_migrate (2 subtests) ==================
[09:35:18] ================= xe_migrate_sanity_kunit =================
[09:35:18] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[09:35:18] ================== xe_validate_ccs_kunit ==================
[09:35:18] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[09:35:18] =================== [SKIPPED] xe_migrate ===================
[09:35:18] ================== xe_dma_buf (1 subtest) ==================
[09:35:18] ==================== xe_dma_buf_kunit =====================
[09:35:18] ================ [SKIPPED] xe_dma_buf_kunit ================
[09:35:18] =================== [SKIPPED] xe_dma_buf ===================
[09:35:18] ================= xe_bo_shrink (1 subtest) =================
[09:35:18] =================== xe_bo_shrink_kunit ====================
[09:35:18] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[09:35:18] ================== [SKIPPED] xe_bo_shrink ==================
[09:35:18] ==================== xe_bo (2 subtests) ====================
[09:35:18] ================== xe_ccs_migrate_kunit ===================
[09:35:18] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[09:35:18] ==================== xe_bo_evict_kunit ====================
[09:35:18] =============== [SKIPPED] xe_bo_evict_kunit ================
[09:35:18] ===================== [SKIPPED] xe_bo ======================
[09:35:18] ==================== args (13 subtests) ====================
[09:35:18] [PASSED] count_args_test
[09:35:18] [PASSED] call_args_example
[09:35:18] [PASSED] call_args_test
[09:35:18] [PASSED] drop_first_arg_example
[09:35:18] [PASSED] drop_first_arg_test
[09:35:18] [PASSED] first_arg_example
[09:35:18] [PASSED] first_arg_test
[09:35:18] [PASSED] last_arg_example
[09:35:18] [PASSED] last_arg_test
[09:35:18] [PASSED] pick_arg_example
[09:35:18] [PASSED] if_args_example
[09:35:18] [PASSED] if_args_test
[09:35:18] [PASSED] sep_comma_example
[09:35:18] ====================== [PASSED] args =======================
[09:35:18] =================== xe_pci (3 subtests) ====================
[09:35:18] ==================== check_graphics_ip ====================
[09:35:18] [PASSED] 12.00 Xe_LP
[09:35:18] [PASSED] 12.10 Xe_LP+
[09:35:18] [PASSED] 12.55 Xe_HPG
[09:35:18] [PASSED] 12.60 Xe_HPC
[09:35:18] [PASSED] 12.70 Xe_LPG
[09:35:18] [PASSED] 12.71 Xe_LPG
[09:35:18] [PASSED] 12.74 Xe_LPG+
[09:35:18] [PASSED] 20.01 Xe2_HPG
[09:35:18] [PASSED] 20.02 Xe2_HPG
[09:35:18] [PASSED] 20.04 Xe2_LPG
[09:35:18] [PASSED] 30.00 Xe3_LPG
[09:35:18] [PASSED] 30.01 Xe3_LPG
[09:35:18] [PASSED] 30.03 Xe3_LPG
[09:35:18] [PASSED] 30.04 Xe3_LPG
[09:35:18] [PASSED] 30.05 Xe3_LPG
[09:35:18] [PASSED] 35.10 Xe3p_LPG
[09:35:18] [PASSED] 35.11 Xe3p_XPC
[09:35:18] ================ [PASSED] check_graphics_ip ================
[09:35:18] ===================== check_media_ip ======================
[09:35:18] [PASSED] 12.00 Xe_M
[09:35:18] [PASSED] 12.55 Xe_HPM
[09:35:18] [PASSED] 13.00 Xe_LPM+
[09:35:18] [PASSED] 13.01 Xe2_HPM
[09:35:18] [PASSED] 20.00 Xe2_LPM
[09:35:18] [PASSED] 30.00 Xe3_LPM
[09:35:18] [PASSED] 30.02 Xe3_LPM
[09:35:18] [PASSED] 35.00 Xe3p_LPM
[09:35:18] [PASSED] 35.03 Xe3p_HPM
[09:35:18] ================= [PASSED] check_media_ip ==================
[09:35:18] =================== check_platform_desc ===================
[09:35:18] [PASSED] 0x9A60 (TIGERLAKE)
[09:35:18] [PASSED] 0x9A68 (TIGERLAKE)
[09:35:18] [PASSED] 0x9A70 (TIGERLAKE)
[09:35:18] [PASSED] 0x9A40 (TIGERLAKE)
[09:35:18] [PASSED] 0x9A49 (TIGERLAKE)
[09:35:18] [PASSED] 0x9A59 (TIGERLAKE)
[09:35:18] [PASSED] 0x9A78 (TIGERLAKE)
[09:35:18] [PASSED] 0x9AC0 (TIGERLAKE)
[09:35:18] [PASSED] 0x9AC9 (TIGERLAKE)
[09:35:18] [PASSED] 0x9AD9 (TIGERLAKE)
[09:35:18] [PASSED] 0x9AF8 (TIGERLAKE)
[09:35:18] [PASSED] 0x4C80 (ROCKETLAKE)
[09:35:18] [PASSED] 0x4C8A (ROCKETLAKE)
[09:35:18] [PASSED] 0x4C8B (ROCKETLAKE)
[09:35:18] [PASSED] 0x4C8C (ROCKETLAKE)
[09:35:18] [PASSED] 0x4C90 (ROCKETLAKE)
[09:35:18] [PASSED] 0x4C9A (ROCKETLAKE)
[09:35:18] [PASSED] 0x4680 (ALDERLAKE_S)
[09:35:18] [PASSED] 0x4682 (ALDERLAKE_S)
[09:35:18] [PASSED] 0x4688 (ALDERLAKE_S)
[09:35:18] [PASSED] 0x468A (ALDERLAKE_S)
[09:35:18] [PASSED] 0x468B (ALDERLAKE_S)
[09:35:18] [PASSED] 0x4690 (ALDERLAKE_S)
[09:35:18] [PASSED] 0x4692 (ALDERLAKE_S)
[09:35:18] [PASSED] 0x4693 (ALDERLAKE_S)
[09:35:18] [PASSED] 0x46A0 (ALDERLAKE_P)
[09:35:18] [PASSED] 0x46A1 (ALDERLAKE_P)
[09:35:18] [PASSED] 0x46A2 (ALDERLAKE_P)
[09:35:18] [PASSED] 0x46A3 (ALDERLAKE_P)
[09:35:18] [PASSED] 0x46A6 (ALDERLAKE_P)
[09:35:18] [PASSED] 0x46A8 (ALDERLAKE_P)
[09:35:18] [PASSED] 0x46AA (ALDERLAKE_P)
[09:35:18] [PASSED] 0x462A (ALDERLAKE_P)
[09:35:18] [PASSED] 0x4626 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[09:35:18] [PASSED] 0x4628 (ALDERLAKE_P)
[09:35:18] [PASSED] 0x46B0 (ALDERLAKE_P)
[09:35:18] [PASSED] 0x46B1 (ALDERLAKE_P)
[09:35:18] [PASSED] 0x46B2 (ALDERLAKE_P)
[09:35:18] [PASSED] 0x46B3 (ALDERLAKE_P)
[09:35:18] [PASSED] 0x46C0 (ALDERLAKE_P)
[09:35:18] [PASSED] 0x46C1 (ALDERLAKE_P)
[09:35:18] [PASSED] 0x46C2 (ALDERLAKE_P)
[09:35:18] [PASSED] 0x46C3 (ALDERLAKE_P)
[09:35:18] [PASSED] 0x46D0 (ALDERLAKE_N)
[09:35:18] [PASSED] 0x46D1 (ALDERLAKE_N)
[09:35:18] [PASSED] 0x46D2 (ALDERLAKE_N)
[09:35:18] [PASSED] 0x46D3 (ALDERLAKE_N)
[09:35:18] [PASSED] 0x46D4 (ALDERLAKE_N)
[09:35:18] [PASSED] 0xA721 (ALDERLAKE_P)
[09:35:18] [PASSED] 0xA7A1 (ALDERLAKE_P)
[09:35:18] [PASSED] 0xA7A9 (ALDERLAKE_P)
[09:35:18] [PASSED] 0xA7AC (ALDERLAKE_P)
[09:35:18] [PASSED] 0xA7AD (ALDERLAKE_P)
[09:35:18] [PASSED] 0xA720 (ALDERLAKE_P)
[09:35:18] [PASSED] 0xA7A0 (ALDERLAKE_P)
[09:35:18] [PASSED] 0xA7A8 (ALDERLAKE_P)
[09:35:18] [PASSED] 0xA7AA (ALDERLAKE_P)
[09:35:18] [PASSED] 0xA7AB (ALDERLAKE_P)
[09:35:18] [PASSED] 0xA780 (ALDERLAKE_S)
[09:35:18] [PASSED] 0xA781 (ALDERLAKE_S)
[09:35:18] [PASSED] 0xA782 (ALDERLAKE_S)
[09:35:18] [PASSED] 0xA783 (ALDERLAKE_S)
[09:35:18] [PASSED] 0xA788 (ALDERLAKE_S)
[09:35:18] [PASSED] 0xA789 (ALDERLAKE_S)
[09:35:18] [PASSED] 0xA78A (ALDERLAKE_S)
[09:35:18] [PASSED] 0xA78B (ALDERLAKE_S)
[09:35:18] [PASSED] 0x4905 (DG1)
[09:35:18] [PASSED] 0x4906 (DG1)
[09:35:18] [PASSED] 0x4907 (DG1)
[09:35:18] [PASSED] 0x4908 (DG1)
[09:35:18] [PASSED] 0x4909 (DG1)
[09:35:18] [PASSED] 0x56C0 (DG2)
[09:35:18] [PASSED] 0x56C2 (DG2)
[09:35:18] [PASSED] 0x56C1 (DG2)
[09:35:18] [PASSED] 0x7D51 (METEORLAKE)
[09:35:18] [PASSED] 0x7DD1 (METEORLAKE)
[09:35:18] [PASSED] 0x7D41 (METEORLAKE)
[09:35:18] [PASSED] 0x7D67 (METEORLAKE)
[09:35:18] [PASSED] 0xB640 (METEORLAKE)
[09:35:18] [PASSED] 0x56A0 (DG2)
[09:35:18] [PASSED] 0x56A1 (DG2)
[09:35:18] [PASSED] 0x56A2 (DG2)
[09:35:18] [PASSED] 0x56BE (DG2)
[09:35:18] [PASSED] 0x56BF (DG2)
[09:35:18] [PASSED] 0x5690 (DG2)
[09:35:18] [PASSED] 0x5691 (DG2)
[09:35:18] [PASSED] 0x5692 (DG2)
[09:35:18] [PASSED] 0x56A5 (DG2)
[09:35:18] [PASSED] 0x56A6 (DG2)
[09:35:18] [PASSED] 0x56B0 (DG2)
[09:35:18] [PASSED] 0x56B1 (DG2)
[09:35:18] [PASSED] 0x56BA (DG2)
[09:35:18] [PASSED] 0x56BB (DG2)
[09:35:18] [PASSED] 0x56BC (DG2)
[09:35:18] [PASSED] 0x56BD (DG2)
[09:35:18] [PASSED] 0x5693 (DG2)
[09:35:18] [PASSED] 0x5694 (DG2)
[09:35:18] [PASSED] 0x5695 (DG2)
[09:35:18] [PASSED] 0x56A3 (DG2)
[09:35:18] [PASSED] 0x56A4 (DG2)
[09:35:18] [PASSED] 0x56B2 (DG2)
[09:35:18] [PASSED] 0x56B3 (DG2)
[09:35:18] [PASSED] 0x5696 (DG2)
[09:35:18] [PASSED] 0x5697 (DG2)
[09:35:18] [PASSED] 0xB69 (PVC)
[09:35:18] [PASSED] 0xB6E (PVC)
[09:35:18] [PASSED] 0xBD4 (PVC)
[09:35:18] [PASSED] 0xBD5 (PVC)
[09:35:18] [PASSED] 0xBD6 (PVC)
[09:35:18] [PASSED] 0xBD7 (PVC)
[09:35:18] [PASSED] 0xBD8 (PVC)
[09:35:18] [PASSED] 0xBD9 (PVC)
[09:35:18] [PASSED] 0xBDA (PVC)
[09:35:18] [PASSED] 0xBDB (PVC)
[09:35:18] [PASSED] 0xBE0 (PVC)
[09:35:18] [PASSED] 0xBE1 (PVC)
[09:35:18] [PASSED] 0xBE5 (PVC)
[09:35:18] [PASSED] 0x7D40 (METEORLAKE)
[09:35:18] [PASSED] 0x7D45 (METEORLAKE)
[09:35:18] [PASSED] 0x7D55 (METEORLAKE)
[09:35:18] [PASSED] 0x7D60 (METEORLAKE)
[09:35:18] [PASSED] 0x7DD5 (METEORLAKE)
[09:35:18] [PASSED] 0x6420 (LUNARLAKE)
[09:35:18] [PASSED] 0x64A0 (LUNARLAKE)
[09:35:18] [PASSED] 0x64B0 (LUNARLAKE)
[09:35:18] [PASSED] 0xE202 (BATTLEMAGE)
[09:35:18] [PASSED] 0xE209 (BATTLEMAGE)
[09:35:18] [PASSED] 0xE20B (BATTLEMAGE)
[09:35:18] [PASSED] 0xE20C (BATTLEMAGE)
[09:35:18] [PASSED] 0xE20D (BATTLEMAGE)
[09:35:18] [PASSED] 0xE210 (BATTLEMAGE)
[09:35:18] [PASSED] 0xE211 (BATTLEMAGE)
[09:35:18] [PASSED] 0xE212 (BATTLEMAGE)
[09:35:18] [PASSED] 0xE216 (BATTLEMAGE)
[09:35:18] [PASSED] 0xE220 (BATTLEMAGE)
[09:35:18] [PASSED] 0xE221 (BATTLEMAGE)
[09:35:18] [PASSED] 0xE222 (BATTLEMAGE)
[09:35:18] [PASSED] 0xE223 (BATTLEMAGE)
[09:35:18] [PASSED] 0xB080 (PANTHERLAKE)
[09:35:18] [PASSED] 0xB081 (PANTHERLAKE)
[09:35:18] [PASSED] 0xB082 (PANTHERLAKE)
[09:35:18] [PASSED] 0xB083 (PANTHERLAKE)
[09:35:18] [PASSED] 0xB084 (PANTHERLAKE)
[09:35:18] [PASSED] 0xB085 (PANTHERLAKE)
[09:35:18] [PASSED] 0xB086 (PANTHERLAKE)
[09:35:18] [PASSED] 0xB087 (PANTHERLAKE)
[09:35:18] [PASSED] 0xB08F (PANTHERLAKE)
[09:35:18] [PASSED] 0xB090 (PANTHERLAKE)
[09:35:18] [PASSED] 0xB0A0 (PANTHERLAKE)
[09:35:18] [PASSED] 0xB0B0 (PANTHERLAKE)
[09:35:18] [PASSED] 0xFD80 (PANTHERLAKE)
[09:35:18] [PASSED] 0xFD81 (PANTHERLAKE)
[09:35:18] [PASSED] 0xD740 (NOVALAKE_S)
[09:35:18] [PASSED] 0xD741 (NOVALAKE_S)
[09:35:18] [PASSED] 0xD742 (NOVALAKE_S)
[09:35:18] [PASSED] 0xD743 (NOVALAKE_S)
[09:35:18] [PASSED] 0xD744 (NOVALAKE_S)
[09:35:18] [PASSED] 0xD745 (NOVALAKE_S)
[09:35:18] [PASSED] 0x674C (CRESCENTISLAND)
[09:35:18] [PASSED] 0xD750 (NOVALAKE_P)
[09:35:18] [PASSED] 0xD751 (NOVALAKE_P)
[09:35:18] [PASSED] 0xD752 (NOVALAKE_P)
[09:35:18] [PASSED] 0xD753 (NOVALAKE_P)
[09:35:18] [PASSED] 0xD754 (NOVALAKE_P)
[09:35:18] [PASSED] 0xD755 (NOVALAKE_P)
[09:35:18] [PASSED] 0xD756 (NOVALAKE_P)
[09:35:18] [PASSED] 0xD757 (NOVALAKE_P)
[09:35:18] [PASSED] 0xD75F (NOVALAKE_P)
[09:35:18] =============== [PASSED] check_platform_desc ===============
[09:35:18] ===================== [PASSED] xe_pci ======================
[09:35:18] =================== xe_rtp (2 subtests) ====================
[09:35:18] =============== xe_rtp_process_to_sr_tests ================
[09:35:18] [PASSED] coalesce-same-reg
[09:35:18] [PASSED] no-match-no-add
[09:35:18] [PASSED] match-or
[09:35:18] [PASSED] match-or-xfail
[09:35:18] [PASSED] no-match-no-add-multiple-rules
[09:35:18] [PASSED] two-regs-two-entries
[09:35:18] [PASSED] clr-one-set-other
[09:35:18] [PASSED] set-field
[09:35:18] [PASSED] conflict-duplicate
[09:35:18] [PASSED] conflict-not-disjoint
[09:35:18] [PASSED] conflict-reg-type
[09:35:18] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[09:35:18] ================== xe_rtp_process_tests ===================
[09:35:18] [PASSED] active1
[09:35:18] [PASSED] active2
[09:35:18] [PASSED] active-inactive
[09:35:18] [PASSED] inactive-active
[09:35:18] [PASSED] inactive-1st_or_active-inactive
[09:35:18] [PASSED] inactive-2nd_or_active-inactive
[09:35:18] [PASSED] inactive-last_or_active-inactive
[09:35:18] [PASSED] inactive-no_or_active-inactive
[09:35:18] ============== [PASSED] xe_rtp_process_tests ===============
[09:35:18] ===================== [PASSED] xe_rtp ======================
[09:35:18] ==================== xe_wa (1 subtest) =====================
[09:35:18] ======================== xe_wa_gt =========================
[09:35:18] [PASSED] TIGERLAKE B0
[09:35:18] [PASSED] DG1 A0
[09:35:18] [PASSED] DG1 B0
[09:35:18] [PASSED] ALDERLAKE_S A0
[09:35:18] [PASSED] ALDERLAKE_S B0
[09:35:18] [PASSED] ALDERLAKE_S C0
[09:35:18] [PASSED] ALDERLAKE_S D0
[09:35:18] [PASSED] ALDERLAKE_P A0
[09:35:18] [PASSED] ALDERLAKE_P B0
[09:35:18] [PASSED] ALDERLAKE_P C0
[09:35:18] [PASSED] ALDERLAKE_S RPLS D0
[09:35:18] [PASSED] ALDERLAKE_P RPLU E0
[09:35:18] [PASSED] DG2 G10 C0
[09:35:18] [PASSED] DG2 G11 B1
[09:35:18] [PASSED] DG2 G12 A1
[09:35:18] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[09:35:18] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[09:35:18] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[09:35:18] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[09:35:18] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[09:35:18] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[09:35:18] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[09:35:18] ==================== [PASSED] xe_wa_gt =====================
[09:35:18] ====================== [PASSED] xe_wa ======================
[09:35:18] ============================================================
[09:35:18] Testing complete. Ran 522 tests: passed: 504, skipped: 18
[09:35:18] Elapsed time: 36.282s total, 4.238s configuring, 31.528s building, 0.468s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[09:35:18] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:35:20] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[09:35:45] Starting KUnit Kernel (1/1)...
[09:35:45] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:35:45] ============ drm_test_pick_cmdline (2 subtests) ============
[09:35:45] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[09:35:45] =============== drm_test_pick_cmdline_named ===============
[09:35:45] [PASSED] NTSC
[09:35:45] [PASSED] NTSC-J
[09:35:45] [PASSED] PAL
[09:35:45] [PASSED] PAL-M
[09:35:45] =========== [PASSED] drm_test_pick_cmdline_named ===========
[09:35:45] ============== [PASSED] drm_test_pick_cmdline ==============
[09:35:45] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[09:35:45] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[09:35:45] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[09:35:45] =========== drm_validate_clone_mode (2 subtests) ===========
[09:35:45] ============== drm_test_check_in_clone_mode ===============
[09:35:45] [PASSED] in_clone_mode
[09:35:45] [PASSED] not_in_clone_mode
[09:35:45] ========== [PASSED] drm_test_check_in_clone_mode ===========
[09:35:45] =============== drm_test_check_valid_clones ===============
[09:35:45] [PASSED] not_in_clone_mode
[09:35:45] [PASSED] valid_clone
[09:35:45] [PASSED] invalid_clone
[09:35:45] =========== [PASSED] drm_test_check_valid_clones ===========
[09:35:45] ============= [PASSED] drm_validate_clone_mode =============
[09:35:45] ============= drm_validate_modeset (1 subtest) =============
[09:35:45] [PASSED] drm_test_check_connector_changed_modeset
[09:35:45] ============== [PASSED] drm_validate_modeset ===============
[09:35:45] ====== drm_test_bridge_get_current_state (2 subtests) ======
[09:35:45] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[09:35:45] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[09:35:45] ======== [PASSED] drm_test_bridge_get_current_state ========
[09:35:45] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[09:35:45] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[09:35:45] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[09:35:45] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[09:35:45] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[09:35:45] ============== drm_bridge_alloc (2 subtests) ===============
[09:35:45] [PASSED] drm_test_drm_bridge_alloc_basic
[09:35:45] [PASSED] drm_test_drm_bridge_alloc_get_put
[09:35:45] ================ [PASSED] drm_bridge_alloc =================
[09:35:45] ============= drm_cmdline_parser (40 subtests) =============
[09:35:45] [PASSED] drm_test_cmdline_force_d_only
[09:35:45] [PASSED] drm_test_cmdline_force_D_only_dvi
[09:35:45] [PASSED] drm_test_cmdline_force_D_only_hdmi
[09:35:45] [PASSED] drm_test_cmdline_force_D_only_not_digital
[09:35:45] [PASSED] drm_test_cmdline_force_e_only
[09:35:45] [PASSED] drm_test_cmdline_res
[09:35:45] [PASSED] drm_test_cmdline_res_vesa
[09:35:45] [PASSED] drm_test_cmdline_res_vesa_rblank
[09:35:45] [PASSED] drm_test_cmdline_res_rblank
[09:35:45] [PASSED] drm_test_cmdline_res_bpp
[09:35:45] [PASSED] drm_test_cmdline_res_refresh
[09:35:45] [PASSED] drm_test_cmdline_res_bpp_refresh
[09:35:45] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[09:35:45] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[09:35:45] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[09:35:45] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[09:35:45] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[09:35:45] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[09:35:45] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[09:35:45] [PASSED] drm_test_cmdline_res_margins_force_on
[09:35:45] [PASSED] drm_test_cmdline_res_vesa_margins
[09:35:45] [PASSED] drm_test_cmdline_name
[09:35:45] [PASSED] drm_test_cmdline_name_bpp
[09:35:45] [PASSED] drm_test_cmdline_name_option
[09:35:45] [PASSED] drm_test_cmdline_name_bpp_option
[09:35:45] [PASSED] drm_test_cmdline_rotate_0
[09:35:45] [PASSED] drm_test_cmdline_rotate_90
[09:35:45] [PASSED] drm_test_cmdline_rotate_180
[09:35:45] [PASSED] drm_test_cmdline_rotate_270
[09:35:45] [PASSED] drm_test_cmdline_hmirror
[09:35:45] [PASSED] drm_test_cmdline_vmirror
[09:35:45] [PASSED] drm_test_cmdline_margin_options
[09:35:45] [PASSED] drm_test_cmdline_multiple_options
[09:35:45] [PASSED] drm_test_cmdline_bpp_extra_and_option
[09:35:45] [PASSED] drm_test_cmdline_extra_and_option
[09:35:45] [PASSED] drm_test_cmdline_freestanding_options
[09:35:45] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[09:35:45] [PASSED] drm_test_cmdline_panel_orientation
[09:35:45] ================ drm_test_cmdline_invalid =================
[09:35:45] [PASSED] margin_only
[09:35:45] [PASSED] interlace_only
[09:35:45] [PASSED] res_missing_x
[09:35:45] [PASSED] res_missing_y
[09:35:45] [PASSED] res_bad_y
[09:35:45] [PASSED] res_missing_y_bpp
[09:35:45] [PASSED] res_bad_bpp
[09:35:45] [PASSED] res_bad_refresh
[09:35:45] [PASSED] res_bpp_refresh_force_on_off
[09:35:45] [PASSED] res_invalid_mode
[09:35:45] [PASSED] res_bpp_wrong_place_mode
[09:35:45] [PASSED] name_bpp_refresh
[09:35:45] [PASSED] name_refresh
[09:35:45] [PASSED] name_refresh_wrong_mode
[09:35:45] [PASSED] name_refresh_invalid_mode
[09:35:45] [PASSED] rotate_multiple
[09:35:45] [PASSED] rotate_invalid_val
[09:35:45] [PASSED] rotate_truncated
[09:35:45] [PASSED] invalid_option
[09:35:45] [PASSED] invalid_tv_option
[09:35:45] [PASSED] truncated_tv_option
[09:35:45] ============ [PASSED] drm_test_cmdline_invalid =============
[09:35:45] =============== drm_test_cmdline_tv_options ===============
[09:35:45] [PASSED] NTSC
[09:35:45] [PASSED] NTSC_443
[09:35:45] [PASSED] NTSC_J
[09:35:45] [PASSED] PAL
[09:35:45] [PASSED] PAL_M
[09:35:45] [PASSED] PAL_N
[09:35:45] [PASSED] SECAM
[09:35:45] [PASSED] MONO_525
[09:35:45] [PASSED] MONO_625
[09:35:45] =========== [PASSED] drm_test_cmdline_tv_options ===========
[09:35:45] =============== [PASSED] drm_cmdline_parser ================
[09:35:45] ========== drmm_connector_hdmi_init (20 subtests) ==========
[09:35:45] [PASSED] drm_test_connector_hdmi_init_valid
[09:35:45] [PASSED] drm_test_connector_hdmi_init_bpc_8
[09:35:45] [PASSED] drm_test_connector_hdmi_init_bpc_10
[09:35:45] [PASSED] drm_test_connector_hdmi_init_bpc_12
[09:35:45] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[09:35:45] [PASSED] drm_test_connector_hdmi_init_bpc_null
[09:35:45] [PASSED] drm_test_connector_hdmi_init_formats_empty
[09:35:45] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[09:35:45] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[09:35:45] [PASSED] supported_formats=0x9 yuv420_allowed=1
[09:35:45] [PASSED] supported_formats=0x9 yuv420_allowed=0
[09:35:45] [PASSED] supported_formats=0x3 yuv420_allowed=1
[09:35:45] [PASSED] supported_formats=0x3 yuv420_allowed=0
[09:35:45] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[09:35:45] [PASSED] drm_test_connector_hdmi_init_null_ddc
[09:35:45] [PASSED] drm_test_connector_hdmi_init_null_product
[09:35:45] [PASSED] drm_test_connector_hdmi_init_null_vendor
[09:35:45] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[09:35:45] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[09:35:45] [PASSED] drm_test_connector_hdmi_init_product_valid
[09:35:45] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[09:35:45] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[09:35:45] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[09:35:45] ========= drm_test_connector_hdmi_init_type_valid =========
[09:35:45] [PASSED] HDMI-A
[09:35:45] [PASSED] HDMI-B
[09:35:45] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[09:35:45] ======== drm_test_connector_hdmi_init_type_invalid ========
[09:35:45] [PASSED] Unknown
[09:35:45] [PASSED] VGA
[09:35:45] [PASSED] DVI-I
[09:35:45] [PASSED] DVI-D
[09:35:45] [PASSED] DVI-A
[09:35:45] [PASSED] Composite
[09:35:45] [PASSED] SVIDEO
[09:35:45] [PASSED] LVDS
[09:35:45] [PASSED] Component
[09:35:45] [PASSED] DIN
[09:35:45] [PASSED] DP
[09:35:45] [PASSED] TV
[09:35:45] [PASSED] eDP
[09:35:45] [PASSED] Virtual
[09:35:45] [PASSED] DSI
[09:35:45] [PASSED] DPI
[09:35:45] [PASSED] Writeback
[09:35:45] [PASSED] SPI
[09:35:45] [PASSED] USB
[09:35:45] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[09:35:45] ============ [PASSED] drmm_connector_hdmi_init =============
[09:35:45] ============= drmm_connector_init (3 subtests) =============
[09:35:45] [PASSED] drm_test_drmm_connector_init
[09:35:45] [PASSED] drm_test_drmm_connector_init_null_ddc
[09:35:45] ========= drm_test_drmm_connector_init_type_valid =========
[09:35:45] [PASSED] Unknown
[09:35:45] [PASSED] VGA
[09:35:45] [PASSED] DVI-I
[09:35:45] [PASSED] DVI-D
[09:35:45] [PASSED] DVI-A
[09:35:45] [PASSED] Composite
[09:35:45] [PASSED] SVIDEO
[09:35:45] [PASSED] LVDS
[09:35:45] [PASSED] Component
[09:35:45] [PASSED] DIN
[09:35:45] [PASSED] DP
[09:35:45] [PASSED] HDMI-A
[09:35:45] [PASSED] HDMI-B
[09:35:45] [PASSED] TV
[09:35:45] [PASSED] eDP
[09:35:45] [PASSED] Virtual
[09:35:45] [PASSED] DSI
[09:35:45] [PASSED] DPI
[09:35:45] [PASSED] Writeback
[09:35:45] [PASSED] SPI
[09:35:45] [PASSED] USB
[09:35:45] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[09:35:45] =============== [PASSED] drmm_connector_init ===============
[09:35:45] ========= drm_connector_dynamic_init (6 subtests) ==========
[09:35:45] [PASSED] drm_test_drm_connector_dynamic_init
[09:35:45] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[09:35:45] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[09:35:45] [PASSED] drm_test_drm_connector_dynamic_init_properties
[09:35:45] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[09:35:45] [PASSED] Unknown
[09:35:45] [PASSED] VGA
[09:35:45] [PASSED] DVI-I
[09:35:45] [PASSED] DVI-D
[09:35:45] [PASSED] DVI-A
[09:35:45] [PASSED] Composite
[09:35:45] [PASSED] SVIDEO
[09:35:45] [PASSED] LVDS
[09:35:45] [PASSED] Component
[09:35:45] [PASSED] DIN
[09:35:45] [PASSED] DP
[09:35:45] [PASSED] HDMI-A
[09:35:45] [PASSED] HDMI-B
[09:35:45] [PASSED] TV
[09:35:45] [PASSED] eDP
[09:35:45] [PASSED] Virtual
[09:35:45] [PASSED] DSI
[09:35:45] [PASSED] DPI
[09:35:45] [PASSED] Writeback
[09:35:45] [PASSED] SPI
[09:35:45] [PASSED] USB
[09:35:45] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[09:35:45] ======== drm_test_drm_connector_dynamic_init_name =========
[09:35:45] [PASSED] Unknown
[09:35:45] [PASSED] VGA
[09:35:45] [PASSED] DVI-I
[09:35:45] [PASSED] DVI-D
[09:35:45] [PASSED] DVI-A
[09:35:45] [PASSED] Composite
[09:35:45] [PASSED] SVIDEO
[09:35:45] [PASSED] LVDS
[09:35:45] [PASSED] Component
[09:35:45] [PASSED] DIN
[09:35:45] [PASSED] DP
[09:35:45] [PASSED] HDMI-A
[09:35:45] [PASSED] HDMI-B
[09:35:45] [PASSED] TV
[09:35:45] [PASSED] eDP
[09:35:45] [PASSED] Virtual
[09:35:45] [PASSED] DSI
[09:35:45] [PASSED] DPI
[09:35:45] [PASSED] Writeback
[09:35:45] [PASSED] SPI
[09:35:45] [PASSED] USB
[09:35:45] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[09:35:45] =========== [PASSED] drm_connector_dynamic_init ============
[09:35:45] ==== drm_connector_dynamic_register_early (4 subtests) =====
[09:35:45] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[09:35:45] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[09:35:45] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[09:35:45] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[09:35:45] ====== [PASSED] drm_connector_dynamic_register_early =======
[09:35:45] ======= drm_connector_dynamic_register (7 subtests) ========
[09:35:45] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[09:35:45] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[09:35:45] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[09:35:45] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[09:35:45] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[09:35:45] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[09:35:45] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[09:35:45] ========= [PASSED] drm_connector_dynamic_register ==========
[09:35:45] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[09:35:45] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[09:35:45] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[09:35:45] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[09:35:45] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[09:35:45] ========== drm_test_get_tv_mode_from_name_valid ===========
[09:35:45] [PASSED] NTSC
[09:35:45] [PASSED] NTSC-443
[09:35:45] [PASSED] NTSC-J
[09:35:45] [PASSED] PAL
[09:35:45] [PASSED] PAL-M
[09:35:45] [PASSED] PAL-N
[09:35:45] [PASSED] SECAM
[09:35:45] [PASSED] Mono
[09:35:45] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[09:35:45] [PASSED] drm_test_get_tv_mode_from_name_truncated
[09:35:45] ============ [PASSED] drm_get_tv_mode_from_name ============
[09:35:45] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[09:35:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[09:35:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[09:35:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[09:35:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[09:35:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[09:35:45] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[09:35:45] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[09:35:45] [PASSED] VIC 96
[09:35:45] [PASSED] VIC 97
[09:35:45] [PASSED] VIC 101
[09:35:45] [PASSED] VIC 102
[09:35:45] [PASSED] VIC 106
[09:35:45] [PASSED] VIC 107
[09:35:45] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[09:35:45] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[09:35:45] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[09:35:45] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[09:35:45] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[09:35:45] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[09:35:45] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[09:35:45] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[09:35:45] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[09:35:45] [PASSED] Automatic
[09:35:45] [PASSED] Full
[09:35:45] [PASSED] Limited 16:235
[09:35:45] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[09:35:45] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[09:35:45] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[09:35:45] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[09:35:45] === drm_test_drm_hdmi_connector_get_output_format_name ====
[09:35:45] [PASSED] RGB
[09:35:45] [PASSED] YUV 4:2:0
[09:35:45] [PASSED] YUV 4:2:2
[09:35:45] [PASSED] YUV 4:4:4
[09:35:45] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[09:35:45] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[09:35:45] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[09:35:45] ============= drm_damage_helper (21 subtests) ==============
[09:35:45] [PASSED] drm_test_damage_iter_no_damage
[09:35:45] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[09:35:45] [PASSED] drm_test_damage_iter_no_damage_src_moved
[09:35:45] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[09:35:45] [PASSED] drm_test_damage_iter_no_damage_not_visible
[09:35:45] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[09:35:45] [PASSED] drm_test_damage_iter_no_damage_no_fb
[09:35:45] [PASSED] drm_test_damage_iter_simple_damage
[09:35:45] [PASSED] drm_test_damage_iter_single_damage
[09:35:45] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[09:35:45] [PASSED] drm_test_damage_iter_single_damage_outside_src
[09:35:45] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[09:35:45] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[09:35:45] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[09:35:45] [PASSED] drm_test_damage_iter_single_damage_src_moved
[09:35:45] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[09:35:45] [PASSED] drm_test_damage_iter_damage
[09:35:45] [PASSED] drm_test_damage_iter_damage_one_intersect
[09:35:45] [PASSED] drm_test_damage_iter_damage_one_outside
[09:35:45] [PASSED] drm_test_damage_iter_damage_src_moved
[09:35:45] [PASSED] drm_test_damage_iter_damage_not_visible
[09:35:45] ================ [PASSED] drm_damage_helper ================
[09:35:45] ============== drm_dp_mst_helper (3 subtests) ==============
[09:35:45] ============== drm_test_dp_mst_calc_pbn_mode ==============
[09:35:45] [PASSED] Clock 154000 BPP 30 DSC disabled
[09:35:45] [PASSED] Clock 234000 BPP 30 DSC disabled
[09:35:45] [PASSED] Clock 297000 BPP 24 DSC disabled
[09:35:45] [PASSED] Clock 332880 BPP 24 DSC enabled
[09:35:45] [PASSED] Clock 324540 BPP 24 DSC enabled
[09:35:45] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[09:35:45] ============== drm_test_dp_mst_calc_pbn_div ===============
[09:35:45] [PASSED] Link rate 2000000 lane count 4
[09:35:45] [PASSED] Link rate 2000000 lane count 2
[09:35:45] [PASSED] Link rate 2000000 lane count 1
[09:35:45] [PASSED] Link rate 1350000 lane count 4
[09:35:45] [PASSED] Link rate 1350000 lane count 2
[09:35:45] [PASSED] Link rate 1350000 lane count 1
[09:35:45] [PASSED] Link rate 1000000 lane count 4
[09:35:45] [PASSED] Link rate 1000000 lane count 2
[09:35:45] [PASSED] Link rate 1000000 lane count 1
[09:35:45] [PASSED] Link rate 810000 lane count 4
[09:35:45] [PASSED] Link rate 810000 lane count 2
[09:35:45] [PASSED] Link rate 810000 lane count 1
[09:35:45] [PASSED] Link rate 540000 lane count 4
[09:35:45] [PASSED] Link rate 540000 lane count 2
[09:35:45] [PASSED] Link rate 540000 lane count 1
[09:35:45] [PASSED] Link rate 270000 lane count 4
[09:35:45] [PASSED] Link rate 270000 lane count 2
[09:35:45] [PASSED] Link rate 270000 lane count 1
[09:35:45] [PASSED] Link rate 162000 lane count 4
[09:35:45] [PASSED] Link rate 162000 lane count 2
[09:35:45] [PASSED] Link rate 162000 lane count 1
[09:35:45] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[09:35:45] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[09:35:45] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[09:35:45] [PASSED] DP_POWER_UP_PHY with port number
[09:35:45] [PASSED] DP_POWER_DOWN_PHY with port number
[09:35:45] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[09:35:45] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[09:35:45] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[09:35:45] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[09:35:45] [PASSED] DP_QUERY_PAYLOAD with port number
[09:35:45] [PASSED] DP_QUERY_PAYLOAD with VCPI
[09:35:45] [PASSED] DP_REMOTE_DPCD_READ with port number
[09:35:45] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[09:35:45] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[09:35:45] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[09:35:45] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[09:35:45] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[09:35:45] [PASSED] DP_REMOTE_I2C_READ with port number
[09:35:45] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[09:35:45] [PASSED] DP_REMOTE_I2C_READ with transactions array
[09:35:45] [PASSED] DP_REMOTE_I2C_WRITE with port number
[09:35:45] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[09:35:45] [PASSED] DP_REMOTE_I2C_WRITE with data array
[09:35:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[09:35:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[09:35:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[09:35:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[09:35:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[09:35:45] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[09:35:45] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[09:35:45] ================ [PASSED] drm_dp_mst_helper ================
[09:35:45] ================== drm_exec (7 subtests) ===================
[09:35:45] [PASSED] sanitycheck
[09:35:45] [PASSED] test_lock
[09:35:45] [PASSED] test_lock_unlock
[09:35:45] [PASSED] test_duplicates
[09:35:45] [PASSED] test_prepare
[09:35:45] [PASSED] test_prepare_array
[09:35:45] [PASSED] test_multiple_loops
[09:35:45] ==================== [PASSED] drm_exec =====================
[09:35:45] =========== drm_format_helper_test (17 subtests) ===========
[09:35:45] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[09:35:45] [PASSED] single_pixel_source_buffer
[09:35:45] [PASSED] single_pixel_clip_rectangle
[09:35:45] [PASSED] well_known_colors
[09:35:45] [PASSED] destination_pitch
[09:35:45] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[09:35:45] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[09:35:45] [PASSED] single_pixel_source_buffer
[09:35:45] [PASSED] single_pixel_clip_rectangle
[09:35:45] [PASSED] well_known_colors
[09:35:45] [PASSED] destination_pitch
[09:35:45] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[09:35:45] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[09:35:45] [PASSED] single_pixel_source_buffer
[09:35:45] [PASSED] single_pixel_clip_rectangle
[09:35:45] [PASSED] well_known_colors
[09:35:45] [PASSED] destination_pitch
[09:35:45] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[09:35:45] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[09:35:45] [PASSED] single_pixel_source_buffer
[09:35:45] [PASSED] single_pixel_clip_rectangle
[09:35:45] [PASSED] well_known_colors
[09:35:45] [PASSED] destination_pitch
[09:35:45] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[09:35:45] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[09:35:45] [PASSED] single_pixel_source_buffer
[09:35:45] [PASSED] single_pixel_clip_rectangle
[09:35:45] [PASSED] well_known_colors
[09:35:45] [PASSED] destination_pitch
[09:35:45] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[09:35:45] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[09:35:45] [PASSED] single_pixel_source_buffer
[09:35:45] [PASSED] single_pixel_clip_rectangle
[09:35:45] [PASSED] well_known_colors
[09:35:45] [PASSED] destination_pitch
[09:35:45] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[09:35:45] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[09:35:45] [PASSED] single_pixel_source_buffer
[09:35:45] [PASSED] single_pixel_clip_rectangle
[09:35:45] [PASSED] well_known_colors
[09:35:45] [PASSED] destination_pitch
[09:35:45] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[09:35:45] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[09:35:45] [PASSED] single_pixel_source_buffer
[09:35:45] [PASSED] single_pixel_clip_rectangle
[09:35:45] [PASSED] well_known_colors
[09:35:45] [PASSED] destination_pitch
[09:35:45] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[09:35:45] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[09:35:45] [PASSED] single_pixel_source_buffer
[09:35:45] [PASSED] single_pixel_clip_rectangle
[09:35:45] [PASSED] well_known_colors
[09:35:45] [PASSED] destination_pitch
[09:35:45] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[09:35:45] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[09:35:45] [PASSED] single_pixel_source_buffer
[09:35:45] [PASSED] single_pixel_clip_rectangle
[09:35:45] [PASSED] well_known_colors
[09:35:45] [PASSED] destination_pitch
[09:35:45] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[09:35:45] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[09:35:45] [PASSED] single_pixel_source_buffer
[09:35:45] [PASSED] single_pixel_clip_rectangle
[09:35:45] [PASSED] well_known_colors
[09:35:45] [PASSED] destination_pitch
[09:35:45] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[09:35:45] ============== drm_test_fb_xrgb8888_to_mono ===============
[09:35:45] [PASSED] single_pixel_source_buffer
[09:35:45] [PASSED] single_pixel_clip_rectangle
[09:35:45] [PASSED] well_known_colors
[09:35:45] [PASSED] destination_pitch
[09:35:45] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[09:35:45] ==================== drm_test_fb_swab =====================
[09:35:45] [PASSED] single_pixel_source_buffer
[09:35:45] [PASSED] single_pixel_clip_rectangle
[09:35:45] [PASSED] well_known_colors
[09:35:45] [PASSED] destination_pitch
[09:35:45] ================ [PASSED] drm_test_fb_swab =================
[09:35:45] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[09:35:45] [PASSED] single_pixel_source_buffer
[09:35:45] [PASSED] single_pixel_clip_rectangle
[09:35:45] [PASSED] well_known_colors
[09:35:45] [PASSED] destination_pitch
[09:35:45] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[09:35:45] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[09:35:45] [PASSED] single_pixel_source_buffer
[09:35:45] [PASSED] single_pixel_clip_rectangle
[09:35:45] [PASSED] well_known_colors
[09:35:45] [PASSED] destination_pitch
[09:35:45] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[09:35:45] ================= drm_test_fb_clip_offset =================
[09:35:45] [PASSED] pass through
[09:35:45] [PASSED] horizontal offset
[09:35:45] [PASSED] vertical offset
[09:35:45] [PASSED] horizontal and vertical offset
[09:35:45] [PASSED] horizontal offset (custom pitch)
[09:35:45] [PASSED] vertical offset (custom pitch)
[09:35:45] [PASSED] horizontal and vertical offset (custom pitch)
[09:35:45] ============= [PASSED] drm_test_fb_clip_offset =============
[09:35:45] =================== drm_test_fb_memcpy ====================
[09:35:45] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[09:35:45] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[09:35:45] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[09:35:45] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[09:35:45] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[09:35:45] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[09:35:45] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[09:35:45] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[09:35:45] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[09:35:45] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[09:35:45] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[09:35:45] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[09:35:45] =============== [PASSED] drm_test_fb_memcpy ================
[09:35:45] ============= [PASSED] drm_format_helper_test ==============
[09:35:45] ================= drm_format (18 subtests) =================
[09:35:45] [PASSED] drm_test_format_block_width_invalid
[09:35:45] [PASSED] drm_test_format_block_width_one_plane
[09:35:45] [PASSED] drm_test_format_block_width_two_plane
[09:35:45] [PASSED] drm_test_format_block_width_three_plane
[09:35:45] [PASSED] drm_test_format_block_width_tiled
[09:35:45] [PASSED] drm_test_format_block_height_invalid
[09:35:45] [PASSED] drm_test_format_block_height_one_plane
[09:35:45] [PASSED] drm_test_format_block_height_two_plane
[09:35:45] [PASSED] drm_test_format_block_height_three_plane
[09:35:45] [PASSED] drm_test_format_block_height_tiled
[09:35:45] [PASSED] drm_test_format_min_pitch_invalid
[09:35:45] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[09:35:45] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[09:35:45] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[09:35:45] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[09:35:45] [PASSED] drm_test_format_min_pitch_two_plane
[09:35:45] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[09:35:45] [PASSED] drm_test_format_min_pitch_tiled
[09:35:45] =================== [PASSED] drm_format ====================
[09:35:45] ============== drm_framebuffer (10 subtests) ===============
[09:35:45] ========== drm_test_framebuffer_check_src_coords ==========
[09:35:45] [PASSED] Success: source fits into fb
[09:35:45] [PASSED] Fail: overflowing fb with x-axis coordinate
[09:35:45] [PASSED] Fail: overflowing fb with y-axis coordinate
[09:35:45] [PASSED] Fail: overflowing fb with source width
[09:35:45] [PASSED] Fail: overflowing fb with source height
[09:35:45] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[09:35:45] [PASSED] drm_test_framebuffer_cleanup
[09:35:45] =============== drm_test_framebuffer_create ===============
[09:35:45] [PASSED] ABGR8888 normal sizes
[09:35:45] [PASSED] ABGR8888 max sizes
[09:35:45] [PASSED] ABGR8888 pitch greater than min required
[09:35:45] [PASSED] ABGR8888 pitch less than min required
[09:35:45] [PASSED] ABGR8888 Invalid width
[09:35:45] [PASSED] ABGR8888 Invalid buffer handle
[09:35:45] [PASSED] No pixel format
[09:35:45] [PASSED] ABGR8888 Width 0
[09:35:45] [PASSED] ABGR8888 Height 0
[09:35:45] [PASSED] ABGR8888 Out of bound height * pitch combination
[09:35:45] [PASSED] ABGR8888 Large buffer offset
[09:35:45] [PASSED] ABGR8888 Buffer offset for inexistent plane
[09:35:45] [PASSED] ABGR8888 Invalid flag
[09:35:45] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[09:35:45] [PASSED] ABGR8888 Valid buffer modifier
[09:35:45] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[09:35:45] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[09:35:45] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[09:35:45] [PASSED] NV12 Normal sizes
[09:35:45] [PASSED] NV12 Max sizes
[09:35:45] [PASSED] NV12 Invalid pitch
[09:35:45] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[09:35:45] [PASSED] NV12 different modifier per-plane
[09:35:45] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[09:35:45] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[09:35:45] [PASSED] NV12 Modifier for inexistent plane
[09:35:45] [PASSED] NV12 Handle for inexistent plane
[09:35:45] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[09:35:45] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[09:35:45] [PASSED] YVU420 Normal sizes
[09:35:45] [PASSED] YVU420 Max sizes
[09:35:45] [PASSED] YVU420 Invalid pitch
[09:35:45] [PASSED] YVU420 Different pitches
[09:35:45] [PASSED] YVU420 Different buffer offsets/pitches
[09:35:45] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[09:35:45] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[09:35:45] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[09:35:45] [PASSED] YVU420 Valid modifier
[09:35:45] [PASSED] YVU420 Different modifiers per plane
[09:35:45] [PASSED] YVU420 Modifier for inexistent plane
[09:35:45] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[09:35:45] [PASSED] X0L2 Normal sizes
[09:35:45] [PASSED] X0L2 Max sizes
[09:35:45] [PASSED] X0L2 Invalid pitch
[09:35:45] [PASSED] X0L2 Pitch greater than minimum required
[09:35:45] [PASSED] X0L2 Handle for inexistent plane
[09:35:45] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[09:35:45] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[09:35:45] [PASSED] X0L2 Valid modifier
[09:35:45] [PASSED] X0L2 Modifier for inexistent plane
[09:35:45] =========== [PASSED] drm_test_framebuffer_create ===========
[09:35:45] [PASSED] drm_test_framebuffer_free
[09:35:45] [PASSED] drm_test_framebuffer_init
[09:35:45] [PASSED] drm_test_framebuffer_init_bad_format
[09:35:45] [PASSED] drm_test_framebuffer_init_dev_mismatch
[09:35:45] [PASSED] drm_test_framebuffer_lookup
[09:35:45] [PASSED] drm_test_framebuffer_lookup_inexistent
[09:35:45] [PASSED] drm_test_framebuffer_modifiers_not_supported
[09:35:45] ================= [PASSED] drm_framebuffer =================
[09:35:45] ================ drm_gem_shmem (8 subtests) ================
[09:35:45] [PASSED] drm_gem_shmem_test_obj_create
[09:35:45] [PASSED] drm_gem_shmem_test_obj_create_private
[09:35:45] [PASSED] drm_gem_shmem_test_pin_pages
[09:35:45] [PASSED] drm_gem_shmem_test_vmap
[09:35:45] [PASSED] drm_gem_shmem_test_get_sg_table
[09:35:45] [PASSED] drm_gem_shmem_test_get_pages_sgt
[09:35:45] [PASSED] drm_gem_shmem_test_madvise
[09:35:45] [PASSED] drm_gem_shmem_test_purge
[09:35:45] ================== [PASSED] drm_gem_shmem ==================
[09:35:45] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[09:35:45] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[09:35:45] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[09:35:45] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[09:35:45] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[09:35:45] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[09:35:45] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[09:35:45] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[09:35:45] [PASSED] Automatic
[09:35:45] [PASSED] Full
[09:35:45] [PASSED] Limited 16:235
[09:35:45] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[09:35:45] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[09:35:45] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[09:35:45] [PASSED] drm_test_check_disable_connector
[09:35:45] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[09:35:45] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[09:35:45] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[09:35:45] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[09:35:45] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[09:35:45] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[09:35:45] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[09:35:45] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[09:35:45] [PASSED] drm_test_check_output_bpc_dvi
[09:35:45] [PASSED] drm_test_check_output_bpc_format_vic_1
[09:35:45] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[09:35:45] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[09:35:45] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[09:35:45] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[09:35:45] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[09:35:45] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[09:35:45] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[09:35:45] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[09:35:45] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[09:35:45] [PASSED] drm_test_check_broadcast_rgb_value
[09:35:45] [PASSED] drm_test_check_bpc_8_value
[09:35:45] [PASSED] drm_test_check_bpc_10_value
[09:35:45] [PASSED] drm_test_check_bpc_12_value
[09:35:45] [PASSED] drm_test_check_format_value
[09:35:45] [PASSED] drm_test_check_tmds_char_value
[09:35:45] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[09:35:45] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[09:35:45] [PASSED] drm_test_check_mode_valid
[09:35:45] [PASSED] drm_test_check_mode_valid_reject
[09:35:45] [PASSED] drm_test_check_mode_valid_reject_rate
[09:35:45] [PASSED] drm_test_check_mode_valid_reject_max_clock
[09:35:45] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[09:35:45] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[09:35:45] [PASSED] drm_test_check_infoframes
[09:35:45] [PASSED] drm_test_check_reject_avi_infoframe
[09:35:45] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[09:35:45] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[09:35:45] [PASSED] drm_test_check_reject_audio_infoframe
[09:35:45] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[09:35:45] ================= drm_managed (2 subtests) =================
[09:35:45] [PASSED] drm_test_managed_release_action
[09:35:45] [PASSED] drm_test_managed_run_action
[09:35:45] =================== [PASSED] drm_managed ===================
[09:35:45] =================== drm_mm (6 subtests) ====================
[09:35:45] [PASSED] drm_test_mm_init
[09:35:45] [PASSED] drm_test_mm_debug
[09:35:45] [PASSED] drm_test_mm_align32
[09:35:45] [PASSED] drm_test_mm_align64
[09:35:45] [PASSED] drm_test_mm_lowest
[09:35:45] [PASSED] drm_test_mm_highest
[09:35:45] ===================== [PASSED] drm_mm ======================
[09:35:45] ============= drm_modes_analog_tv (5 subtests) =============
[09:35:45] [PASSED] drm_test_modes_analog_tv_mono_576i
[09:35:45] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[09:35:45] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[09:35:45] [PASSED] drm_test_modes_analog_tv_pal_576i
[09:35:45] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[09:35:45] =============== [PASSED] drm_modes_analog_tv ===============
[09:35:45] ============== drm_plane_helper (2 subtests) ===============
[09:35:45] =============== drm_test_check_plane_state ================
[09:35:45] [PASSED] clipping_simple
[09:35:45] [PASSED] clipping_rotate_reflect
[09:35:45] [PASSED] positioning_simple
[09:35:45] [PASSED] upscaling
[09:35:45] [PASSED] downscaling
[09:35:45] [PASSED] rounding1
[09:35:45] [PASSED] rounding2
[09:35:45] [PASSED] rounding3
[09:35:45] [PASSED] rounding4
[09:35:45] =========== [PASSED] drm_test_check_plane_state ============
[09:35:45] =========== drm_test_check_invalid_plane_state ============
[09:35:45] [PASSED] positioning_invalid
[09:35:45] [PASSED] upscaling_invalid
[09:35:45] [PASSED] downscaling_invalid
[09:35:45] ======= [PASSED] drm_test_check_invalid_plane_state ========
[09:35:45] ================ [PASSED] drm_plane_helper =================
[09:35:45] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[09:35:45] ====== drm_test_connector_helper_tv_get_modes_check =======
[09:35:45] [PASSED] None
[09:35:45] [PASSED] PAL
[09:35:45] [PASSED] NTSC
[09:35:45] [PASSED] Both, NTSC Default
[09:35:45] [PASSED] Both, PAL Default
[09:35:45] [PASSED] Both, NTSC Default, with PAL on command-line
[09:35:45] [PASSED] Both, PAL Default, with NTSC on command-line
[09:35:45] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[09:35:45] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[09:35:45] ================== drm_rect (9 subtests) ===================
[09:35:45] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[09:35:45] [PASSED] drm_test_rect_clip_scaled_not_clipped
[09:35:45] [PASSED] drm_test_rect_clip_scaled_clipped
[09:35:45] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[09:35:45] ================= drm_test_rect_intersect =================
[09:35:45] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[09:35:45] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[09:35:45] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[09:35:45] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[09:35:45] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[09:35:45] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[09:35:45] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[09:35:45] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[09:35:45] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[09:35:45] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[09:35:45] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[09:35:45] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[09:35:45] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[09:35:45] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[09:35:45] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[09:35:45] ============= [PASSED] drm_test_rect_intersect =============
[09:35:45] ================ drm_test_rect_calc_hscale ================
[09:35:45] [PASSED] normal use
[09:35:45] [PASSED] out of max range
[09:35:45] [PASSED] out of min range
[09:35:45] [PASSED] zero dst
[09:35:45] [PASSED] negative src
[09:35:45] [PASSED] negative dst
[09:35:45] ============ [PASSED] drm_test_rect_calc_hscale ============
[09:35:45] ================ drm_test_rect_calc_vscale ================
[09:35:45] [PASSED] normal use
[09:35:45] [PASSED] out of max range
[09:35:45] [PASSED] out of min range
[09:35:45] [PASSED] zero dst
[09:35:45] [PASSED] negative src
[09:35:45] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[09:35:45] ============ [PASSED] drm_test_rect_calc_vscale ============
[09:35:45] ================== drm_test_rect_rotate ===================
[09:35:45] [PASSED] reflect-x
[09:35:45] [PASSED] reflect-y
[09:35:45] [PASSED] rotate-0
[09:35:45] [PASSED] rotate-90
[09:35:45] [PASSED] rotate-180
[09:35:45] [PASSED] rotate-270
[09:35:45] ============== [PASSED] drm_test_rect_rotate ===============
[09:35:45] ================ drm_test_rect_rotate_inv =================
[09:35:45] [PASSED] reflect-x
[09:35:45] [PASSED] reflect-y
[09:35:45] [PASSED] rotate-0
[09:35:45] [PASSED] rotate-90
[09:35:45] [PASSED] rotate-180
[09:35:45] [PASSED] rotate-270
[09:35:45] ============ [PASSED] drm_test_rect_rotate_inv =============
[09:35:45] ==================== [PASSED] drm_rect =====================
[09:35:45] ============ drm_sysfb_modeset_test (1 subtest) ============
[09:35:45] ============ drm_test_sysfb_build_fourcc_list =============
[09:35:45] [PASSED] no native formats
[09:35:45] [PASSED] XRGB8888 as native format
[09:35:45] [PASSED] remove duplicates
[09:35:45] [PASSED] convert alpha formats
[09:35:45] [PASSED] random formats
[09:35:45] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[09:35:45] ============= [PASSED] drm_sysfb_modeset_test ==============
[09:35:45] ================== drm_fixp (2 subtests) ===================
[09:35:45] [PASSED] drm_test_int2fixp
[09:35:45] [PASSED] drm_test_sm2fixp
[09:35:45] ==================== [PASSED] drm_fixp =====================
[09:35:45] ============================================================
[09:35:45] Testing complete. Ran 621 tests: passed: 621
[09:35:45] Elapsed time: 27.396s total, 1.686s configuring, 25.541s building, 0.136s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[09:35:46] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[09:35:47] 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
[09:35:57] Starting KUnit Kernel (1/1)...
[09:35:57] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[09:35:57] ================= ttm_device (5 subtests) ==================
[09:35:57] [PASSED] ttm_device_init_basic
[09:35:57] [PASSED] ttm_device_init_multiple
[09:35:57] [PASSED] ttm_device_fini_basic
[09:35:57] [PASSED] ttm_device_init_no_vma_man
[09:35:57] ================== ttm_device_init_pools ==================
[09:35:57] [PASSED] No DMA allocations, no DMA32 required
[09:35:57] [PASSED] DMA allocations, DMA32 required
[09:35:57] [PASSED] No DMA allocations, DMA32 required
[09:35:57] [PASSED] DMA allocations, no DMA32 required
[09:35:57] ============== [PASSED] ttm_device_init_pools ==============
[09:35:57] =================== [PASSED] ttm_device ====================
[09:35:57] ================== ttm_pool (8 subtests) ===================
[09:35:57] ================== ttm_pool_alloc_basic ===================
[09:35:57] [PASSED] One page
[09:35:57] [PASSED] More than one page
[09:35:57] [PASSED] Above the allocation limit
[09:35:57] [PASSED] One page, with coherent DMA mappings enabled
[09:35:57] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[09:35:57] ============== [PASSED] ttm_pool_alloc_basic ===============
[09:35:57] ============== ttm_pool_alloc_basic_dma_addr ==============
[09:35:57] [PASSED] One page
[09:35:57] [PASSED] More than one page
[09:35:57] [PASSED] Above the allocation limit
[09:35:57] [PASSED] One page, with coherent DMA mappings enabled
[09:35:57] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[09:35:57] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[09:35:57] [PASSED] ttm_pool_alloc_order_caching_match
[09:35:57] [PASSED] ttm_pool_alloc_caching_mismatch
[09:35:57] [PASSED] ttm_pool_alloc_order_mismatch
[09:35:57] [PASSED] ttm_pool_free_dma_alloc
[09:35:57] [PASSED] ttm_pool_free_no_dma_alloc
[09:35:57] [PASSED] ttm_pool_fini_basic
[09:35:57] ==================== [PASSED] ttm_pool =====================
[09:35:57] ================ ttm_resource (8 subtests) =================
[09:35:57] ================= ttm_resource_init_basic =================
[09:35:57] [PASSED] Init resource in TTM_PL_SYSTEM
[09:35:57] [PASSED] Init resource in TTM_PL_VRAM
[09:35:57] [PASSED] Init resource in a private placement
[09:35:57] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[09:35:57] ============= [PASSED] ttm_resource_init_basic =============
[09:35:57] [PASSED] ttm_resource_init_pinned
[09:35:57] [PASSED] ttm_resource_fini_basic
[09:35:57] [PASSED] ttm_resource_manager_init_basic
[09:35:57] [PASSED] ttm_resource_manager_usage_basic
[09:35:57] [PASSED] ttm_resource_manager_set_used_basic
[09:35:57] [PASSED] ttm_sys_man_alloc_basic
[09:35:57] [PASSED] ttm_sys_man_free_basic
[09:35:57] ================== [PASSED] ttm_resource ===================
[09:35:57] =================== ttm_tt (15 subtests) ===================
[09:35:57] ==================== ttm_tt_init_basic ====================
[09:35:57] [PASSED] Page-aligned size
[09:35:57] [PASSED] Extra pages requested
[09:35:57] ================ [PASSED] ttm_tt_init_basic ================
[09:35:57] [PASSED] ttm_tt_init_misaligned
[09:35:57] [PASSED] ttm_tt_fini_basic
[09:35:57] [PASSED] ttm_tt_fini_sg
[09:35:57] [PASSED] ttm_tt_fini_shmem
[09:35:57] [PASSED] ttm_tt_create_basic
[09:35:57] [PASSED] ttm_tt_create_invalid_bo_type
[09:35:57] [PASSED] ttm_tt_create_ttm_exists
[09:35:57] [PASSED] ttm_tt_create_failed
[09:35:57] [PASSED] ttm_tt_destroy_basic
[09:35:57] [PASSED] ttm_tt_populate_null_ttm
[09:35:57] [PASSED] ttm_tt_populate_populated_ttm
[09:35:57] [PASSED] ttm_tt_unpopulate_basic
[09:35:57] [PASSED] ttm_tt_unpopulate_empty_ttm
[09:35:57] [PASSED] ttm_tt_swapin_basic
[09:35:57] ===================== [PASSED] ttm_tt ======================
[09:35:57] =================== ttm_bo (14 subtests) ===================
[09:35:57] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[09:35:57] [PASSED] Cannot be interrupted and sleeps
[09:35:57] [PASSED] Cannot be interrupted, locks straight away
[09:35:57] [PASSED] Can be interrupted, sleeps
[09:35:57] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[09:35:57] [PASSED] ttm_bo_reserve_locked_no_sleep
[09:35:57] [PASSED] ttm_bo_reserve_no_wait_ticket
[09:35:57] [PASSED] ttm_bo_reserve_double_resv
[09:35:57] [PASSED] ttm_bo_reserve_interrupted
[09:35:57] [PASSED] ttm_bo_reserve_deadlock
[09:35:57] [PASSED] ttm_bo_unreserve_basic
[09:35:57] [PASSED] ttm_bo_unreserve_pinned
[09:35:57] [PASSED] ttm_bo_unreserve_bulk
[09:35:57] [PASSED] ttm_bo_fini_basic
[09:35:57] [PASSED] ttm_bo_fini_shared_resv
[09:35:57] [PASSED] ttm_bo_pin_basic
[09:35:57] [PASSED] ttm_bo_pin_unpin_resource
[09:35:57] [PASSED] ttm_bo_multiple_pin_one_unpin
[09:35:57] ===================== [PASSED] ttm_bo ======================
[09:35:57] ============== ttm_bo_validate (21 subtests) ===============
[09:35:57] ============== ttm_bo_init_reserved_sys_man ===============
[09:35:57] [PASSED] Buffer object for userspace
[09:35:57] [PASSED] Kernel buffer object
[09:35:57] [PASSED] Shared buffer object
[09:35:57] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[09:35:57] ============== ttm_bo_init_reserved_mock_man ==============
[09:35:57] [PASSED] Buffer object for userspace
[09:35:57] [PASSED] Kernel buffer object
[09:35:57] [PASSED] Shared buffer object
[09:35:57] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[09:35:57] [PASSED] ttm_bo_init_reserved_resv
[09:35:57] ================== ttm_bo_validate_basic ==================
[09:35:57] [PASSED] Buffer object for userspace
[09:35:57] [PASSED] Kernel buffer object
[09:35:57] [PASSED] Shared buffer object
[09:35:57] ============== [PASSED] ttm_bo_validate_basic ==============
[09:35:57] [PASSED] ttm_bo_validate_invalid_placement
[09:35:57] ============= ttm_bo_validate_same_placement ==============
[09:35:57] [PASSED] System manager
[09:35:57] [PASSED] VRAM manager
[09:35:57] ========= [PASSED] ttm_bo_validate_same_placement ==========
[09:35:57] [PASSED] ttm_bo_validate_failed_alloc
[09:35:57] [PASSED] ttm_bo_validate_pinned
[09:35:57] [PASSED] ttm_bo_validate_busy_placement
[09:35:57] ================ ttm_bo_validate_multihop =================
[09:35:57] [PASSED] Buffer object for userspace
[09:35:57] [PASSED] Kernel buffer object
[09:35:57] [PASSED] Shared buffer object
[09:35:57] ============ [PASSED] ttm_bo_validate_multihop =============
[09:35:57] ========== ttm_bo_validate_no_placement_signaled ==========
[09:35:57] [PASSED] Buffer object in system domain, no page vector
[09:35:57] [PASSED] Buffer object in system domain with an existing page vector
[09:35:57] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[09:35:57] ======== ttm_bo_validate_no_placement_not_signaled ========
[09:35:57] [PASSED] Buffer object for userspace
[09:35:57] [PASSED] Kernel buffer object
[09:35:57] [PASSED] Shared buffer object
[09:35:57] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[09:35:57] [PASSED] ttm_bo_validate_move_fence_signaled
[09:35:57] ========= ttm_bo_validate_move_fence_not_signaled =========
[09:35:57] [PASSED] Waits for GPU
[09:35:57] [PASSED] Tries to lock straight away
[09:35:57] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[09:35:57] [PASSED] ttm_bo_validate_happy_evict
[09:35:57] [PASSED] ttm_bo_validate_all_pinned_evict
[09:35:57] [PASSED] ttm_bo_validate_allowed_only_evict
[09:35:57] [PASSED] ttm_bo_validate_deleted_evict
[09:35:57] [PASSED] ttm_bo_validate_busy_domain_evict
[09:35:57] [PASSED] ttm_bo_validate_evict_gutting
[09:35:57] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[09:35:57] ================= [PASSED] ttm_bo_validate =================
[09:35:57] ============================================================
[09:35:57] Testing complete. Ran 101 tests: passed: 101
[09:35:57] Elapsed time: 11.498s total, 1.686s configuring, 9.596s building, 0.181s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Xe.CI.BAT: success for drm/buddy: Documentation and internal helper cleanup (rev4)
2026-02-12 9:25 [PATCH v3 0/2] drm/buddy: Documentation and internal helper cleanup Sanjay Yadav
` (2 preceding siblings ...)
2026-02-12 9:36 ` ✓ CI.KUnit: success for drm/buddy: Documentation and internal helper cleanup (rev4) Patchwork
@ 2026-02-12 10:10 ` Patchwork
2026-02-13 12:02 ` ✗ Xe.CI.FULL: failure " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-02-12 10:10 UTC (permalink / raw)
To: Sanjay Yadav; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1568 bytes --]
== Series Details ==
Series: drm/buddy: Documentation and internal helper cleanup (rev4)
URL : https://patchwork.freedesktop.org/series/161140/
State : success
== Summary ==
CI Bug Log - changes from xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68_BAT -> xe-pw-161140v4_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-161140v4_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@xe_waitfence@abstime:
- bat-dg2-oem2: [TIMEOUT][1] ([Intel XE#6506]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
Build changes
-------------
* IGT: IGT_8751 -> IGT_8752
* Linux: xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68 -> xe-pw-161140v4
IGT_8751: af788251f1ef729d17c802aec2c4547b52059e58 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8752: 8752
xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68: b4bfe7d753afaf6ea4950111a309a4e2ef5aef68
xe-pw-161140v4: 161140v4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/index.html
[-- Attachment #2: Type: text/html, Size: 2147 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Xe.CI.FULL: failure for drm/buddy: Documentation and internal helper cleanup (rev4)
2026-02-12 9:25 [PATCH v3 0/2] drm/buddy: Documentation and internal helper cleanup Sanjay Yadav
` (3 preceding siblings ...)
2026-02-12 10:10 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-02-13 12:02 ` Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-02-13 12:02 UTC (permalink / raw)
To: Sanjay Yadav; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 48858 bytes --]
== Series Details ==
Series: drm/buddy: Documentation and internal helper cleanup (rev4)
URL : https://patchwork.freedesktop.org/series/161140/
State : failure
== Summary ==
CI Bug Log - changes from xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68_FULL -> xe-pw-161140v4_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-161140v4_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-161140v4_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-161140v4_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@fbdev@read:
- shard-bmg: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-5/igt@fbdev@read.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-2/igt@fbdev@read.html
Known issues
------------
Here are the changes found in xe-pw-161140v4_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [PASS][3] -> [FAIL][4] ([Intel XE#4665])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-8/igt@intel_hwmon@hwmon-write.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-7/igt@intel_hwmon@hwmon-write.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1407])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-8/igt@kms_big_fb@linear-8bpp-rotate-270.html
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2327]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-7/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#7059])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +8 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#2191])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-3/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#367])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-4/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#367])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-3/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#2669]) +3 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#3432])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#3432]) +1 other test skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#2887]) +3 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-5/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2887]) +10 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-2/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2325]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-5/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2252]) +5 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#373])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-7/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#6507])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-3/igt@kms_chamelium_sharpness_filter@filter-basic.html
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#6507])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-6/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-c-dp-1:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#6969]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-5/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-c-dp-1.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-dp-1:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#6969] / [Intel XE#7006])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-5/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-dp-1.html
* igt@kms_concurrent@multi-plane-atomic-lowres:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#6703]) +7 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-2/igt@kms_concurrent@multi-plane-atomic-lowres.html
* igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][28] ([Intel XE#3304])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-3/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#6974])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-4/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#307] / [Intel XE#6974])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-6/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][31] ([Intel XE#1178] / [Intel XE#3304]) +1 other test fail
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-8/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2320])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2321])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2321]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-8/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: NOTRUN -> [DMESG-WARN][35] ([Intel XE#5354])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#1508])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-4/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2244])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-2/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_feature_discovery@psr2:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2374])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-2/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1421])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-6/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#7178]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1397]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#7178])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#7179])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-10/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#7179])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-8/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#4141]) +8 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2311]) +23 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#7061]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#7061]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-render:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#651]) +4 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2352])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#656]) +10 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2313]) +20 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#6900])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-8/igt@kms_joiner@basic-ultra-joiner.html
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#6911])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-4/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#4090])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-2/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2486])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-8/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-a-plane-5:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#7130]) +18 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-10/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#7111] / [Intel XE#7130]) +5 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-10/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#7111] / [Intel XE#7130] / [Intel XE#7131])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-7/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][61] ([Intel XE#7131])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-7/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][62] ([Intel XE#7111] / [Intel XE#7131])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-7/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-a-plane-5:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#7130]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-1/igt@kms_plane@pixel-format-yf-tiled-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-yf-tiled-modifier@pipe-b-plane-5:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#7130] / [Intel XE#7250]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-1/igt@kms_plane@pixel-format-yf-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#5020])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-6/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#6886]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#870]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-4/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][68] -> [FAIL][69] ([Intel XE#718])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-lnl-2/igt@kms_pm_dc@dc6-dpms.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2505])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-8/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) +1 other test skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1406] / [Intel XE#4608]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-8/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#2387])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-5/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@pr-cursor-plane-move:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1406]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-2/igt@kms_psr@pr-cursor-plane-move.html
* igt@kms_psr@psr2-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +8 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-2/igt@kms_psr@psr2-primary-page-flip.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2330])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#3414] / [Intel XE#3904])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2413])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#2426])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tv_load_detect@load-detect:
- shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#330])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-1/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flipline:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#1499])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-10/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#2168])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-9/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [PASS][85] -> [FAIL][86] ([Intel XE#2142]) +1 other test fail
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1091] / [Intel XE#2849])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_eudebug@basic-vm-access-userptr-faultable:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#4837]) +3 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-2/igt@xe_eudebug@basic-vm-access-userptr-faultable.html
* igt@xe_eudebug@discovery-empty:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#4837]) +8 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-7/igt@xe_eudebug@discovery-empty.html
* igt@xe_eudebug_online@tdctl-parameters:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-8/igt@xe_eudebug_online@tdctl-parameters.html
* igt@xe_evict@evict-beng-cm-threads-small:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#688]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-4/igt@xe_evict@evict-beng-cm-threads-small.html
* igt@xe_evict@evict-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#7140])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-3/igt@xe_evict@evict-small-multi-queue.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1392]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2322]) +3 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-9/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#7136]) +2 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-5/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-multi-queue-invalid-userptr-fault:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#7136]) +7 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-3/igt@xe_exec_fault_mode@many-multi-queue-invalid-userptr-fault.html
* igt@xe_exec_multi_queue@many-execs-priority:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#6874]) +8 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-6/igt@xe_exec_multi_queue@many-execs-priority.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#6874]) +19 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-1/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority.html
* igt@xe_exec_system_allocator@many-large-execqueues-mmap-new:
- shard-bmg: [PASS][99] -> [SKIP][100] ([Intel XE#6703]) +9 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-10/igt@xe_exec_system_allocator@many-large-execqueues-mmap-new.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-2/igt@xe_exec_system_allocator@many-large-execqueues-mmap-new.html
* igt@xe_exec_system_allocator@process-many-stride-new-race:
- shard-bmg: [PASS][101] -> [DMESG-FAIL][102] ([Intel XE#5213] / [Intel XE#5545] / [Intel XE#6652])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-9/igt@xe_exec_system_allocator@process-many-stride-new-race.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-2/igt@xe_exec_system_allocator@process-many-stride-new-race.html
* igt@xe_exec_threads@threads-hang-userptr-invalidate-race:
- shard-bmg: [PASS][103] -> [ABORT][104] ([Intel XE#7169])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-1/igt@xe_exec_threads@threads-hang-userptr-invalidate-race.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-3/igt@xe_exec_threads@threads-hang-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-many-queues:
- shard-bmg: NOTRUN -> [FAIL][105] ([Intel XE#7166])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-2/igt@xe_exec_threads@threads-many-queues.html
* igt@xe_exec_threads@threads-multi-queue-mixed-basic:
- shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#7138]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-5/igt@xe_exec_threads@threads-multi-queue-mixed-basic.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#7138]) +3 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate.html
* igt@xe_multigpu_svm@mgpu-latency-prefetch:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#6964]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-1/igt@xe_multigpu_svm@mgpu-latency-prefetch.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2248])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-4/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#5694])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-4/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#2284] / [Intel XE#366])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-7/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pm@s4-mocs:
- shard-lnl: [PASS][112] -> [ABORT][113] ([Intel XE#7169])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-lnl-5/igt@xe_pm@s4-mocs.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-5/igt@xe_pm@s4-mocs.html
* igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#4733]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-5/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#944])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-2/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#944])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-1/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_sriov_admin@bulk-sched-priority-vfs-disabled:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#7174]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-8/igt@xe_sriov_admin@bulk-sched-priority-vfs-disabled.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: NOTRUN -> [FAIL][118] ([Intel XE#6569])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-4/igt@xe_sriov_flr@flr-twice.html
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#4273])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-2/igt@xe_sriov_flr@flr-twice.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [FAIL][120] ([Intel XE#6054]) -> [PASS][121] +3 other tests pass
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-6/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: [SKIP][122] ([Intel XE#367]) -> [PASS][123] +1 other test pass
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-9/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][124] ([Intel XE#5354]) -> [PASS][125]
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-4/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][126] ([Intel XE#4633]) -> [PASS][127]
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: [FAIL][128] ([Intel XE#5299]) -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_flip@flip-vs-expired-vblank@c-edp1:
- shard-lnl: [FAIL][130] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][131] +1 other test pass
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-lnl-6/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html
* igt@kms_vblank@ts-continuation-dpms-rpm:
- shard-lnl: [SKIP][132] -> [PASS][133] +2 other tests pass
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-lnl-8/igt@kms_vblank@ts-continuation-dpms-rpm.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-7/igt@kms_vblank@ts-continuation-dpms-rpm.html
* igt@xe_pm@s2idle-mocs:
- shard-lnl: [ABORT][134] ([Intel XE#7169]) -> [PASS][135]
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-lnl-8/igt@xe_pm@s2idle-mocs.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-4/igt@xe_pm@s2idle-mocs.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-bmg: [FAIL][136] ([Intel XE#5937]) -> [PASS][137] +1 other test pass
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-4/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-4/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
#### Warnings ####
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-bmg: [SKIP][138] ([Intel XE#2320]) -> [SKIP][139] ([Intel XE#6703])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-32x10.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-5:
- shard-lnl: [SKIP][140] ([Intel XE#7131]) -> [SKIP][141] ([Intel XE#7131] / [Intel XE#7250]) +13 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-lnl-8/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-5.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-1/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping:
- shard-lnl: [SKIP][142] ([Intel XE#7130] / [Intel XE#7131]) -> [SKIP][143] ([Intel XE#7130] / [Intel XE#7131] / [Intel XE#7250]) +13 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-lnl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier@pipe-b-plane-5:
- shard-lnl: [SKIP][144] ([Intel XE#7130]) -> [SKIP][145] ([Intel XE#7130] / [Intel XE#7250]) +25 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-lnl-2/igt@kms_plane@pixel-format-y-tiled-ccs-modifier@pipe-b-plane-5.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-lnl-7/igt@kms_plane@pixel-format-y-tiled-ccs-modifier@pipe-b-plane-5.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-bmg: [SKIP][146] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) -> [SKIP][147] ([Intel XE#1406] / [Intel XE#6703])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-1/igt@kms_psr@fbc-psr2-primary-render.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-2/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_vrr@max-min:
- shard-bmg: [SKIP][148] ([Intel XE#1499]) -> [SKIP][149] ([Intel XE#6703])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-9/igt@kms_vrr@max-min.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-2/igt@kms_vrr@max-min.html
* igt@xe_evict@evict-small-multi-queue-priority:
- shard-bmg: [SKIP][150] ([Intel XE#7140]) -> [SKIP][151] ([Intel XE#6703])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-7/igt@xe_evict@evict-small-multi-queue-priority.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-2/igt@xe_evict@evict-small-multi-queue-priority.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-rebind-prefetch:
- shard-bmg: [SKIP][152] ([Intel XE#7136]) -> [SKIP][153] ([Intel XE#6703])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-rebind-prefetch.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-2/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-rebind-prefetch.html
* igt@xe_exec_multi_queue@two-queues-userptr-invalidate:
- shard-bmg: [SKIP][154] ([Intel XE#6874]) -> [SKIP][155] ([Intel XE#6703])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-9/igt@xe_exec_multi_queue@two-queues-userptr-invalidate.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-userptr-invalidate.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-bmg: [ABORT][156] ([Intel XE#5466]) -> [ABORT][157] ([Intel XE#5466] / [Intel XE#6652])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68/shard-bmg-7/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/shard-bmg-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#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#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[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#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[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#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[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#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[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#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
[Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5466
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[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#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[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#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#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#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#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#7250]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7250
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8751 -> IGT_8752
* Linux: xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68 -> xe-pw-161140v4
IGT_8751: af788251f1ef729d17c802aec2c4547b52059e58 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8752: 8752
xe-4545-b4bfe7d753afaf6ea4950111a309a4e2ef5aef68: b4bfe7d753afaf6ea4950111a309a4e2ef5aef68
xe-pw-161140v4: 161140v4
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v4/index.html
[-- Attachment #2: Type: text/html, Size: 56910 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-02-13 12:02 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-12 9:25 [PATCH v3 0/2] drm/buddy: Documentation and internal helper cleanup Sanjay Yadav
2026-02-12 9:25 ` [PATCH v3 1/2] drm/buddy: Add kernel-doc for allocator structures and flags Sanjay Yadav
2026-02-12 9:25 ` [PATCH v3 2/2] drm/buddy: Move internal helpers to buddy.c Sanjay Yadav
2026-02-12 9:36 ` ✓ CI.KUnit: success for drm/buddy: Documentation and internal helper cleanup (rev4) Patchwork
2026-02-12 10:10 ` ✓ Xe.CI.BAT: " Patchwork
2026-02-13 12:02 ` ✗ 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