* [PATCH v2 1/2] drm/buddy: Add kernel-doc for allocator structures and flags
2026-02-11 5:31 [PATCH v2 0/2] drm/buddy: Documentation and internal helper cleanup Sanjay Yadav
@ 2026-02-11 5:31 ` Sanjay Yadav
2026-02-12 7:38 ` Arunpravin Paneer Selvam
2026-02-11 5:31 ` [PATCH v2 2/2] drm/buddy: Move internal helpers to buddy.c Sanjay Yadav
` (4 subsequent siblings)
5 siblings, 1 reply; 10+ messages in thread
From: Sanjay Yadav @ 2026-02-11 5:31 UTC (permalink / raw)
To: dri-devel
Cc: intel-xe, Christian König, Arunpravin Paneer Selvam,
Matthew Auld
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
Cc: Christian König <christian.koenig@amd.com>
Cc: Arunpravin Paneer Selvam <Arunpravin.PaneerSelvam@amd.com>
Suggested-by: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
---
include/linux/gpu_buddy.h | 122 +++++++++++++++++++++++++++++++-------
1 file changed, 102 insertions(+), 20 deletions(-)
diff --git a/include/linux/gpu_buddy.h b/include/linux/gpu_buddy.h
index 07ac65db6d2e..b06241c78437 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,27 @@ 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 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 +110,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 +120,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] 10+ messages in thread* Re: [PATCH v2 1/2] drm/buddy: Add kernel-doc for allocator structures and flags
2026-02-11 5:31 ` [PATCH v2 1/2] drm/buddy: Add kernel-doc for allocator structures and flags Sanjay Yadav
@ 2026-02-12 7:38 ` Arunpravin Paneer Selvam
2026-02-12 7:40 ` Arunpravin Paneer Selvam
0 siblings, 1 reply; 10+ messages in thread
From: Arunpravin Paneer Selvam @ 2026-02-12 7:38 UTC (permalink / raw)
To: Sanjay Yadav, dri-devel; +Cc: intel-xe, Christian König, Matthew Auld
[-- Attachment #1: Type: text/plain, Size: 7907 bytes --]
On 2/11/2026 11:01 AM, Sanjay Yadav wrote:
> 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
>
> Cc: Christian König<christian.koenig@amd.com>
> Cc: Arunpravin Paneer Selvam<Arunpravin.PaneerSelvam@amd.com>
> Suggested-by: Matthew Auld<matthew.auld@intel.com>
> Signed-off-by: Sanjay Yadav<sanjay.kumar.yadav@intel.com>
> ---
> include/linux/gpu_buddy.h | 122 +++++++++++++++++++++++++++++++-------
> 1 file changed, 102 insertions(+), 20 deletions(-)
>
> diff --git a/include/linux/gpu_buddy.h b/include/linux/gpu_buddy.h
> index 07ac65db6d2e..b06241c78437 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,27 @@ 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)
I think we should add
- Bits 8:9: reserved
Apart from that, looks good to me.
Reviewed-by: Arunpravin Paneer Selvam <Arunpravin.PaneerSelvam@amd.com>
> + * - 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 +110,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 +120,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;
[-- Attachment #2: Type: text/html, Size: 8482 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread* Re: [PATCH v2 1/2] drm/buddy: Add kernel-doc for allocator structures and flags
2026-02-12 7:38 ` Arunpravin Paneer Selvam
@ 2026-02-12 7:40 ` Arunpravin Paneer Selvam
2026-02-12 9:23 ` Yadav, Sanjay Kumar
0 siblings, 1 reply; 10+ messages in thread
From: Arunpravin Paneer Selvam @ 2026-02-12 7:40 UTC (permalink / raw)
To: Sanjay Yadav, dri-devel; +Cc: intel-xe, Christian König, Matthew Auld
On 2/12/2026 1:08 PM, Arunpravin Paneer Selvam wrote:
>
>
> On 2/11/2026 11:01 AM, Sanjay Yadav wrote:
>> 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
>>
>> Cc: Christian König<christian.koenig@amd.com>
>> Cc: Arunpravin Paneer Selvam<Arunpravin.PaneerSelvam@amd.com>
>> Suggested-by: Matthew Auld<matthew.auld@intel.com>
>> Signed-off-by: Sanjay Yadav<sanjay.kumar.yadav@intel.com>
>> ---
>> include/linux/gpu_buddy.h | 122 +++++++++++++++++++++++++++++++-------
>> 1 file changed, 102 insertions(+), 20 deletions(-)
>>
>> diff --git a/include/linux/gpu_buddy.h b/include/linux/gpu_buddy.h
>> index 07ac65db6d2e..b06241c78437 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,27 @@ 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)
> I think we should add
> - Bits 8:9: reserved
it should be -Bits 8:6: reserved
>
> Apart from that, looks good to me.
> Reviewed-by: Arunpravin Paneer Selvam <Arunpravin.PaneerSelvam@amd.com>
>> + * - 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 +110,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 +120,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;
>
^ permalink raw reply [flat|nested] 10+ messages in thread* Re: [PATCH v2 1/2] drm/buddy: Add kernel-doc for allocator structures and flags
2026-02-12 7:40 ` Arunpravin Paneer Selvam
@ 2026-02-12 9:23 ` Yadav, Sanjay Kumar
0 siblings, 0 replies; 10+ messages in thread
From: Yadav, Sanjay Kumar @ 2026-02-12 9:23 UTC (permalink / raw)
To: Arunpravin Paneer Selvam, dri-devel
Cc: intel-xe, Christian König, Matthew Auld
On 12-02-2026 13:10, Arunpravin Paneer Selvam wrote:
>
>
> On 2/12/2026 1:08 PM, Arunpravin Paneer Selvam wrote:
>>
>>
>> On 2/11/2026 11:01 AM, Sanjay Yadav wrote:
>>> 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
>>>
>>> Cc: Christian König<christian.koenig@amd.com>
>>> Cc: Arunpravin Paneer Selvam<Arunpravin.PaneerSelvam@amd.com>
>>> Suggested-by: Matthew Auld<matthew.auld@intel.com>
>>> Signed-off-by: Sanjay Yadav<sanjay.kumar.yadav@intel.com>
>>> ---
>>> include/linux/gpu_buddy.h | 122
>>> +++++++++++++++++++++++++++++++-------
>>> 1 file changed, 102 insertions(+), 20 deletions(-)
>>>
>>> diff --git a/include/linux/gpu_buddy.h b/include/linux/gpu_buddy.h
>>> index 07ac65db6d2e..b06241c78437 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,27 @@ 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)
>> I think we should add
>> - Bits 8:9: reserved
> it should be -Bits 8:6: reserved
>>
>> Apart from that, looks good to me.
>> Reviewed-by: Arunpravin Paneer Selvam <Arunpravin.PaneerSelvam@amd.com>
Thanks Arun for your prompt review, helpful comments, and your time.
>>> + * - 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 +110,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 +120,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;
>>
>
^ permalink raw reply [flat|nested] 10+ messages in thread
* [PATCH v2 2/2] drm/buddy: Move internal helpers to buddy.c
2026-02-11 5:31 [PATCH v2 0/2] drm/buddy: Documentation and internal helper cleanup Sanjay Yadav
2026-02-11 5:31 ` [PATCH v2 1/2] drm/buddy: Add kernel-doc for allocator structures and flags Sanjay Yadav
@ 2026-02-11 5:31 ` Sanjay Yadav
2026-02-11 5:40 ` ✗ CI.checkpatch: warning for drm/buddy: Documentation and internal helper cleanup (rev3) Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 10+ messages in thread
From: Sanjay Yadav @ 2026-02-11 5:31 UTC (permalink / raw)
To: dri-devel
Cc: intel-xe, Christian König, Arunpravin Paneer Selvam,
Matthew Auld
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 b06241c78437..4d68445ac16d 100644
--- a/include/linux/gpu_buddy.h
+++ b/include/linux/gpu_buddy.h
@@ -190,16 +190,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
@@ -208,18 +202,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)
@@ -231,9 +213,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] 10+ messages in thread* ✗ CI.checkpatch: warning for drm/buddy: Documentation and internal helper cleanup (rev3)
2026-02-11 5:31 [PATCH v2 0/2] drm/buddy: Documentation and internal helper cleanup Sanjay Yadav
2026-02-11 5:31 ` [PATCH v2 1/2] drm/buddy: Add kernel-doc for allocator structures and flags Sanjay Yadav
2026-02-11 5:31 ` [PATCH v2 2/2] drm/buddy: Move internal helpers to buddy.c Sanjay Yadav
@ 2026-02-11 5:40 ` Patchwork
2026-02-11 5:41 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-02-11 5:40 UTC (permalink / raw)
To: Sanjay Yadav; +Cc: intel-xe
== Series Details ==
Series: drm/buddy: Documentation and internal helper cleanup (rev3)
URL : https://patchwork.freedesktop.org/series/161140/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
1f57ba1afceae32108bd24770069f764d940a0e4
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 1e87ffefc6a654d2350128856d709af71c1a844d
Author: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
Date: Wed Feb 11 11:01:26 2026 +0530
drm/buddy: Move internal helpers to buddy.c
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>
+ /mt/dim checkpatch 8ef710cfb81579fbf4107d77134e6e8d2c864ef0 drm-intel
acb073b8e6ef drm/buddy: Add kernel-doc for allocator structures and flags
-:19: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#19:
- Corrected GPU_BUDDY_CLEAR_TREE and GPU_BUDDY_DIRTY_TREE index values (Arun)
total: 0 errors, 1 warnings, 0 checks, 170 lines checked
1e87ffefc6a6 drm/buddy: Move internal helpers to buddy.c
^ permalink raw reply [flat|nested] 10+ messages in thread* ✓ CI.KUnit: success for drm/buddy: Documentation and internal helper cleanup (rev3)
2026-02-11 5:31 [PATCH v2 0/2] drm/buddy: Documentation and internal helper cleanup Sanjay Yadav
` (2 preceding siblings ...)
2026-02-11 5:40 ` ✗ CI.checkpatch: warning for drm/buddy: Documentation and internal helper cleanup (rev3) Patchwork
@ 2026-02-11 5:41 ` Patchwork
2026-02-11 6:15 ` ✓ Xe.CI.BAT: " Patchwork
2026-02-11 7:51 ` ✗ Xe.CI.FULL: failure " Patchwork
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-02-11 5:41 UTC (permalink / raw)
To: Sanjay Yadav; +Cc: intel-xe
== Series Details ==
Series: drm/buddy: Documentation and internal helper cleanup (rev3)
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
[05:40:36] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[05:40:40] 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
[05:41:12] Starting KUnit Kernel (1/1)...
[05:41:12] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[05:41:12] ================== guc_buf (11 subtests) ===================
[05:41:12] [PASSED] test_smallest
[05:41:12] [PASSED] test_largest
[05:41:12] [PASSED] test_granular
[05:41:12] [PASSED] test_unique
[05:41:12] [PASSED] test_overlap
[05:41:12] [PASSED] test_reusable
[05:41:12] [PASSED] test_too_big
[05:41:12] [PASSED] test_flush
[05:41:12] [PASSED] test_lookup
[05:41:12] [PASSED] test_data
[05:41:12] [PASSED] test_class
[05:41:12] ===================== [PASSED] guc_buf =====================
[05:41:12] =================== guc_dbm (7 subtests) ===================
[05:41:12] [PASSED] test_empty
[05:41:12] [PASSED] test_default
[05:41:12] ======================== test_size ========================
[05:41:12] [PASSED] 4
[05:41:12] [PASSED] 8
[05:41:12] [PASSED] 32
[05:41:12] [PASSED] 256
[05:41:12] ==================== [PASSED] test_size ====================
[05:41:12] ======================= test_reuse ========================
[05:41:12] [PASSED] 4
[05:41:12] [PASSED] 8
[05:41:12] [PASSED] 32
[05:41:12] [PASSED] 256
[05:41:12] =================== [PASSED] test_reuse ====================
[05:41:12] =================== test_range_overlap ====================
[05:41:12] [PASSED] 4
[05:41:12] [PASSED] 8
[05:41:12] [PASSED] 32
[05:41:12] [PASSED] 256
[05:41:12] =============== [PASSED] test_range_overlap ================
[05:41:12] =================== test_range_compact ====================
[05:41:12] [PASSED] 4
[05:41:12] [PASSED] 8
[05:41:12] [PASSED] 32
[05:41:12] [PASSED] 256
[05:41:12] =============== [PASSED] test_range_compact ================
[05:41:12] ==================== test_range_spare =====================
[05:41:12] [PASSED] 4
[05:41:12] [PASSED] 8
[05:41:12] [PASSED] 32
[05:41:12] [PASSED] 256
[05:41:12] ================ [PASSED] test_range_spare =================
[05:41:12] ===================== [PASSED] guc_dbm =====================
[05:41:12] =================== guc_idm (6 subtests) ===================
[05:41:12] [PASSED] bad_init
[05:41:12] [PASSED] no_init
[05:41:12] [PASSED] init_fini
[05:41:12] [PASSED] check_used
[05:41:12] [PASSED] check_quota
[05:41:12] [PASSED] check_all
[05:41:12] ===================== [PASSED] guc_idm =====================
[05:41:12] ================== no_relay (3 subtests) ===================
[05:41:12] [PASSED] xe_drops_guc2pf_if_not_ready
[05:41:12] [PASSED] xe_drops_guc2vf_if_not_ready
[05:41:12] [PASSED] xe_rejects_send_if_not_ready
[05:41:12] ==================== [PASSED] no_relay =====================
[05:41:12] ================== pf_relay (14 subtests) ==================
[05:41:12] [PASSED] pf_rejects_guc2pf_too_short
[05:41:12] [PASSED] pf_rejects_guc2pf_too_long
[05:41:12] [PASSED] pf_rejects_guc2pf_no_payload
[05:41:12] [PASSED] pf_fails_no_payload
[05:41:12] [PASSED] pf_fails_bad_origin
[05:41:12] [PASSED] pf_fails_bad_type
[05:41:12] [PASSED] pf_txn_reports_error
[05:41:12] [PASSED] pf_txn_sends_pf2guc
[05:41:12] [PASSED] pf_sends_pf2guc
[05:41:12] [SKIPPED] pf_loopback_nop
[05:41:12] [SKIPPED] pf_loopback_echo
[05:41:12] [SKIPPED] pf_loopback_fail
[05:41:12] [SKIPPED] pf_loopback_busy
[05:41:12] [SKIPPED] pf_loopback_retry
[05:41:12] ==================== [PASSED] pf_relay =====================
[05:41:12] ================== vf_relay (3 subtests) ===================
[05:41:12] [PASSED] vf_rejects_guc2vf_too_short
[05:41:12] [PASSED] vf_rejects_guc2vf_too_long
[05:41:12] [PASSED] vf_rejects_guc2vf_no_payload
[05:41:12] ==================== [PASSED] vf_relay =====================
[05:41:12] ================ pf_gt_config (6 subtests) =================
[05:41:12] [PASSED] fair_contexts_1vf
[05:41:12] [PASSED] fair_doorbells_1vf
[05:41:12] [PASSED] fair_ggtt_1vf
[05:41:12] ====================== fair_contexts ======================
[05:41:12] [PASSED] 1 VF
[05:41:12] [PASSED] 2 VFs
[05:41:12] [PASSED] 3 VFs
[05:41:12] [PASSED] 4 VFs
[05:41:12] [PASSED] 5 VFs
[05:41:12] [PASSED] 6 VFs
[05:41:12] [PASSED] 7 VFs
[05:41:12] [PASSED] 8 VFs
[05:41:12] [PASSED] 9 VFs
[05:41:12] [PASSED] 10 VFs
[05:41:12] [PASSED] 11 VFs
[05:41:12] [PASSED] 12 VFs
[05:41:12] [PASSED] 13 VFs
[05:41:12] [PASSED] 14 VFs
[05:41:12] [PASSED] 15 VFs
[05:41:12] [PASSED] 16 VFs
[05:41:12] [PASSED] 17 VFs
[05:41:12] [PASSED] 18 VFs
[05:41:12] [PASSED] 19 VFs
[05:41:12] [PASSED] 20 VFs
[05:41:12] [PASSED] 21 VFs
[05:41:12] [PASSED] 22 VFs
[05:41:12] [PASSED] 23 VFs
[05:41:12] [PASSED] 24 VFs
[05:41:12] [PASSED] 25 VFs
[05:41:12] [PASSED] 26 VFs
[05:41:12] [PASSED] 27 VFs
[05:41:12] [PASSED] 28 VFs
[05:41:12] [PASSED] 29 VFs
[05:41:12] [PASSED] 30 VFs
[05:41:12] [PASSED] 31 VFs
[05:41:12] [PASSED] 32 VFs
[05:41:12] [PASSED] 33 VFs
[05:41:12] [PASSED] 34 VFs
[05:41:12] [PASSED] 35 VFs
[05:41:12] [PASSED] 36 VFs
[05:41:12] [PASSED] 37 VFs
[05:41:12] [PASSED] 38 VFs
[05:41:12] [PASSED] 39 VFs
[05:41:12] [PASSED] 40 VFs
[05:41:12] [PASSED] 41 VFs
[05:41:12] [PASSED] 42 VFs
[05:41:12] [PASSED] 43 VFs
[05:41:12] [PASSED] 44 VFs
[05:41:12] [PASSED] 45 VFs
[05:41:12] [PASSED] 46 VFs
[05:41:12] [PASSED] 47 VFs
[05:41:12] [PASSED] 48 VFs
[05:41:12] [PASSED] 49 VFs
[05:41:12] [PASSED] 50 VFs
[05:41:12] [PASSED] 51 VFs
[05:41:12] [PASSED] 52 VFs
[05:41:12] [PASSED] 53 VFs
[05:41:12] [PASSED] 54 VFs
[05:41:12] [PASSED] 55 VFs
[05:41:12] [PASSED] 56 VFs
[05:41:12] [PASSED] 57 VFs
[05:41:12] [PASSED] 58 VFs
[05:41:12] [PASSED] 59 VFs
[05:41:12] [PASSED] 60 VFs
[05:41:12] [PASSED] 61 VFs
[05:41:12] [PASSED] 62 VFs
[05:41:12] [PASSED] 63 VFs
[05:41:12] ================== [PASSED] fair_contexts ==================
[05:41:12] ===================== fair_doorbells ======================
[05:41:12] [PASSED] 1 VF
[05:41:12] [PASSED] 2 VFs
[05:41:12] [PASSED] 3 VFs
[05:41:12] [PASSED] 4 VFs
[05:41:12] [PASSED] 5 VFs
[05:41:12] [PASSED] 6 VFs
[05:41:12] [PASSED] 7 VFs
[05:41:12] [PASSED] 8 VFs
[05:41:12] [PASSED] 9 VFs
[05:41:12] [PASSED] 10 VFs
[05:41:12] [PASSED] 11 VFs
[05:41:12] [PASSED] 12 VFs
[05:41:12] [PASSED] 13 VFs
[05:41:12] [PASSED] 14 VFs
[05:41:12] [PASSED] 15 VFs
[05:41:12] [PASSED] 16 VFs
[05:41:12] [PASSED] 17 VFs
[05:41:12] [PASSED] 18 VFs
[05:41:12] [PASSED] 19 VFs
[05:41:12] [PASSED] 20 VFs
[05:41:12] [PASSED] 21 VFs
[05:41:12] [PASSED] 22 VFs
[05:41:12] [PASSED] 23 VFs
[05:41:12] [PASSED] 24 VFs
[05:41:12] [PASSED] 25 VFs
[05:41:12] [PASSED] 26 VFs
[05:41:12] [PASSED] 27 VFs
[05:41:12] [PASSED] 28 VFs
[05:41:12] [PASSED] 29 VFs
[05:41:12] [PASSED] 30 VFs
[05:41:12] [PASSED] 31 VFs
[05:41:12] [PASSED] 32 VFs
[05:41:12] [PASSED] 33 VFs
[05:41:12] [PASSED] 34 VFs
[05:41:12] [PASSED] 35 VFs
[05:41:12] [PASSED] 36 VFs
[05:41:12] [PASSED] 37 VFs
[05:41:12] [PASSED] 38 VFs
[05:41:12] [PASSED] 39 VFs
[05:41:12] [PASSED] 40 VFs
[05:41:12] [PASSED] 41 VFs
[05:41:12] [PASSED] 42 VFs
[05:41:12] [PASSED] 43 VFs
[05:41:12] [PASSED] 44 VFs
[05:41:12] [PASSED] 45 VFs
[05:41:12] [PASSED] 46 VFs
[05:41:12] [PASSED] 47 VFs
[05:41:12] [PASSED] 48 VFs
[05:41:12] [PASSED] 49 VFs
[05:41:12] [PASSED] 50 VFs
[05:41:12] [PASSED] 51 VFs
[05:41:12] [PASSED] 52 VFs
[05:41:12] [PASSED] 53 VFs
[05:41:12] [PASSED] 54 VFs
[05:41:12] [PASSED] 55 VFs
[05:41:12] [PASSED] 56 VFs
[05:41:12] [PASSED] 57 VFs
[05:41:12] [PASSED] 58 VFs
[05:41:12] [PASSED] 59 VFs
[05:41:12] [PASSED] 60 VFs
[05:41:12] [PASSED] 61 VFs
[05:41:12] [PASSED] 62 VFs
[05:41:12] [PASSED] 63 VFs
[05:41:12] ================= [PASSED] fair_doorbells ==================
[05:41:12] ======================== fair_ggtt ========================
[05:41:12] [PASSED] 1 VF
[05:41:12] [PASSED] 2 VFs
[05:41:12] [PASSED] 3 VFs
[05:41:12] [PASSED] 4 VFs
[05:41:12] [PASSED] 5 VFs
[05:41:12] [PASSED] 6 VFs
[05:41:12] [PASSED] 7 VFs
[05:41:12] [PASSED] 8 VFs
[05:41:12] [PASSED] 9 VFs
[05:41:12] [PASSED] 10 VFs
[05:41:12] [PASSED] 11 VFs
[05:41:12] [PASSED] 12 VFs
[05:41:12] [PASSED] 13 VFs
[05:41:12] [PASSED] 14 VFs
[05:41:12] [PASSED] 15 VFs
[05:41:12] [PASSED] 16 VFs
[05:41:12] [PASSED] 17 VFs
[05:41:12] [PASSED] 18 VFs
[05:41:12] [PASSED] 19 VFs
[05:41:12] [PASSED] 20 VFs
[05:41:12] [PASSED] 21 VFs
[05:41:12] [PASSED] 22 VFs
[05:41:12] [PASSED] 23 VFs
[05:41:12] [PASSED] 24 VFs
[05:41:12] [PASSED] 25 VFs
[05:41:12] [PASSED] 26 VFs
[05:41:12] [PASSED] 27 VFs
[05:41:12] [PASSED] 28 VFs
[05:41:12] [PASSED] 29 VFs
[05:41:12] [PASSED] 30 VFs
[05:41:12] [PASSED] 31 VFs
[05:41:12] [PASSED] 32 VFs
[05:41:12] [PASSED] 33 VFs
[05:41:12] [PASSED] 34 VFs
[05:41:12] [PASSED] 35 VFs
[05:41:12] [PASSED] 36 VFs
[05:41:12] [PASSED] 37 VFs
[05:41:12] [PASSED] 38 VFs
[05:41:12] [PASSED] 39 VFs
[05:41:12] [PASSED] 40 VFs
[05:41:12] [PASSED] 41 VFs
[05:41:12] [PASSED] 42 VFs
[05:41:12] [PASSED] 43 VFs
[05:41:12] [PASSED] 44 VFs
[05:41:12] [PASSED] 45 VFs
[05:41:12] [PASSED] 46 VFs
[05:41:12] [PASSED] 47 VFs
[05:41:12] [PASSED] 48 VFs
[05:41:12] [PASSED] 49 VFs
[05:41:12] [PASSED] 50 VFs
[05:41:12] [PASSED] 51 VFs
[05:41:12] [PASSED] 52 VFs
[05:41:12] [PASSED] 53 VFs
[05:41:12] [PASSED] 54 VFs
[05:41:12] [PASSED] 55 VFs
[05:41:12] [PASSED] 56 VFs
[05:41:12] [PASSED] 57 VFs
[05:41:12] [PASSED] 58 VFs
[05:41:12] [PASSED] 59 VFs
[05:41:12] [PASSED] 60 VFs
[05:41:12] [PASSED] 61 VFs
[05:41:12] [PASSED] 62 VFs
[05:41:12] [PASSED] 63 VFs
[05:41:12] ==================== [PASSED] fair_ggtt ====================
[05:41:12] ================== [PASSED] pf_gt_config ===================
[05:41:12] ===================== lmtt (1 subtest) =====================
[05:41:12] ======================== test_ops =========================
[05:41:12] [PASSED] 2-level
[05:41:12] [PASSED] multi-level
[05:41:12] ==================== [PASSED] test_ops =====================
[05:41:12] ====================== [PASSED] lmtt =======================
[05:41:12] ================= pf_service (11 subtests) =================
[05:41:12] [PASSED] pf_negotiate_any
[05:41:12] [PASSED] pf_negotiate_base_match
[05:41:12] [PASSED] pf_negotiate_base_newer
[05:41:12] [PASSED] pf_negotiate_base_next
[05:41:12] [SKIPPED] pf_negotiate_base_older
[05:41:12] [PASSED] pf_negotiate_base_prev
[05:41:12] [PASSED] pf_negotiate_latest_match
[05:41:12] [PASSED] pf_negotiate_latest_newer
[05:41:12] [PASSED] pf_negotiate_latest_next
[05:41:12] [SKIPPED] pf_negotiate_latest_older
[05:41:12] [SKIPPED] pf_negotiate_latest_prev
[05:41:12] =================== [PASSED] pf_service ====================
[05:41:12] ================= xe_guc_g2g (2 subtests) ==================
[05:41:12] ============== xe_live_guc_g2g_kunit_default ==============
[05:41:12] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[05:41:12] ============== xe_live_guc_g2g_kunit_allmem ===============
[05:41:12] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[05:41:12] =================== [SKIPPED] xe_guc_g2g ===================
[05:41:12] =================== xe_mocs (2 subtests) ===================
[05:41:12] ================ xe_live_mocs_kernel_kunit ================
[05:41:12] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[05:41:12] ================ xe_live_mocs_reset_kunit =================
[05:41:12] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[05:41:12] ==================== [SKIPPED] xe_mocs =====================
[05:41:12] ================= xe_migrate (2 subtests) ==================
[05:41:12] ================= xe_migrate_sanity_kunit =================
[05:41:12] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[05:41:12] ================== xe_validate_ccs_kunit ==================
[05:41:12] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[05:41:12] =================== [SKIPPED] xe_migrate ===================
[05:41:12] ================== xe_dma_buf (1 subtest) ==================
[05:41:12] ==================== xe_dma_buf_kunit =====================
[05:41:12] ================ [SKIPPED] xe_dma_buf_kunit ================
[05:41:12] =================== [SKIPPED] xe_dma_buf ===================
[05:41:12] ================= xe_bo_shrink (1 subtest) =================
[05:41:12] =================== xe_bo_shrink_kunit ====================
[05:41:12] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[05:41:12] ================== [SKIPPED] xe_bo_shrink ==================
[05:41:12] ==================== xe_bo (2 subtests) ====================
[05:41:12] ================== xe_ccs_migrate_kunit ===================
[05:41:12] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[05:41:12] ==================== xe_bo_evict_kunit ====================
[05:41:12] =============== [SKIPPED] xe_bo_evict_kunit ================
[05:41:12] ===================== [SKIPPED] xe_bo ======================
[05:41:12] ==================== args (13 subtests) ====================
[05:41:12] [PASSED] count_args_test
[05:41:12] [PASSED] call_args_example
[05:41:12] [PASSED] call_args_test
[05:41:12] [PASSED] drop_first_arg_example
[05:41:12] [PASSED] drop_first_arg_test
[05:41:12] [PASSED] first_arg_example
[05:41:12] [PASSED] first_arg_test
[05:41:12] [PASSED] last_arg_example
[05:41:12] [PASSED] last_arg_test
[05:41:12] [PASSED] pick_arg_example
[05:41:12] [PASSED] if_args_example
[05:41:12] [PASSED] if_args_test
[05:41:12] [PASSED] sep_comma_example
[05:41:12] ====================== [PASSED] args =======================
[05:41:12] =================== xe_pci (3 subtests) ====================
[05:41:12] ==================== check_graphics_ip ====================
[05:41:12] [PASSED] 12.00 Xe_LP
[05:41:12] [PASSED] 12.10 Xe_LP+
[05:41:12] [PASSED] 12.55 Xe_HPG
[05:41:12] [PASSED] 12.60 Xe_HPC
[05:41:12] [PASSED] 12.70 Xe_LPG
[05:41:12] [PASSED] 12.71 Xe_LPG
[05:41:12] [PASSED] 12.74 Xe_LPG+
[05:41:12] [PASSED] 20.01 Xe2_HPG
[05:41:12] [PASSED] 20.02 Xe2_HPG
[05:41:12] [PASSED] 20.04 Xe2_LPG
[05:41:12] [PASSED] 30.00 Xe3_LPG
[05:41:12] [PASSED] 30.01 Xe3_LPG
[05:41:12] [PASSED] 30.03 Xe3_LPG
[05:41:12] [PASSED] 30.04 Xe3_LPG
[05:41:12] [PASSED] 30.05 Xe3_LPG
[05:41:12] [PASSED] 35.10 Xe3p_LPG
[05:41:12] [PASSED] 35.11 Xe3p_XPC
[05:41:12] ================ [PASSED] check_graphics_ip ================
[05:41:12] ===================== check_media_ip ======================
[05:41:12] [PASSED] 12.00 Xe_M
[05:41:12] [PASSED] 12.55 Xe_HPM
[05:41:12] [PASSED] 13.00 Xe_LPM+
[05:41:12] [PASSED] 13.01 Xe2_HPM
[05:41:12] [PASSED] 20.00 Xe2_LPM
[05:41:12] [PASSED] 30.00 Xe3_LPM
[05:41:12] [PASSED] 30.02 Xe3_LPM
[05:41:12] [PASSED] 35.00 Xe3p_LPM
[05:41:12] [PASSED] 35.03 Xe3p_HPM
[05:41:12] ================= [PASSED] check_media_ip ==================
[05:41:12] =================== check_platform_desc ===================
[05:41:12] [PASSED] 0x9A60 (TIGERLAKE)
[05:41:12] [PASSED] 0x9A68 (TIGERLAKE)
[05:41:12] [PASSED] 0x9A70 (TIGERLAKE)
[05:41:12] [PASSED] 0x9A40 (TIGERLAKE)
[05:41:12] [PASSED] 0x9A49 (TIGERLAKE)
[05:41:12] [PASSED] 0x9A59 (TIGERLAKE)
[05:41:12] [PASSED] 0x9A78 (TIGERLAKE)
[05:41:12] [PASSED] 0x9AC0 (TIGERLAKE)
[05:41:12] [PASSED] 0x9AC9 (TIGERLAKE)
[05:41:12] [PASSED] 0x9AD9 (TIGERLAKE)
[05:41:12] [PASSED] 0x9AF8 (TIGERLAKE)
[05:41:12] [PASSED] 0x4C80 (ROCKETLAKE)
[05:41:12] [PASSED] 0x4C8A (ROCKETLAKE)
[05:41:12] [PASSED] 0x4C8B (ROCKETLAKE)
[05:41:12] [PASSED] 0x4C8C (ROCKETLAKE)
[05:41:12] [PASSED] 0x4C90 (ROCKETLAKE)
[05:41:12] [PASSED] 0x4C9A (ROCKETLAKE)
[05:41:12] [PASSED] 0x4680 (ALDERLAKE_S)
[05:41:12] [PASSED] 0x4682 (ALDERLAKE_S)
[05:41:12] [PASSED] 0x4688 (ALDERLAKE_S)
[05:41:12] [PASSED] 0x468A (ALDERLAKE_S)
[05:41:12] [PASSED] 0x468B (ALDERLAKE_S)
[05:41:12] [PASSED] 0x4690 (ALDERLAKE_S)
[05:41:12] [PASSED] 0x4692 (ALDERLAKE_S)
[05:41:12] [PASSED] 0x4693 (ALDERLAKE_S)
[05:41:12] [PASSED] 0x46A0 (ALDERLAKE_P)
[05:41:12] [PASSED] 0x46A1 (ALDERLAKE_P)
[05:41:12] [PASSED] 0x46A2 (ALDERLAKE_P)
[05:41:12] [PASSED] 0x46A3 (ALDERLAKE_P)
[05:41:12] [PASSED] 0x46A6 (ALDERLAKE_P)
[05:41:12] [PASSED] 0x46A8 (ALDERLAKE_P)
[05:41:12] [PASSED] 0x46AA (ALDERLAKE_P)
[05:41:12] [PASSED] 0x462A (ALDERLAKE_P)
[05:41:12] [PASSED] 0x4626 (ALDERLAKE_P)
stty: 'standard input': Inappropriate ioctl for device
[05:41:12] [PASSED] 0x4628 (ALDERLAKE_P)
[05:41:12] [PASSED] 0x46B0 (ALDERLAKE_P)
[05:41:12] [PASSED] 0x46B1 (ALDERLAKE_P)
[05:41:12] [PASSED] 0x46B2 (ALDERLAKE_P)
[05:41:12] [PASSED] 0x46B3 (ALDERLAKE_P)
[05:41:12] [PASSED] 0x46C0 (ALDERLAKE_P)
[05:41:12] [PASSED] 0x46C1 (ALDERLAKE_P)
[05:41:12] [PASSED] 0x46C2 (ALDERLAKE_P)
[05:41:12] [PASSED] 0x46C3 (ALDERLAKE_P)
[05:41:12] [PASSED] 0x46D0 (ALDERLAKE_N)
[05:41:12] [PASSED] 0x46D1 (ALDERLAKE_N)
[05:41:12] [PASSED] 0x46D2 (ALDERLAKE_N)
[05:41:12] [PASSED] 0x46D3 (ALDERLAKE_N)
[05:41:12] [PASSED] 0x46D4 (ALDERLAKE_N)
[05:41:12] [PASSED] 0xA721 (ALDERLAKE_P)
[05:41:12] [PASSED] 0xA7A1 (ALDERLAKE_P)
[05:41:12] [PASSED] 0xA7A9 (ALDERLAKE_P)
[05:41:12] [PASSED] 0xA7AC (ALDERLAKE_P)
[05:41:12] [PASSED] 0xA7AD (ALDERLAKE_P)
[05:41:12] [PASSED] 0xA720 (ALDERLAKE_P)
[05:41:12] [PASSED] 0xA7A0 (ALDERLAKE_P)
[05:41:12] [PASSED] 0xA7A8 (ALDERLAKE_P)
[05:41:12] [PASSED] 0xA7AA (ALDERLAKE_P)
[05:41:12] [PASSED] 0xA7AB (ALDERLAKE_P)
[05:41:12] [PASSED] 0xA780 (ALDERLAKE_S)
[05:41:12] [PASSED] 0xA781 (ALDERLAKE_S)
[05:41:12] [PASSED] 0xA782 (ALDERLAKE_S)
[05:41:12] [PASSED] 0xA783 (ALDERLAKE_S)
[05:41:12] [PASSED] 0xA788 (ALDERLAKE_S)
[05:41:12] [PASSED] 0xA789 (ALDERLAKE_S)
[05:41:12] [PASSED] 0xA78A (ALDERLAKE_S)
[05:41:12] [PASSED] 0xA78B (ALDERLAKE_S)
[05:41:12] [PASSED] 0x4905 (DG1)
[05:41:12] [PASSED] 0x4906 (DG1)
[05:41:12] [PASSED] 0x4907 (DG1)
[05:41:12] [PASSED] 0x4908 (DG1)
[05:41:12] [PASSED] 0x4909 (DG1)
[05:41:12] [PASSED] 0x56C0 (DG2)
[05:41:12] [PASSED] 0x56C2 (DG2)
[05:41:12] [PASSED] 0x56C1 (DG2)
[05:41:12] [PASSED] 0x7D51 (METEORLAKE)
[05:41:12] [PASSED] 0x7DD1 (METEORLAKE)
[05:41:12] [PASSED] 0x7D41 (METEORLAKE)
[05:41:12] [PASSED] 0x7D67 (METEORLAKE)
[05:41:12] [PASSED] 0xB640 (METEORLAKE)
[05:41:12] [PASSED] 0x56A0 (DG2)
[05:41:12] [PASSED] 0x56A1 (DG2)
[05:41:12] [PASSED] 0x56A2 (DG2)
[05:41:12] [PASSED] 0x56BE (DG2)
[05:41:12] [PASSED] 0x56BF (DG2)
[05:41:12] [PASSED] 0x5690 (DG2)
[05:41:12] [PASSED] 0x5691 (DG2)
[05:41:12] [PASSED] 0x5692 (DG2)
[05:41:12] [PASSED] 0x56A5 (DG2)
[05:41:12] [PASSED] 0x56A6 (DG2)
[05:41:12] [PASSED] 0x56B0 (DG2)
[05:41:12] [PASSED] 0x56B1 (DG2)
[05:41:12] [PASSED] 0x56BA (DG2)
[05:41:12] [PASSED] 0x56BB (DG2)
[05:41:12] [PASSED] 0x56BC (DG2)
[05:41:12] [PASSED] 0x56BD (DG2)
[05:41:12] [PASSED] 0x5693 (DG2)
[05:41:12] [PASSED] 0x5694 (DG2)
[05:41:12] [PASSED] 0x5695 (DG2)
[05:41:12] [PASSED] 0x56A3 (DG2)
[05:41:12] [PASSED] 0x56A4 (DG2)
[05:41:12] [PASSED] 0x56B2 (DG2)
[05:41:12] [PASSED] 0x56B3 (DG2)
[05:41:12] [PASSED] 0x5696 (DG2)
[05:41:12] [PASSED] 0x5697 (DG2)
[05:41:12] [PASSED] 0xB69 (PVC)
[05:41:12] [PASSED] 0xB6E (PVC)
[05:41:12] [PASSED] 0xBD4 (PVC)
[05:41:12] [PASSED] 0xBD5 (PVC)
[05:41:12] [PASSED] 0xBD6 (PVC)
[05:41:12] [PASSED] 0xBD7 (PVC)
[05:41:12] [PASSED] 0xBD8 (PVC)
[05:41:12] [PASSED] 0xBD9 (PVC)
[05:41:12] [PASSED] 0xBDA (PVC)
[05:41:12] [PASSED] 0xBDB (PVC)
[05:41:12] [PASSED] 0xBE0 (PVC)
[05:41:12] [PASSED] 0xBE1 (PVC)
[05:41:12] [PASSED] 0xBE5 (PVC)
[05:41:12] [PASSED] 0x7D40 (METEORLAKE)
[05:41:12] [PASSED] 0x7D45 (METEORLAKE)
[05:41:12] [PASSED] 0x7D55 (METEORLAKE)
[05:41:12] [PASSED] 0x7D60 (METEORLAKE)
[05:41:12] [PASSED] 0x7DD5 (METEORLAKE)
[05:41:12] [PASSED] 0x6420 (LUNARLAKE)
[05:41:12] [PASSED] 0x64A0 (LUNARLAKE)
[05:41:12] [PASSED] 0x64B0 (LUNARLAKE)
[05:41:12] [PASSED] 0xE202 (BATTLEMAGE)
[05:41:12] [PASSED] 0xE209 (BATTLEMAGE)
[05:41:12] [PASSED] 0xE20B (BATTLEMAGE)
[05:41:12] [PASSED] 0xE20C (BATTLEMAGE)
[05:41:12] [PASSED] 0xE20D (BATTLEMAGE)
[05:41:12] [PASSED] 0xE210 (BATTLEMAGE)
[05:41:12] [PASSED] 0xE211 (BATTLEMAGE)
[05:41:12] [PASSED] 0xE212 (BATTLEMAGE)
[05:41:12] [PASSED] 0xE216 (BATTLEMAGE)
[05:41:12] [PASSED] 0xE220 (BATTLEMAGE)
[05:41:12] [PASSED] 0xE221 (BATTLEMAGE)
[05:41:12] [PASSED] 0xE222 (BATTLEMAGE)
[05:41:12] [PASSED] 0xE223 (BATTLEMAGE)
[05:41:12] [PASSED] 0xB080 (PANTHERLAKE)
[05:41:12] [PASSED] 0xB081 (PANTHERLAKE)
[05:41:12] [PASSED] 0xB082 (PANTHERLAKE)
[05:41:12] [PASSED] 0xB083 (PANTHERLAKE)
[05:41:12] [PASSED] 0xB084 (PANTHERLAKE)
[05:41:12] [PASSED] 0xB085 (PANTHERLAKE)
[05:41:12] [PASSED] 0xB086 (PANTHERLAKE)
[05:41:12] [PASSED] 0xB087 (PANTHERLAKE)
[05:41:12] [PASSED] 0xB08F (PANTHERLAKE)
[05:41:12] [PASSED] 0xB090 (PANTHERLAKE)
[05:41:12] [PASSED] 0xB0A0 (PANTHERLAKE)
[05:41:12] [PASSED] 0xB0B0 (PANTHERLAKE)
[05:41:12] [PASSED] 0xFD80 (PANTHERLAKE)
[05:41:12] [PASSED] 0xFD81 (PANTHERLAKE)
[05:41:12] [PASSED] 0xD740 (NOVALAKE_S)
[05:41:12] [PASSED] 0xD741 (NOVALAKE_S)
[05:41:12] [PASSED] 0xD742 (NOVALAKE_S)
[05:41:12] [PASSED] 0xD743 (NOVALAKE_S)
[05:41:12] [PASSED] 0xD744 (NOVALAKE_S)
[05:41:12] [PASSED] 0xD745 (NOVALAKE_S)
[05:41:12] [PASSED] 0x674C (CRESCENTISLAND)
[05:41:12] [PASSED] 0xD750 (NOVALAKE_P)
[05:41:12] [PASSED] 0xD751 (NOVALAKE_P)
[05:41:12] [PASSED] 0xD752 (NOVALAKE_P)
[05:41:12] [PASSED] 0xD753 (NOVALAKE_P)
[05:41:12] [PASSED] 0xD754 (NOVALAKE_P)
[05:41:12] [PASSED] 0xD755 (NOVALAKE_P)
[05:41:12] [PASSED] 0xD756 (NOVALAKE_P)
[05:41:12] [PASSED] 0xD757 (NOVALAKE_P)
[05:41:12] [PASSED] 0xD75F (NOVALAKE_P)
[05:41:12] =============== [PASSED] check_platform_desc ===============
[05:41:12] ===================== [PASSED] xe_pci ======================
[05:41:12] =================== xe_rtp (2 subtests) ====================
[05:41:12] =============== xe_rtp_process_to_sr_tests ================
[05:41:12] [PASSED] coalesce-same-reg
[05:41:12] [PASSED] no-match-no-add
[05:41:12] [PASSED] match-or
[05:41:12] [PASSED] match-or-xfail
[05:41:12] [PASSED] no-match-no-add-multiple-rules
[05:41:12] [PASSED] two-regs-two-entries
[05:41:12] [PASSED] clr-one-set-other
[05:41:12] [PASSED] set-field
[05:41:12] [PASSED] conflict-duplicate
[05:41:12] [PASSED] conflict-not-disjoint
[05:41:12] [PASSED] conflict-reg-type
[05:41:12] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[05:41:12] ================== xe_rtp_process_tests ===================
[05:41:12] [PASSED] active1
[05:41:12] [PASSED] active2
[05:41:12] [PASSED] active-inactive
[05:41:12] [PASSED] inactive-active
[05:41:12] [PASSED] inactive-1st_or_active-inactive
[05:41:12] [PASSED] inactive-2nd_or_active-inactive
[05:41:12] [PASSED] inactive-last_or_active-inactive
[05:41:12] [PASSED] inactive-no_or_active-inactive
[05:41:12] ============== [PASSED] xe_rtp_process_tests ===============
[05:41:12] ===================== [PASSED] xe_rtp ======================
[05:41:12] ==================== xe_wa (1 subtest) =====================
[05:41:12] ======================== xe_wa_gt =========================
[05:41:12] [PASSED] TIGERLAKE B0
[05:41:12] [PASSED] DG1 A0
[05:41:12] [PASSED] DG1 B0
[05:41:12] [PASSED] ALDERLAKE_S A0
[05:41:12] [PASSED] ALDERLAKE_S B0
[05:41:12] [PASSED] ALDERLAKE_S C0
[05:41:12] [PASSED] ALDERLAKE_S D0
[05:41:12] [PASSED] ALDERLAKE_P A0
[05:41:12] [PASSED] ALDERLAKE_P B0
[05:41:12] [PASSED] ALDERLAKE_P C0
[05:41:12] [PASSED] ALDERLAKE_S RPLS D0
[05:41:12] [PASSED] ALDERLAKE_P RPLU E0
[05:41:12] [PASSED] DG2 G10 C0
[05:41:12] [PASSED] DG2 G11 B1
[05:41:12] [PASSED] DG2 G12 A1
[05:41:12] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[05:41:12] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[05:41:12] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[05:41:12] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[05:41:12] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[05:41:12] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[05:41:12] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[05:41:12] ==================== [PASSED] xe_wa_gt =====================
[05:41:12] ====================== [PASSED] xe_wa ======================
[05:41:12] ============================================================
[05:41:12] Testing complete. Ran 522 tests: passed: 504, skipped: 18
[05:41:12] Elapsed time: 36.468s total, 4.223s configuring, 31.728s building, 0.477s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[05:41:12] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[05:41:14] 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
[05:41:39] Starting KUnit Kernel (1/1)...
[05:41:39] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[05:41:39] ============ drm_test_pick_cmdline (2 subtests) ============
[05:41:39] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[05:41:39] =============== drm_test_pick_cmdline_named ===============
[05:41:39] [PASSED] NTSC
[05:41:39] [PASSED] NTSC-J
[05:41:39] [PASSED] PAL
[05:41:39] [PASSED] PAL-M
[05:41:39] =========== [PASSED] drm_test_pick_cmdline_named ===========
[05:41:39] ============== [PASSED] drm_test_pick_cmdline ==============
[05:41:39] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[05:41:39] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[05:41:39] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[05:41:39] =========== drm_validate_clone_mode (2 subtests) ===========
[05:41:39] ============== drm_test_check_in_clone_mode ===============
[05:41:39] [PASSED] in_clone_mode
[05:41:39] [PASSED] not_in_clone_mode
[05:41:39] ========== [PASSED] drm_test_check_in_clone_mode ===========
[05:41:39] =============== drm_test_check_valid_clones ===============
[05:41:39] [PASSED] not_in_clone_mode
[05:41:39] [PASSED] valid_clone
[05:41:39] [PASSED] invalid_clone
[05:41:39] =========== [PASSED] drm_test_check_valid_clones ===========
[05:41:39] ============= [PASSED] drm_validate_clone_mode =============
[05:41:39] ============= drm_validate_modeset (1 subtest) =============
[05:41:39] [PASSED] drm_test_check_connector_changed_modeset
[05:41:39] ============== [PASSED] drm_validate_modeset ===============
[05:41:39] ====== drm_test_bridge_get_current_state (2 subtests) ======
[05:41:39] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[05:41:39] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[05:41:39] ======== [PASSED] drm_test_bridge_get_current_state ========
[05:41:39] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[05:41:39] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[05:41:39] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[05:41:39] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[05:41:39] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[05:41:39] ============== drm_bridge_alloc (2 subtests) ===============
[05:41:39] [PASSED] drm_test_drm_bridge_alloc_basic
[05:41:39] [PASSED] drm_test_drm_bridge_alloc_get_put
[05:41:39] ================ [PASSED] drm_bridge_alloc =================
[05:41:39] ============= drm_cmdline_parser (40 subtests) =============
[05:41:39] [PASSED] drm_test_cmdline_force_d_only
[05:41:39] [PASSED] drm_test_cmdline_force_D_only_dvi
[05:41:39] [PASSED] drm_test_cmdline_force_D_only_hdmi
[05:41:39] [PASSED] drm_test_cmdline_force_D_only_not_digital
[05:41:39] [PASSED] drm_test_cmdline_force_e_only
[05:41:39] [PASSED] drm_test_cmdline_res
[05:41:39] [PASSED] drm_test_cmdline_res_vesa
[05:41:39] [PASSED] drm_test_cmdline_res_vesa_rblank
[05:41:39] [PASSED] drm_test_cmdline_res_rblank
[05:41:39] [PASSED] drm_test_cmdline_res_bpp
[05:41:39] [PASSED] drm_test_cmdline_res_refresh
[05:41:39] [PASSED] drm_test_cmdline_res_bpp_refresh
[05:41:39] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[05:41:39] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[05:41:39] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[05:41:39] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[05:41:39] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[05:41:39] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[05:41:39] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[05:41:39] [PASSED] drm_test_cmdline_res_margins_force_on
[05:41:39] [PASSED] drm_test_cmdline_res_vesa_margins
[05:41:39] [PASSED] drm_test_cmdline_name
[05:41:39] [PASSED] drm_test_cmdline_name_bpp
[05:41:39] [PASSED] drm_test_cmdline_name_option
[05:41:39] [PASSED] drm_test_cmdline_name_bpp_option
[05:41:39] [PASSED] drm_test_cmdline_rotate_0
[05:41:39] [PASSED] drm_test_cmdline_rotate_90
[05:41:39] [PASSED] drm_test_cmdline_rotate_180
[05:41:39] [PASSED] drm_test_cmdline_rotate_270
[05:41:39] [PASSED] drm_test_cmdline_hmirror
[05:41:39] [PASSED] drm_test_cmdline_vmirror
[05:41:39] [PASSED] drm_test_cmdline_margin_options
[05:41:39] [PASSED] drm_test_cmdline_multiple_options
[05:41:39] [PASSED] drm_test_cmdline_bpp_extra_and_option
[05:41:39] [PASSED] drm_test_cmdline_extra_and_option
[05:41:39] [PASSED] drm_test_cmdline_freestanding_options
[05:41:39] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[05:41:39] [PASSED] drm_test_cmdline_panel_orientation
[05:41:39] ================ drm_test_cmdline_invalid =================
[05:41:39] [PASSED] margin_only
[05:41:39] [PASSED] interlace_only
[05:41:39] [PASSED] res_missing_x
[05:41:39] [PASSED] res_missing_y
[05:41:39] [PASSED] res_bad_y
[05:41:39] [PASSED] res_missing_y_bpp
[05:41:39] [PASSED] res_bad_bpp
[05:41:39] [PASSED] res_bad_refresh
[05:41:39] [PASSED] res_bpp_refresh_force_on_off
[05:41:39] [PASSED] res_invalid_mode
[05:41:39] [PASSED] res_bpp_wrong_place_mode
[05:41:39] [PASSED] name_bpp_refresh
[05:41:39] [PASSED] name_refresh
[05:41:39] [PASSED] name_refresh_wrong_mode
[05:41:39] [PASSED] name_refresh_invalid_mode
[05:41:39] [PASSED] rotate_multiple
[05:41:39] [PASSED] rotate_invalid_val
[05:41:39] [PASSED] rotate_truncated
[05:41:39] [PASSED] invalid_option
[05:41:39] [PASSED] invalid_tv_option
[05:41:39] [PASSED] truncated_tv_option
[05:41:39] ============ [PASSED] drm_test_cmdline_invalid =============
[05:41:39] =============== drm_test_cmdline_tv_options ===============
[05:41:39] [PASSED] NTSC
[05:41:39] [PASSED] NTSC_443
[05:41:39] [PASSED] NTSC_J
[05:41:39] [PASSED] PAL
[05:41:39] [PASSED] PAL_M
[05:41:39] [PASSED] PAL_N
[05:41:39] [PASSED] SECAM
[05:41:39] [PASSED] MONO_525
[05:41:39] [PASSED] MONO_625
[05:41:39] =========== [PASSED] drm_test_cmdline_tv_options ===========
[05:41:39] =============== [PASSED] drm_cmdline_parser ================
[05:41:39] ========== drmm_connector_hdmi_init (20 subtests) ==========
[05:41:39] [PASSED] drm_test_connector_hdmi_init_valid
[05:41:39] [PASSED] drm_test_connector_hdmi_init_bpc_8
[05:41:39] [PASSED] drm_test_connector_hdmi_init_bpc_10
[05:41:39] [PASSED] drm_test_connector_hdmi_init_bpc_12
[05:41:39] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[05:41:39] [PASSED] drm_test_connector_hdmi_init_bpc_null
[05:41:39] [PASSED] drm_test_connector_hdmi_init_formats_empty
[05:41:39] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[05:41:39] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[05:41:39] [PASSED] supported_formats=0x9 yuv420_allowed=1
[05:41:39] [PASSED] supported_formats=0x9 yuv420_allowed=0
[05:41:39] [PASSED] supported_formats=0x3 yuv420_allowed=1
[05:41:39] [PASSED] supported_formats=0x3 yuv420_allowed=0
[05:41:39] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[05:41:39] [PASSED] drm_test_connector_hdmi_init_null_ddc
[05:41:39] [PASSED] drm_test_connector_hdmi_init_null_product
[05:41:39] [PASSED] drm_test_connector_hdmi_init_null_vendor
[05:41:39] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[05:41:39] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[05:41:39] [PASSED] drm_test_connector_hdmi_init_product_valid
[05:41:39] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[05:41:39] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[05:41:39] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[05:41:39] ========= drm_test_connector_hdmi_init_type_valid =========
[05:41:39] [PASSED] HDMI-A
[05:41:39] [PASSED] HDMI-B
[05:41:39] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[05:41:39] ======== drm_test_connector_hdmi_init_type_invalid ========
[05:41:39] [PASSED] Unknown
[05:41:39] [PASSED] VGA
[05:41:39] [PASSED] DVI-I
[05:41:39] [PASSED] DVI-D
[05:41:39] [PASSED] DVI-A
[05:41:39] [PASSED] Composite
[05:41:39] [PASSED] SVIDEO
[05:41:39] [PASSED] LVDS
[05:41:39] [PASSED] Component
[05:41:39] [PASSED] DIN
[05:41:39] [PASSED] DP
[05:41:39] [PASSED] TV
[05:41:39] [PASSED] eDP
[05:41:39] [PASSED] Virtual
[05:41:39] [PASSED] DSI
[05:41:39] [PASSED] DPI
[05:41:39] [PASSED] Writeback
[05:41:39] [PASSED] SPI
[05:41:39] [PASSED] USB
[05:41:39] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[05:41:39] ============ [PASSED] drmm_connector_hdmi_init =============
[05:41:39] ============= drmm_connector_init (3 subtests) =============
[05:41:39] [PASSED] drm_test_drmm_connector_init
[05:41:39] [PASSED] drm_test_drmm_connector_init_null_ddc
[05:41:39] ========= drm_test_drmm_connector_init_type_valid =========
[05:41:39] [PASSED] Unknown
[05:41:39] [PASSED] VGA
[05:41:39] [PASSED] DVI-I
[05:41:39] [PASSED] DVI-D
[05:41:39] [PASSED] DVI-A
[05:41:39] [PASSED] Composite
[05:41:39] [PASSED] SVIDEO
[05:41:39] [PASSED] LVDS
[05:41:39] [PASSED] Component
[05:41:39] [PASSED] DIN
[05:41:39] [PASSED] DP
[05:41:39] [PASSED] HDMI-A
[05:41:39] [PASSED] HDMI-B
[05:41:39] [PASSED] TV
[05:41:39] [PASSED] eDP
[05:41:39] [PASSED] Virtual
[05:41:39] [PASSED] DSI
[05:41:39] [PASSED] DPI
[05:41:39] [PASSED] Writeback
[05:41:39] [PASSED] SPI
[05:41:39] [PASSED] USB
[05:41:39] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[05:41:39] =============== [PASSED] drmm_connector_init ===============
[05:41:39] ========= drm_connector_dynamic_init (6 subtests) ==========
[05:41:39] [PASSED] drm_test_drm_connector_dynamic_init
[05:41:39] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[05:41:39] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[05:41:39] [PASSED] drm_test_drm_connector_dynamic_init_properties
[05:41:39] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[05:41:39] [PASSED] Unknown
[05:41:39] [PASSED] VGA
[05:41:39] [PASSED] DVI-I
[05:41:39] [PASSED] DVI-D
[05:41:39] [PASSED] DVI-A
[05:41:39] [PASSED] Composite
[05:41:39] [PASSED] SVIDEO
[05:41:39] [PASSED] LVDS
[05:41:39] [PASSED] Component
[05:41:39] [PASSED] DIN
[05:41:39] [PASSED] DP
[05:41:39] [PASSED] HDMI-A
[05:41:39] [PASSED] HDMI-B
[05:41:39] [PASSED] TV
[05:41:39] [PASSED] eDP
[05:41:39] [PASSED] Virtual
[05:41:39] [PASSED] DSI
[05:41:39] [PASSED] DPI
[05:41:39] [PASSED] Writeback
[05:41:39] [PASSED] SPI
[05:41:39] [PASSED] USB
[05:41:39] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[05:41:39] ======== drm_test_drm_connector_dynamic_init_name =========
[05:41:39] [PASSED] Unknown
[05:41:39] [PASSED] VGA
[05:41:39] [PASSED] DVI-I
[05:41:39] [PASSED] DVI-D
[05:41:39] [PASSED] DVI-A
[05:41:39] [PASSED] Composite
[05:41:39] [PASSED] SVIDEO
[05:41:39] [PASSED] LVDS
[05:41:39] [PASSED] Component
[05:41:39] [PASSED] DIN
[05:41:39] [PASSED] DP
[05:41:39] [PASSED] HDMI-A
[05:41:39] [PASSED] HDMI-B
[05:41:39] [PASSED] TV
[05:41:39] [PASSED] eDP
[05:41:39] [PASSED] Virtual
[05:41:39] [PASSED] DSI
[05:41:39] [PASSED] DPI
[05:41:39] [PASSED] Writeback
[05:41:39] [PASSED] SPI
[05:41:39] [PASSED] USB
[05:41:39] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[05:41:39] =========== [PASSED] drm_connector_dynamic_init ============
[05:41:39] ==== drm_connector_dynamic_register_early (4 subtests) =====
[05:41:39] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[05:41:39] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[05:41:39] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[05:41:39] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[05:41:39] ====== [PASSED] drm_connector_dynamic_register_early =======
[05:41:39] ======= drm_connector_dynamic_register (7 subtests) ========
[05:41:39] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[05:41:39] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[05:41:39] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[05:41:39] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[05:41:39] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[05:41:39] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[05:41:39] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[05:41:39] ========= [PASSED] drm_connector_dynamic_register ==========
[05:41:39] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[05:41:39] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[05:41:39] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[05:41:39] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[05:41:39] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[05:41:39] ========== drm_test_get_tv_mode_from_name_valid ===========
[05:41:39] [PASSED] NTSC
[05:41:39] [PASSED] NTSC-443
[05:41:39] [PASSED] NTSC-J
[05:41:39] [PASSED] PAL
[05:41:39] [PASSED] PAL-M
[05:41:39] [PASSED] PAL-N
[05:41:39] [PASSED] SECAM
[05:41:39] [PASSED] Mono
[05:41:39] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[05:41:39] [PASSED] drm_test_get_tv_mode_from_name_truncated
[05:41:39] ============ [PASSED] drm_get_tv_mode_from_name ============
[05:41:39] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[05:41:39] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[05:41:39] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[05:41:39] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[05:41:39] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[05:41:39] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[05:41:39] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[05:41:39] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[05:41:39] [PASSED] VIC 96
[05:41:39] [PASSED] VIC 97
[05:41:39] [PASSED] VIC 101
[05:41:39] [PASSED] VIC 102
[05:41:39] [PASSED] VIC 106
[05:41:39] [PASSED] VIC 107
[05:41:39] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[05:41:39] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[05:41:39] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[05:41:39] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[05:41:39] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[05:41:39] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[05:41:39] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[05:41:39] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[05:41:39] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[05:41:39] [PASSED] Automatic
[05:41:39] [PASSED] Full
[05:41:39] [PASSED] Limited 16:235
[05:41:39] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[05:41:39] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[05:41:39] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[05:41:39] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[05:41:39] === drm_test_drm_hdmi_connector_get_output_format_name ====
[05:41:39] [PASSED] RGB
[05:41:39] [PASSED] YUV 4:2:0
[05:41:39] [PASSED] YUV 4:2:2
[05:41:39] [PASSED] YUV 4:4:4
[05:41:39] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[05:41:39] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[05:41:39] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[05:41:39] ============= drm_damage_helper (21 subtests) ==============
[05:41:39] [PASSED] drm_test_damage_iter_no_damage
[05:41:39] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[05:41:39] [PASSED] drm_test_damage_iter_no_damage_src_moved
[05:41:39] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[05:41:39] [PASSED] drm_test_damage_iter_no_damage_not_visible
[05:41:39] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[05:41:39] [PASSED] drm_test_damage_iter_no_damage_no_fb
[05:41:39] [PASSED] drm_test_damage_iter_simple_damage
[05:41:39] [PASSED] drm_test_damage_iter_single_damage
[05:41:39] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[05:41:39] [PASSED] drm_test_damage_iter_single_damage_outside_src
[05:41:39] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[05:41:39] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[05:41:39] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[05:41:39] [PASSED] drm_test_damage_iter_single_damage_src_moved
[05:41:39] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[05:41:39] [PASSED] drm_test_damage_iter_damage
[05:41:39] [PASSED] drm_test_damage_iter_damage_one_intersect
[05:41:39] [PASSED] drm_test_damage_iter_damage_one_outside
[05:41:39] [PASSED] drm_test_damage_iter_damage_src_moved
[05:41:39] [PASSED] drm_test_damage_iter_damage_not_visible
[05:41:39] ================ [PASSED] drm_damage_helper ================
[05:41:39] ============== drm_dp_mst_helper (3 subtests) ==============
[05:41:39] ============== drm_test_dp_mst_calc_pbn_mode ==============
[05:41:39] [PASSED] Clock 154000 BPP 30 DSC disabled
[05:41:39] [PASSED] Clock 234000 BPP 30 DSC disabled
[05:41:39] [PASSED] Clock 297000 BPP 24 DSC disabled
[05:41:39] [PASSED] Clock 332880 BPP 24 DSC enabled
[05:41:39] [PASSED] Clock 324540 BPP 24 DSC enabled
[05:41:39] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[05:41:39] ============== drm_test_dp_mst_calc_pbn_div ===============
[05:41:39] [PASSED] Link rate 2000000 lane count 4
[05:41:39] [PASSED] Link rate 2000000 lane count 2
[05:41:39] [PASSED] Link rate 2000000 lane count 1
[05:41:39] [PASSED] Link rate 1350000 lane count 4
[05:41:39] [PASSED] Link rate 1350000 lane count 2
[05:41:39] [PASSED] Link rate 1350000 lane count 1
[05:41:39] [PASSED] Link rate 1000000 lane count 4
[05:41:39] [PASSED] Link rate 1000000 lane count 2
[05:41:39] [PASSED] Link rate 1000000 lane count 1
[05:41:39] [PASSED] Link rate 810000 lane count 4
[05:41:39] [PASSED] Link rate 810000 lane count 2
[05:41:39] [PASSED] Link rate 810000 lane count 1
[05:41:39] [PASSED] Link rate 540000 lane count 4
[05:41:39] [PASSED] Link rate 540000 lane count 2
[05:41:39] [PASSED] Link rate 540000 lane count 1
[05:41:39] [PASSED] Link rate 270000 lane count 4
[05:41:39] [PASSED] Link rate 270000 lane count 2
[05:41:39] [PASSED] Link rate 270000 lane count 1
[05:41:39] [PASSED] Link rate 162000 lane count 4
[05:41:39] [PASSED] Link rate 162000 lane count 2
[05:41:39] [PASSED] Link rate 162000 lane count 1
[05:41:39] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[05:41:39] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[05:41:39] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[05:41:39] [PASSED] DP_POWER_UP_PHY with port number
[05:41:39] [PASSED] DP_POWER_DOWN_PHY with port number
[05:41:39] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[05:41:39] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[05:41:39] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[05:41:39] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[05:41:39] [PASSED] DP_QUERY_PAYLOAD with port number
[05:41:39] [PASSED] DP_QUERY_PAYLOAD with VCPI
[05:41:39] [PASSED] DP_REMOTE_DPCD_READ with port number
[05:41:39] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[05:41:39] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[05:41:39] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[05:41:39] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[05:41:39] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[05:41:39] [PASSED] DP_REMOTE_I2C_READ with port number
[05:41:39] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[05:41:39] [PASSED] DP_REMOTE_I2C_READ with transactions array
[05:41:39] [PASSED] DP_REMOTE_I2C_WRITE with port number
[05:41:39] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[05:41:39] [PASSED] DP_REMOTE_I2C_WRITE with data array
[05:41:39] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[05:41:39] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[05:41:39] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[05:41:39] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[05:41:39] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[05:41:39] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[05:41:39] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[05:41:39] ================ [PASSED] drm_dp_mst_helper ================
[05:41:39] ================== drm_exec (7 subtests) ===================
[05:41:39] [PASSED] sanitycheck
[05:41:39] [PASSED] test_lock
[05:41:39] [PASSED] test_lock_unlock
[05:41:39] [PASSED] test_duplicates
[05:41:39] [PASSED] test_prepare
[05:41:39] [PASSED] test_prepare_array
[05:41:39] [PASSED] test_multiple_loops
[05:41:39] ==================== [PASSED] drm_exec =====================
[05:41:39] =========== drm_format_helper_test (17 subtests) ===========
[05:41:39] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[05:41:39] [PASSED] single_pixel_source_buffer
[05:41:39] [PASSED] single_pixel_clip_rectangle
[05:41:39] [PASSED] well_known_colors
[05:41:39] [PASSED] destination_pitch
[05:41:39] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[05:41:39] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[05:41:39] [PASSED] single_pixel_source_buffer
[05:41:39] [PASSED] single_pixel_clip_rectangle
[05:41:39] [PASSED] well_known_colors
[05:41:39] [PASSED] destination_pitch
[05:41:39] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[05:41:39] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[05:41:39] [PASSED] single_pixel_source_buffer
[05:41:39] [PASSED] single_pixel_clip_rectangle
[05:41:39] [PASSED] well_known_colors
[05:41:39] [PASSED] destination_pitch
[05:41:39] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[05:41:39] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[05:41:39] [PASSED] single_pixel_source_buffer
[05:41:39] [PASSED] single_pixel_clip_rectangle
[05:41:39] [PASSED] well_known_colors
[05:41:39] [PASSED] destination_pitch
[05:41:39] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[05:41:39] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[05:41:39] [PASSED] single_pixel_source_buffer
[05:41:39] [PASSED] single_pixel_clip_rectangle
[05:41:39] [PASSED] well_known_colors
[05:41:39] [PASSED] destination_pitch
[05:41:39] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[05:41:39] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[05:41:39] [PASSED] single_pixel_source_buffer
[05:41:39] [PASSED] single_pixel_clip_rectangle
[05:41:39] [PASSED] well_known_colors
[05:41:39] [PASSED] destination_pitch
[05:41:39] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[05:41:39] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[05:41:39] [PASSED] single_pixel_source_buffer
[05:41:39] [PASSED] single_pixel_clip_rectangle
[05:41:39] [PASSED] well_known_colors
[05:41:39] [PASSED] destination_pitch
[05:41:39] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[05:41:39] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[05:41:39] [PASSED] single_pixel_source_buffer
[05:41:39] [PASSED] single_pixel_clip_rectangle
[05:41:39] [PASSED] well_known_colors
[05:41:39] [PASSED] destination_pitch
[05:41:39] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[05:41:39] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[05:41:39] [PASSED] single_pixel_source_buffer
[05:41:39] [PASSED] single_pixel_clip_rectangle
[05:41:39] [PASSED] well_known_colors
[05:41:39] [PASSED] destination_pitch
[05:41:39] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[05:41:39] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[05:41:39] [PASSED] single_pixel_source_buffer
[05:41:39] [PASSED] single_pixel_clip_rectangle
[05:41:39] [PASSED] well_known_colors
[05:41:39] [PASSED] destination_pitch
[05:41:39] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[05:41:39] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[05:41:39] [PASSED] single_pixel_source_buffer
[05:41:39] [PASSED] single_pixel_clip_rectangle
[05:41:39] [PASSED] well_known_colors
[05:41:39] [PASSED] destination_pitch
[05:41:39] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[05:41:39] ============== drm_test_fb_xrgb8888_to_mono ===============
[05:41:39] [PASSED] single_pixel_source_buffer
[05:41:39] [PASSED] single_pixel_clip_rectangle
[05:41:39] [PASSED] well_known_colors
[05:41:39] [PASSED] destination_pitch
[05:41:39] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[05:41:39] ==================== drm_test_fb_swab =====================
[05:41:39] [PASSED] single_pixel_source_buffer
[05:41:39] [PASSED] single_pixel_clip_rectangle
[05:41:39] [PASSED] well_known_colors
[05:41:39] [PASSED] destination_pitch
[05:41:39] ================ [PASSED] drm_test_fb_swab =================
[05:41:39] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[05:41:39] [PASSED] single_pixel_source_buffer
[05:41:39] [PASSED] single_pixel_clip_rectangle
[05:41:39] [PASSED] well_known_colors
[05:41:39] [PASSED] destination_pitch
[05:41:39] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[05:41:39] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[05:41:39] [PASSED] single_pixel_source_buffer
[05:41:39] [PASSED] single_pixel_clip_rectangle
[05:41:39] [PASSED] well_known_colors
[05:41:39] [PASSED] destination_pitch
[05:41:39] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[05:41:39] ================= drm_test_fb_clip_offset =================
[05:41:39] [PASSED] pass through
[05:41:39] [PASSED] horizontal offset
[05:41:39] [PASSED] vertical offset
[05:41:39] [PASSED] horizontal and vertical offset
[05:41:39] [PASSED] horizontal offset (custom pitch)
[05:41:39] [PASSED] vertical offset (custom pitch)
[05:41:39] [PASSED] horizontal and vertical offset (custom pitch)
[05:41:39] ============= [PASSED] drm_test_fb_clip_offset =============
[05:41:39] =================== drm_test_fb_memcpy ====================
[05:41:39] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[05:41:39] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[05:41:39] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[05:41:39] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[05:41:39] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[05:41:39] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[05:41:39] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[05:41:39] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[05:41:39] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[05:41:39] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[05:41:39] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[05:41:39] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[05:41:39] =============== [PASSED] drm_test_fb_memcpy ================
[05:41:39] ============= [PASSED] drm_format_helper_test ==============
[05:41:39] ================= drm_format (18 subtests) =================
[05:41:39] [PASSED] drm_test_format_block_width_invalid
[05:41:39] [PASSED] drm_test_format_block_width_one_plane
[05:41:39] [PASSED] drm_test_format_block_width_two_plane
[05:41:39] [PASSED] drm_test_format_block_width_three_plane
[05:41:39] [PASSED] drm_test_format_block_width_tiled
[05:41:39] [PASSED] drm_test_format_block_height_invalid
[05:41:39] [PASSED] drm_test_format_block_height_one_plane
[05:41:39] [PASSED] drm_test_format_block_height_two_plane
[05:41:39] [PASSED] drm_test_format_block_height_three_plane
[05:41:39] [PASSED] drm_test_format_block_height_tiled
[05:41:39] [PASSED] drm_test_format_min_pitch_invalid
[05:41:39] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[05:41:39] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[05:41:39] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[05:41:39] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[05:41:39] [PASSED] drm_test_format_min_pitch_two_plane
[05:41:39] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[05:41:39] [PASSED] drm_test_format_min_pitch_tiled
[05:41:39] =================== [PASSED] drm_format ====================
[05:41:39] ============== drm_framebuffer (10 subtests) ===============
[05:41:39] ========== drm_test_framebuffer_check_src_coords ==========
[05:41:39] [PASSED] Success: source fits into fb
[05:41:39] [PASSED] Fail: overflowing fb with x-axis coordinate
[05:41:39] [PASSED] Fail: overflowing fb with y-axis coordinate
[05:41:39] [PASSED] Fail: overflowing fb with source width
[05:41:39] [PASSED] Fail: overflowing fb with source height
[05:41:39] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[05:41:39] [PASSED] drm_test_framebuffer_cleanup
[05:41:39] =============== drm_test_framebuffer_create ===============
[05:41:39] [PASSED] ABGR8888 normal sizes
[05:41:39] [PASSED] ABGR8888 max sizes
[05:41:39] [PASSED] ABGR8888 pitch greater than min required
[05:41:39] [PASSED] ABGR8888 pitch less than min required
[05:41:39] [PASSED] ABGR8888 Invalid width
[05:41:39] [PASSED] ABGR8888 Invalid buffer handle
[05:41:39] [PASSED] No pixel format
[05:41:39] [PASSED] ABGR8888 Width 0
[05:41:39] [PASSED] ABGR8888 Height 0
[05:41:39] [PASSED] ABGR8888 Out of bound height * pitch combination
[05:41:39] [PASSED] ABGR8888 Large buffer offset
[05:41:39] [PASSED] ABGR8888 Buffer offset for inexistent plane
[05:41:39] [PASSED] ABGR8888 Invalid flag
[05:41:39] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[05:41:39] [PASSED] ABGR8888 Valid buffer modifier
[05:41:39] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[05:41:39] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[05:41:39] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[05:41:39] [PASSED] NV12 Normal sizes
[05:41:39] [PASSED] NV12 Max sizes
[05:41:39] [PASSED] NV12 Invalid pitch
[05:41:39] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[05:41:39] [PASSED] NV12 different modifier per-plane
[05:41:39] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[05:41:39] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[05:41:39] [PASSED] NV12 Modifier for inexistent plane
[05:41:39] [PASSED] NV12 Handle for inexistent plane
[05:41:39] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[05:41:39] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[05:41:39] [PASSED] YVU420 Normal sizes
[05:41:39] [PASSED] YVU420 Max sizes
[05:41:39] [PASSED] YVU420 Invalid pitch
[05:41:39] [PASSED] YVU420 Different pitches
[05:41:39] [PASSED] YVU420 Different buffer offsets/pitches
[05:41:39] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[05:41:39] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[05:41:39] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[05:41:39] [PASSED] YVU420 Valid modifier
[05:41:39] [PASSED] YVU420 Different modifiers per plane
[05:41:39] [PASSED] YVU420 Modifier for inexistent plane
[05:41:39] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[05:41:39] [PASSED] X0L2 Normal sizes
[05:41:39] [PASSED] X0L2 Max sizes
[05:41:39] [PASSED] X0L2 Invalid pitch
[05:41:39] [PASSED] X0L2 Pitch greater than minimum required
[05:41:39] [PASSED] X0L2 Handle for inexistent plane
[05:41:39] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[05:41:39] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[05:41:39] [PASSED] X0L2 Valid modifier
[05:41:39] [PASSED] X0L2 Modifier for inexistent plane
[05:41:39] =========== [PASSED] drm_test_framebuffer_create ===========
[05:41:39] [PASSED] drm_test_framebuffer_free
[05:41:39] [PASSED] drm_test_framebuffer_init
[05:41:39] [PASSED] drm_test_framebuffer_init_bad_format
[05:41:39] [PASSED] drm_test_framebuffer_init_dev_mismatch
[05:41:39] [PASSED] drm_test_framebuffer_lookup
[05:41:39] [PASSED] drm_test_framebuffer_lookup_inexistent
[05:41:39] [PASSED] drm_test_framebuffer_modifiers_not_supported
[05:41:39] ================= [PASSED] drm_framebuffer =================
[05:41:39] ================ drm_gem_shmem (8 subtests) ================
[05:41:39] [PASSED] drm_gem_shmem_test_obj_create
[05:41:39] [PASSED] drm_gem_shmem_test_obj_create_private
[05:41:39] [PASSED] drm_gem_shmem_test_pin_pages
[05:41:39] [PASSED] drm_gem_shmem_test_vmap
[05:41:39] [PASSED] drm_gem_shmem_test_get_sg_table
[05:41:39] [PASSED] drm_gem_shmem_test_get_pages_sgt
[05:41:39] [PASSED] drm_gem_shmem_test_madvise
[05:41:39] [PASSED] drm_gem_shmem_test_purge
[05:41:39] ================== [PASSED] drm_gem_shmem ==================
[05:41:39] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[05:41:39] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[05:41:39] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[05:41:39] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[05:41:39] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[05:41:39] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[05:41:39] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[05:41:39] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[05:41:39] [PASSED] Automatic
[05:41:39] [PASSED] Full
[05:41:39] [PASSED] Limited 16:235
[05:41:39] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[05:41:39] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[05:41:39] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[05:41:39] [PASSED] drm_test_check_disable_connector
[05:41:39] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[05:41:39] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[05:41:39] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[05:41:39] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[05:41:39] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[05:41:39] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[05:41:39] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[05:41:39] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[05:41:39] [PASSED] drm_test_check_output_bpc_dvi
[05:41:39] [PASSED] drm_test_check_output_bpc_format_vic_1
[05:41:39] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[05:41:39] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[05:41:39] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[05:41:39] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[05:41:39] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[05:41:39] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[05:41:39] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[05:41:39] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[05:41:39] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[05:41:39] [PASSED] drm_test_check_broadcast_rgb_value
[05:41:39] [PASSED] drm_test_check_bpc_8_value
[05:41:39] [PASSED] drm_test_check_bpc_10_value
[05:41:39] [PASSED] drm_test_check_bpc_12_value
[05:41:39] [PASSED] drm_test_check_format_value
[05:41:39] [PASSED] drm_test_check_tmds_char_value
[05:41:39] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[05:41:39] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[05:41:39] [PASSED] drm_test_check_mode_valid
[05:41:39] [PASSED] drm_test_check_mode_valid_reject
[05:41:39] [PASSED] drm_test_check_mode_valid_reject_rate
[05:41:39] [PASSED] drm_test_check_mode_valid_reject_max_clock
[05:41:39] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[05:41:39] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[05:41:39] [PASSED] drm_test_check_infoframes
[05:41:39] [PASSED] drm_test_check_reject_avi_infoframe
[05:41:39] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[05:41:39] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[05:41:39] [PASSED] drm_test_check_reject_audio_infoframe
[05:41:39] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[05:41:39] ================= drm_managed (2 subtests) =================
[05:41:39] [PASSED] drm_test_managed_release_action
[05:41:39] [PASSED] drm_test_managed_run_action
[05:41:39] =================== [PASSED] drm_managed ===================
[05:41:39] =================== drm_mm (6 subtests) ====================
[05:41:39] [PASSED] drm_test_mm_init
[05:41:39] [PASSED] drm_test_mm_debug
[05:41:39] [PASSED] drm_test_mm_align32
[05:41:39] [PASSED] drm_test_mm_align64
[05:41:39] [PASSED] drm_test_mm_lowest
[05:41:39] [PASSED] drm_test_mm_highest
[05:41:39] ===================== [PASSED] drm_mm ======================
[05:41:39] ============= drm_modes_analog_tv (5 subtests) =============
[05:41:39] [PASSED] drm_test_modes_analog_tv_mono_576i
[05:41:39] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[05:41:39] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[05:41:39] [PASSED] drm_test_modes_analog_tv_pal_576i
[05:41:39] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[05:41:39] =============== [PASSED] drm_modes_analog_tv ===============
[05:41:39] ============== drm_plane_helper (2 subtests) ===============
[05:41:39] =============== drm_test_check_plane_state ================
[05:41:39] [PASSED] clipping_simple
[05:41:39] [PASSED] clipping_rotate_reflect
[05:41:39] [PASSED] positioning_simple
[05:41:39] [PASSED] upscaling
[05:41:39] [PASSED] downscaling
[05:41:39] [PASSED] rounding1
[05:41:39] [PASSED] rounding2
[05:41:39] [PASSED] rounding3
[05:41:39] [PASSED] rounding4
[05:41:39] =========== [PASSED] drm_test_check_plane_state ============
[05:41:39] =========== drm_test_check_invalid_plane_state ============
[05:41:39] [PASSED] positioning_invalid
[05:41:39] [PASSED] upscaling_invalid
[05:41:39] [PASSED] downscaling_invalid
[05:41:39] ======= [PASSED] drm_test_check_invalid_plane_state ========
[05:41:39] ================ [PASSED] drm_plane_helper =================
[05:41:39] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[05:41:39] ====== drm_test_connector_helper_tv_get_modes_check =======
[05:41:39] [PASSED] None
[05:41:39] [PASSED] PAL
[05:41:39] [PASSED] NTSC
[05:41:39] [PASSED] Both, NTSC Default
[05:41:39] [PASSED] Both, PAL Default
[05:41:39] [PASSED] Both, NTSC Default, with PAL on command-line
[05:41:39] [PASSED] Both, PAL Default, with NTSC on command-line
[05:41:39] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[05:41:39] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[05:41:39] ================== drm_rect (9 subtests) ===================
[05:41:39] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[05:41:39] [PASSED] drm_test_rect_clip_scaled_not_clipped
[05:41:39] [PASSED] drm_test_rect_clip_scaled_clipped
[05:41:39] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[05:41:39] ================= drm_test_rect_intersect =================
[05:41:39] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[05:41:39] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[05:41:39] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[05:41:39] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[05:41:39] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[05:41:39] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[05:41:39] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[05:41:39] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[05:41:39] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[05:41:39] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[05:41:39] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[05:41:39] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[05:41:39] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[05:41:39] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[05:41:39] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[05:41:39] ============= [PASSED] drm_test_rect_intersect =============
[05:41:39] ================ drm_test_rect_calc_hscale ================
[05:41:39] [PASSED] normal use
[05:41:39] [PASSED] out of max range
[05:41:39] [PASSED] out of min range
[05:41:39] [PASSED] zero dst
[05:41:39] [PASSED] negative src
[05:41:39] [PASSED] negative dst
[05:41:39] ============ [PASSED] drm_test_rect_calc_hscale ============
[05:41:39] ================ drm_test_rect_calc_vscale ================
[05:41:39] [PASSED] normal use
[05:41:39] [PASSED] out of max range
[05:41:39] [PASSED] out of min range
[05:41:39] [PASSED] zero dst
[05:41:39] [PASSED] negative src
[05:41:39] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[05:41:39] ============ [PASSED] drm_test_rect_calc_vscale ============
[05:41:39] ================== drm_test_rect_rotate ===================
[05:41:39] [PASSED] reflect-x
[05:41:39] [PASSED] reflect-y
[05:41:39] [PASSED] rotate-0
[05:41:39] [PASSED] rotate-90
[05:41:39] [PASSED] rotate-180
[05:41:39] [PASSED] rotate-270
[05:41:39] ============== [PASSED] drm_test_rect_rotate ===============
[05:41:39] ================ drm_test_rect_rotate_inv =================
[05:41:39] [PASSED] reflect-x
[05:41:39] [PASSED] reflect-y
[05:41:39] [PASSED] rotate-0
[05:41:39] [PASSED] rotate-90
[05:41:39] [PASSED] rotate-180
[05:41:39] [PASSED] rotate-270
[05:41:39] ============ [PASSED] drm_test_rect_rotate_inv =============
[05:41:39] ==================== [PASSED] drm_rect =====================
[05:41:39] ============ drm_sysfb_modeset_test (1 subtest) ============
[05:41:39] ============ drm_test_sysfb_build_fourcc_list =============
[05:41:39] [PASSED] no native formats
[05:41:39] [PASSED] XRGB8888 as native format
[05:41:39] [PASSED] remove duplicates
[05:41:39] [PASSED] convert alpha formats
[05:41:39] [PASSED] random formats
[05:41:39] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[05:41:39] ============= [PASSED] drm_sysfb_modeset_test ==============
[05:41:39] ================== drm_fixp (2 subtests) ===================
[05:41:39] [PASSED] drm_test_int2fixp
[05:41:39] [PASSED] drm_test_sm2fixp
[05:41:39] ==================== [PASSED] drm_fixp =====================
[05:41:39] ============================================================
[05:41:39] Testing complete. Ran 621 tests: passed: 621
[05:41:39] Elapsed time: 26.881s total, 1.566s configuring, 25.148s building, 0.135s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[05:41:39] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[05:41:41] 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
[05:41:51] Starting KUnit Kernel (1/1)...
[05:41:51] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[05:41:51] ================= ttm_device (5 subtests) ==================
[05:41:51] [PASSED] ttm_device_init_basic
[05:41:51] [PASSED] ttm_device_init_multiple
[05:41:51] [PASSED] ttm_device_fini_basic
[05:41:51] [PASSED] ttm_device_init_no_vma_man
[05:41:51] ================== ttm_device_init_pools ==================
[05:41:51] [PASSED] No DMA allocations, no DMA32 required
[05:41:51] [PASSED] DMA allocations, DMA32 required
[05:41:51] [PASSED] No DMA allocations, DMA32 required
[05:41:51] [PASSED] DMA allocations, no DMA32 required
[05:41:51] ============== [PASSED] ttm_device_init_pools ==============
[05:41:51] =================== [PASSED] ttm_device ====================
[05:41:51] ================== ttm_pool (8 subtests) ===================
[05:41:51] ================== ttm_pool_alloc_basic ===================
[05:41:51] [PASSED] One page
[05:41:51] [PASSED] More than one page
[05:41:51] [PASSED] Above the allocation limit
[05:41:51] [PASSED] One page, with coherent DMA mappings enabled
[05:41:51] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[05:41:51] ============== [PASSED] ttm_pool_alloc_basic ===============
[05:41:51] ============== ttm_pool_alloc_basic_dma_addr ==============
[05:41:51] [PASSED] One page
[05:41:51] [PASSED] More than one page
[05:41:51] [PASSED] Above the allocation limit
[05:41:51] [PASSED] One page, with coherent DMA mappings enabled
[05:41:51] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[05:41:51] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[05:41:51] [PASSED] ttm_pool_alloc_order_caching_match
[05:41:51] [PASSED] ttm_pool_alloc_caching_mismatch
[05:41:51] [PASSED] ttm_pool_alloc_order_mismatch
[05:41:51] [PASSED] ttm_pool_free_dma_alloc
[05:41:51] [PASSED] ttm_pool_free_no_dma_alloc
[05:41:51] [PASSED] ttm_pool_fini_basic
[05:41:51] ==================== [PASSED] ttm_pool =====================
[05:41:51] ================ ttm_resource (8 subtests) =================
[05:41:51] ================= ttm_resource_init_basic =================
[05:41:51] [PASSED] Init resource in TTM_PL_SYSTEM
[05:41:51] [PASSED] Init resource in TTM_PL_VRAM
[05:41:51] [PASSED] Init resource in a private placement
[05:41:51] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[05:41:51] ============= [PASSED] ttm_resource_init_basic =============
[05:41:51] [PASSED] ttm_resource_init_pinned
[05:41:51] [PASSED] ttm_resource_fini_basic
[05:41:51] [PASSED] ttm_resource_manager_init_basic
[05:41:51] [PASSED] ttm_resource_manager_usage_basic
[05:41:51] [PASSED] ttm_resource_manager_set_used_basic
[05:41:51] [PASSED] ttm_sys_man_alloc_basic
[05:41:51] [PASSED] ttm_sys_man_free_basic
[05:41:51] ================== [PASSED] ttm_resource ===================
[05:41:51] =================== ttm_tt (15 subtests) ===================
[05:41:51] ==================== ttm_tt_init_basic ====================
[05:41:51] [PASSED] Page-aligned size
[05:41:51] [PASSED] Extra pages requested
[05:41:51] ================ [PASSED] ttm_tt_init_basic ================
[05:41:51] [PASSED] ttm_tt_init_misaligned
[05:41:51] [PASSED] ttm_tt_fini_basic
[05:41:51] [PASSED] ttm_tt_fini_sg
[05:41:51] [PASSED] ttm_tt_fini_shmem
[05:41:51] [PASSED] ttm_tt_create_basic
[05:41:51] [PASSED] ttm_tt_create_invalid_bo_type
[05:41:51] [PASSED] ttm_tt_create_ttm_exists
[05:41:51] [PASSED] ttm_tt_create_failed
[05:41:51] [PASSED] ttm_tt_destroy_basic
[05:41:51] [PASSED] ttm_tt_populate_null_ttm
[05:41:51] [PASSED] ttm_tt_populate_populated_ttm
[05:41:51] [PASSED] ttm_tt_unpopulate_basic
[05:41:51] [PASSED] ttm_tt_unpopulate_empty_ttm
[05:41:51] [PASSED] ttm_tt_swapin_basic
[05:41:51] ===================== [PASSED] ttm_tt ======================
[05:41:51] =================== ttm_bo (14 subtests) ===================
[05:41:51] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[05:41:51] [PASSED] Cannot be interrupted and sleeps
[05:41:51] [PASSED] Cannot be interrupted, locks straight away
[05:41:51] [PASSED] Can be interrupted, sleeps
[05:41:51] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[05:41:51] [PASSED] ttm_bo_reserve_locked_no_sleep
[05:41:51] [PASSED] ttm_bo_reserve_no_wait_ticket
[05:41:51] [PASSED] ttm_bo_reserve_double_resv
[05:41:51] [PASSED] ttm_bo_reserve_interrupted
[05:41:51] [PASSED] ttm_bo_reserve_deadlock
[05:41:51] [PASSED] ttm_bo_unreserve_basic
[05:41:51] [PASSED] ttm_bo_unreserve_pinned
[05:41:51] [PASSED] ttm_bo_unreserve_bulk
[05:41:51] [PASSED] ttm_bo_fini_basic
[05:41:51] [PASSED] ttm_bo_fini_shared_resv
[05:41:51] [PASSED] ttm_bo_pin_basic
[05:41:51] [PASSED] ttm_bo_pin_unpin_resource
[05:41:51] [PASSED] ttm_bo_multiple_pin_one_unpin
[05:41:51] ===================== [PASSED] ttm_bo ======================
[05:41:51] ============== ttm_bo_validate (21 subtests) ===============
[05:41:51] ============== ttm_bo_init_reserved_sys_man ===============
[05:41:51] [PASSED] Buffer object for userspace
[05:41:51] [PASSED] Kernel buffer object
[05:41:51] [PASSED] Shared buffer object
[05:41:51] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[05:41:51] ============== ttm_bo_init_reserved_mock_man ==============
[05:41:51] [PASSED] Buffer object for userspace
[05:41:51] [PASSED] Kernel buffer object
[05:41:51] [PASSED] Shared buffer object
[05:41:51] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[05:41:51] [PASSED] ttm_bo_init_reserved_resv
[05:41:51] ================== ttm_bo_validate_basic ==================
[05:41:51] [PASSED] Buffer object for userspace
[05:41:51] [PASSED] Kernel buffer object
[05:41:51] [PASSED] Shared buffer object
[05:41:51] ============== [PASSED] ttm_bo_validate_basic ==============
[05:41:51] [PASSED] ttm_bo_validate_invalid_placement
[05:41:51] ============= ttm_bo_validate_same_placement ==============
[05:41:51] [PASSED] System manager
[05:41:51] [PASSED] VRAM manager
[05:41:51] ========= [PASSED] ttm_bo_validate_same_placement ==========
[05:41:51] [PASSED] ttm_bo_validate_failed_alloc
[05:41:51] [PASSED] ttm_bo_validate_pinned
[05:41:51] [PASSED] ttm_bo_validate_busy_placement
[05:41:51] ================ ttm_bo_validate_multihop =================
[05:41:51] [PASSED] Buffer object for userspace
[05:41:51] [PASSED] Kernel buffer object
[05:41:51] [PASSED] Shared buffer object
[05:41:51] ============ [PASSED] ttm_bo_validate_multihop =============
[05:41:51] ========== ttm_bo_validate_no_placement_signaled ==========
[05:41:51] [PASSED] Buffer object in system domain, no page vector
[05:41:51] [PASSED] Buffer object in system domain with an existing page vector
[05:41:51] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[05:41:51] ======== ttm_bo_validate_no_placement_not_signaled ========
[05:41:51] [PASSED] Buffer object for userspace
[05:41:51] [PASSED] Kernel buffer object
[05:41:51] [PASSED] Shared buffer object
[05:41:51] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[05:41:51] [PASSED] ttm_bo_validate_move_fence_signaled
[05:41:51] ========= ttm_bo_validate_move_fence_not_signaled =========
[05:41:51] [PASSED] Waits for GPU
[05:41:51] [PASSED] Tries to lock straight away
[05:41:51] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[05:41:51] [PASSED] ttm_bo_validate_happy_evict
[05:41:51] [PASSED] ttm_bo_validate_all_pinned_evict
[05:41:51] [PASSED] ttm_bo_validate_allowed_only_evict
[05:41:51] [PASSED] ttm_bo_validate_deleted_evict
[05:41:51] [PASSED] ttm_bo_validate_busy_domain_evict
[05:41:51] [PASSED] ttm_bo_validate_evict_gutting
[05:41:51] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[05:41:51] ================= [PASSED] ttm_bo_validate =================
[05:41:51] ============================================================
[05:41:51] Testing complete. Ran 101 tests: passed: 101
[05:41:51] Elapsed time: 11.479s total, 1.680s configuring, 9.583s building, 0.183s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 10+ messages in thread* ✓ Xe.CI.BAT: success for drm/buddy: Documentation and internal helper cleanup (rev3)
2026-02-11 5:31 [PATCH v2 0/2] drm/buddy: Documentation and internal helper cleanup Sanjay Yadav
` (3 preceding siblings ...)
2026-02-11 5:41 ` ✓ CI.KUnit: success " Patchwork
@ 2026-02-11 6:15 ` Patchwork
2026-02-11 7:51 ` ✗ Xe.CI.FULL: failure " Patchwork
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-02-11 6:15 UTC (permalink / raw)
To: Sanjay Yadav; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1474 bytes --]
== Series Details ==
Series: drm/buddy: Documentation and internal helper cleanup (rev3)
URL : https://patchwork.freedesktop.org/series/161140/
State : success
== Summary ==
CI Bug Log - changes from xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0_BAT -> xe-pw-161140v3_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-161140v3_BAT that come from known issues:
### IGT changes ###
#### Possible fixes ####
* igt@xe_waitfence@reltime:
- bat-dg2-oem2: [FAIL][1] ([Intel XE#6520]) -> [PASS][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
Build changes
-------------
* IGT: IGT_8746 -> IGT_8747
* Linux: xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0 -> xe-pw-161140v3
IGT_8746: 8746
IGT_8747: 8747
xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0: 8ef710cfb81579fbf4107d77134e6e8d2c864ef0
xe-pw-161140v3: 161140v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/index.html
[-- Attachment #2: Type: text/html, Size: 2053 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread* ✗ Xe.CI.FULL: failure for drm/buddy: Documentation and internal helper cleanup (rev3)
2026-02-11 5:31 [PATCH v2 0/2] drm/buddy: Documentation and internal helper cleanup Sanjay Yadav
` (4 preceding siblings ...)
2026-02-11 6:15 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-02-11 7:51 ` Patchwork
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2026-02-11 7:51 UTC (permalink / raw)
To: Sanjay Yadav; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 55960 bytes --]
== Series Details ==
Series: drm/buddy: Documentation and internal helper cleanup (rev3)
URL : https://patchwork.freedesktop.org/series/161140/
State : failure
== Summary ==
CI Bug Log - changes from xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0_FULL -> xe-pw-161140v3_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-161140v3_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-161140v3_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-161140v3_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
- shard-bmg: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
Known issues
------------
Here are the changes found in xe-pw-161140v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-read:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#1125])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2370])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#1407])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2327]) +5 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-6/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +7 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +4 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2328])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-10/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [PASS][10] -> [SKIP][11] ([Intel XE#2314] / [Intel XE#2894])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-9/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2314] / [Intel XE#2894])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#367]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-3/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#367])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-5/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#2887]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-3/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2887]) +9 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-1/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-edp-1:
- shard-lnl: [PASS][17] -> [ABORT][18] ([Intel XE#7169]) +1 other test abort
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-edp-1.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2652] / [Intel XE#787]) +12 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#3432]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#3432]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2724])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-7/igt@kms_cdclk@mode-transition-all-outputs.html
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#4418])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-3/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#306]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-7/igt@kms_chamelium_color@ctm-blue-to-red.html
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2325]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-4/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2252]) +6 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-8/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-after-suspend:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#373]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-2/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html
* igt@kms_content_protection@atomic-dpms-hdcp14:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#7194])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-5/igt@kms_content_protection@atomic-dpms-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2390] / [Intel XE#6974])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-9/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][30] ([Intel XE#1178] / [Intel XE#3304]) +3 other tests fail
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-9/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@uevent:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#3278])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-6/igt@kms_content_protection@uevent.html
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2341])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-5/igt@kms_content_protection@uevent.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-bmg: NOTRUN -> [FAIL][33] ([Intel XE#6707]) +1 other test fail
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-1/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2320]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-1/igt@kms_cursor_crc@cursor-random-32x32.html
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1424])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-6/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2321])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#2321])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-bmg: [PASS][38] -> [SKIP][39] ([Intel XE#2291]) +2 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-9/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#309]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: [PASS][41] -> [DMESG-WARN][42] ([Intel XE#5354])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-9/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-bmg: [PASS][43] -> [FAIL][44] ([Intel XE#5299])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#4210])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [PASS][46] -> [SKIP][47] ([Intel XE#1340])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-bmg: [PASS][48] -> [SKIP][49] ([Intel XE#4354])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-10/igt@kms_dp_link_training@non-uhbr-sst.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-5/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dsc@dsc-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#2244])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-2/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2244])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-8/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#4156])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-7/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#776])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-7/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#701])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-4/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1138])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-2/igt@kms_feature_discovery@display-4x.html
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#1138])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-6/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#1421])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-2/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-bmg: [PASS][58] -> [DMESG-WARN][59] ([Intel XE#3428] / [Intel XE#5208])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-9/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3:
- shard-bmg: [PASS][60] -> [DMESG-WARN][61] ([Intel XE#3428])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-9/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-bmg: [PASS][62] -> [SKIP][63] ([Intel XE#2316]) +5 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-7/igt@kms_flip@2x-flip-vs-wf_vblank.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-5/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#7178]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#7178]) +5 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2311]) +18 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#7061]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#4141]) +14 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#7061]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#651]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2312]) +11 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2313]) +25 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#656]) +19 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#4090])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#6912])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#7130]) +8 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-7/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#7111] / [Intel XE#7130] / [Intel XE#7131]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-10/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-0:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#7130]) +28 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-6/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-0.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#7111] / [Intel XE#7130]) +5 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-6/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-a-plane-5:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#7131]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-5/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#7111] / [Intel XE#7131]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-5/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-b-plane-5.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#5021])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-10/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_pm_backlight@bad-brightness:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#870]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-9/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][84] -> [FAIL][85] ([Intel XE#718]) +1 other test fail
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#3309])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-4/igt@kms_pm_dc@dc5-retention-flops.html
- shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#3309])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-10/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2392]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-9/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: NOTRUN -> [FAIL][89] ([Intel XE#2029])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#1406] / [Intel XE#1489]) +5 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-9/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1406] / [Intel XE#2893]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-4/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#1406] / [Intel XE#2387])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-6/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +10 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-6/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@pr-primary-blt:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1406]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-2/igt@kms_psr@pr-primary-blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#1406] / [Intel XE#2414])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_setmode@basic:
- shard-bmg: NOTRUN -> [FAIL][98] ([Intel XE#6361]) +1 other test fail
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-1/igt@kms_setmode@basic.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1435]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-7/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [PASS][100] -> [SKIP][101] ([Intel XE#1435])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-9/igt@kms_setmode@invalid-clone-single-crtc.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_sharpness_filter@filter-scaler-downscale:
- shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#6503])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-3/igt@kms_sharpness_filter@filter-scaler-downscale.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#1499])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-3/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2168])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-8/igt@kms_vrr@lobf.html
* igt@kms_vrr@lobf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][105] ([Intel XE#6390]) +1 other test fail
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-5/igt@kms_vrr@lobf@pipe-a-edp-1.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [PASS][106] -> [SKIP][107] ([Intel XE#1499])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-10/igt@kms_vrr@negative-basic.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-6/igt@kms_vrr@negative-basic.html
* igt@xe_eudebug@basic-connect:
- shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#4837]) +6 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-8/igt@xe_eudebug@basic-connect.html
* igt@xe_eudebug@discovery-empty-clients:
- shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#4837]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-3/igt@xe_eudebug@discovery-empty-clients.html
* igt@xe_eudebug_online@pagefault-one-of-many:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#6665])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-5/igt@xe_eudebug_online@pagefault-one-of-many.html
* igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-1/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html
* igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#4837] / [Intel XE#6665]) +3 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-4/igt@xe_eudebug_online@writes-caching-vram-bb-vram-target-sram.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#4518])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-6/igt@xe_eudebug_sriov@deny-sriov.html
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#5793])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-1/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_evict@evict-small-external-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#7140])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-9/igt@xe_evict@evict-small-external-multi-queue.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#688]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-1/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
- shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#1392]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-7/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2322]) +8 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-6/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#7136]) +8 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-3/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html
* igt@xe_exec_fault_mode@twice-multi-queue-invalid-fault:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#7136]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-2/igt@xe_exec_fault_mode@twice-multi-queue-invalid-fault.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-dyn-priority:
- shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#6874]) +9 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-4/igt@xe_exec_multi_queue@many-execs-preempt-mode-fault-dyn-priority.html
* igt@xe_exec_multi_queue@two-queues-priority:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#6874]) +21 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-8/igt@xe_exec_multi_queue@two-queues-priority.html
* igt@xe_exec_system_allocator@many-64k-mmap-huge:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#5007])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-7/igt@xe_exec_system_allocator@many-64k-mmap-huge.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [PASS][124] -> [FAIL][125] ([Intel XE#5625])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-lnl-5/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#6196])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-2/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-multi-vma.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-free-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#4943]) +18 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-4/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-free-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-many-execqueues-mmap-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#4943]) +7 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-5/igt@xe_exec_system_allocator@threads-many-execqueues-mmap-huge-nomemset.html
* igt@xe_exec_threads@threads-multi-queue-hang-basic:
- shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#7138]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-4/igt@xe_exec_threads@threads-multi-queue-hang-basic.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#7138]) +6 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-invalidate-race.html
* igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#6281])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-4/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2229])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-5/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_eudebug:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#2833])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-8/igt@xe_live_ktest@xe_eudebug.html
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2833])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-9/igt@xe_live_ktest@xe_eudebug.html
* igt@xe_multigpu_svm@mgpu-coherency-fail-basic:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#6964]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-9/igt@xe_multigpu_svm@mgpu-coherency-fail-basic.html
* igt@xe_multigpu_svm@mgpu-latency-copy-prefetch:
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#6964])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-5/igt@xe_multigpu_svm@mgpu-latency-copy-prefetch.html
* igt@xe_pm@s3-exec-after:
- shard-bmg: [PASS][137] -> [ABORT][138] ([Intel XE#7169])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-6/igt@xe_pm@s3-exec-after.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-6/igt@xe_pm@s3-exec-after.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#584]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-2/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#579])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-2/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#4650])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-4/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
* igt@xe_pxp@pxp-stale-bo-exec-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#4733]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-6/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html
* igt@xe_query@multigpu-query-engines:
- shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#944]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-4/igt@xe_query@multigpu-query-engines.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#944]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-6/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random:
- shard-bmg: [PASS][145] -> [FAIL][146] ([Intel XE#5937]) +1 other test fail
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-7/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-3/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-lnl: NOTRUN -> [SKIP][147] ([Intel XE#4273])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-8/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#4351])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-8/igt@xe_sriov_scheduling@equal-throughput.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear:
- shard-lnl: [FAIL][149] ([Intel XE#5993]) -> [PASS][150] +3 other tests pass
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][151] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][152]
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-bmg: [SKIP][153] ([Intel XE#2291]) -> [PASS][154] +1 other test pass
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-3/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-bmg: [DMESG-FAIL][155] ([Intel XE#1727]) -> [PASS][156]
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [SKIP][157] ([Intel XE#4294]) -> [PASS][158]
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][159] ([Intel XE#2316]) -> [PASS][160] +10 other tests pass
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-10/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][161] ([Intel XE#1503]) -> [PASS][162]
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [SKIP][163] ([Intel XE#7086]) -> [PASS][164]
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-5/igt@kms_joiner@basic-force-big-joiner.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-3/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][165] ([Intel XE#718]) -> [PASS][166]
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-lnl: [SKIP][167] ([Intel XE#7197]) -> [PASS][168]
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-lnl-7/igt@kms_pm_rpm@universal-planes-dpms.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-7/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][169] ([Intel XE#6361]) -> [PASS][170] +2 other tests pass
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][171] ([Intel XE#6321]) -> [PASS][172]
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_prime_self_import@basic-with_two_bos:
- shard-bmg: [ABORT][173] ([Intel XE#7169]) -> [PASS][174]
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-10/igt@xe_prime_self_import@basic-with_two_bos.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-8/igt@xe_prime_self_import@basic-with_two_bos.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][175] ([Intel XE#4141]) -> [SKIP][176] ([Intel XE#2312]) +7 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][177] ([Intel XE#2312]) -> [SKIP][178] ([Intel XE#4141]) +4 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][179] ([Intel XE#2312]) -> [SKIP][180] ([Intel XE#2311]) +17 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][181] ([Intel XE#2311]) -> [SKIP][182] ([Intel XE#2312]) +12 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][183] ([Intel XE#2313]) -> [SKIP][184] ([Intel XE#2312]) +16 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][185] ([Intel XE#2312]) -> [SKIP][186] ([Intel XE#2313]) +17 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][187] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][188] ([Intel XE#3544])
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[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#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[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#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[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#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
[Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
[Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[Intel XE#6390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6390
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[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#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
[Intel XE#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[Intel XE#7131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7169
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194
[Intel XE#7197]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7197
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[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_8746 -> IGT_8747
* Linux: xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0 -> xe-pw-161140v3
IGT_8746: 8746
IGT_8747: 8747
xe-4541-8ef710cfb81579fbf4107d77134e6e8d2c864ef0: 8ef710cfb81579fbf4107d77134e6e8d2c864ef0
xe-pw-161140v3: 161140v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-161140v3/index.html
[-- Attachment #2: Type: text/html, Size: 64126 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread