* [PATCH v2 0/3] gpu/buddy: Per-order free and used block scoreboards
@ 2026-05-11 16:41 Francois Dugast
2026-05-11 16:41 ` [PATCH v2 1/3] gpu/buddy: Fix use-after-free in split_block() call sites Francois Dugast
` (10 more replies)
0 siblings, 11 replies; 13+ messages in thread
From: Francois Dugast @ 2026-05-11 16:41 UTC (permalink / raw)
To: intel-xe; +Cc: dri-devel, matthew.auld, Francois Dugast
drm_buddy_print() currently reports per-order free block counts by
walking all rbtrees, which is O(n) in the total number of free blocks
and holds the allocator lock for the duration. On large VRAM heaps with
many small fragments this becomes expensive.
This series replaces the rbtree walk with two lightweight scoreboard
arrays — free_scoreboard and used_scoreboard — indexed by order and
maintained incrementally at the points where block state transitions
occur. The print functions become simple array lookups, and drivers
reading debugfs (/sys/kernel/debug/dri/0/tile0/vram_mm) now get both
free and used counts per order at O(1) cost.
v2: Add first patch to fix bug reported by Sashiko [1] then update
following patches accordingly
[1] https://sashiko.dev/#/patchset/20260504135343.1797869-1-francois.dugast%40intel.com
Francois Dugast (3):
gpu/buddy: Fix use-after-free in split_block() call sites
gpu/buddy: Track per-order free blocks with a scoreboard
gpu/buddy: Track per-order used blocks with a scoreboard
drivers/gpu/buddy.c | 86 ++++++++++++++++++++++++++-----------
drivers/gpu/drm/drm_buddy.c | 30 ++++++-------
include/linux/gpu_buddy.h | 15 +++++++
3 files changed, 88 insertions(+), 43 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH v2 1/3] gpu/buddy: Fix use-after-free in split_block() call sites
2026-05-11 16:41 [PATCH v2 0/3] gpu/buddy: Per-order free and used block scoreboards Francois Dugast
@ 2026-05-11 16:41 ` Francois Dugast
2026-05-11 16:41 ` [PATCH v2 2/3] gpu/buddy: Track per-order free blocks with a scoreboard Francois Dugast
` (9 subsequent siblings)
10 siblings, 0 replies; 13+ messages in thread
From: Francois Dugast @ 2026-05-11 16:41 UTC (permalink / raw)
To: intel-xe; +Cc: dri-devel, matthew.auld, Francois Dugast, Sashiko
When split_block() fails it returns before calling mark_split(), leaving
the block in the FREE state and still linked in the rbtree. The four
err_undo paths then call __gpu_buddy_free() without first removing the
block from the tree, which leads to two distinct bugs:
- If the buddy is also free, __gpu_buddy_free() merges the two siblings
by calling gpu_block_free(mm, block) while block->rb is still linked
in the tree. Any subsequent rbtree traversal will follow the now-
dangling pointer, causing a use-after-free.
- In alloc_from_freetree(), where there is no buddy guard,
__gpu_buddy_free() always reaches mark_free() -> rbtree_insert() with
block still in the tree, corrupting the rbtree.
The same pattern is already used correctly in __force_merge(): call
rbtree_remove() to unlink the block before handing it to
__gpu_buddy_free(). Apply the same fix to all four err_undo sites.
Reported-by: Sashiko <sashiko-bot@kernel.org>
Signed-off-by: Francois Dugast <francois.dugast@intel.com>
Assisted-by: GitHub Copilot:claude-sonnet-4.6
---
drivers/gpu/buddy.c | 16 ++++++++++++----
1 file changed, 12 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/buddy.c b/drivers/gpu/buddy.c
index eb1457376307..dac2027bb64a 100644
--- a/drivers/gpu/buddy.c
+++ b/drivers/gpu/buddy.c
@@ -737,8 +737,10 @@ __alloc_range_bias(struct gpu_buddy *mm,
buddy = __get_buddy(block);
if (buddy &&
(gpu_buddy_block_is_free(block) &&
- gpu_buddy_block_is_free(buddy)))
+ gpu_buddy_block_is_free(buddy))) {
+ rbtree_remove(mm, block);
__gpu_buddy_free(mm, block, false);
+ }
return ERR_PTR(err);
}
@@ -847,8 +849,10 @@ alloc_from_freetree(struct gpu_buddy *mm,
return block;
err_undo:
- if (tmp != order)
+ if (tmp != order) {
+ rbtree_remove(mm, block);
__gpu_buddy_free(mm, block, false);
+ }
return ERR_PTR(err);
}
@@ -968,8 +972,10 @@ gpu_buddy_offset_aligned_allocation(struct gpu_buddy *mm,
buddy = __get_buddy(block);
if (buddy &&
(gpu_buddy_block_is_free(block) &&
- gpu_buddy_block_is_free(buddy)))
+ gpu_buddy_block_is_free(buddy))) {
+ rbtree_remove(mm, block);
__gpu_buddy_free(mm, block, false);
+ }
return ERR_PTR(err);
}
@@ -1054,8 +1060,10 @@ static int __alloc_range(struct gpu_buddy *mm,
buddy = __get_buddy(block);
if (buddy &&
(gpu_buddy_block_is_free(block) &&
- gpu_buddy_block_is_free(buddy)))
+ gpu_buddy_block_is_free(buddy))) {
+ rbtree_remove(mm, block);
__gpu_buddy_free(mm, block, false);
+ }
err_free:
if (err == -ENOSPC && total_allocated_on_err) {
--
2.43.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH v2 2/3] gpu/buddy: Track per-order free blocks with a scoreboard
2026-05-11 16:41 [PATCH v2 0/3] gpu/buddy: Per-order free and used block scoreboards Francois Dugast
2026-05-11 16:41 ` [PATCH v2 1/3] gpu/buddy: Fix use-after-free in split_block() call sites Francois Dugast
@ 2026-05-11 16:41 ` Francois Dugast
2026-05-15 15:50 ` Matthew Auld
2026-05-11 16:41 ` [PATCH v2 3/3] gpu/buddy: Track per-order used " Francois Dugast
` (8 subsequent siblings)
10 siblings, 1 reply; 13+ messages in thread
From: Francois Dugast @ 2026-05-11 16:41 UTC (permalink / raw)
To: intel-xe; +Cc: dri-devel, matthew.auld, Francois Dugast
Reporting per-order free block counts in drm_buddy_print() currently
requires walking all rbtrees, which is O(n) over the total number of
free blocks and holds the allocator lock for the duration. This becomes
expensive on large VRAM heaps with many small free fragments.
Maintain a free_scoreboard[] array indexed by order instead, so that
the count for any order is always available in O(1). The scoreboard is
kept accurate by hooking into the four places where a block's free state
changes: mark_free(), mark_allocated(), mark_split(), and the sites in
__gpu_buddy_free(), __force_merge(), and the four err_undo paths that
call rbtree_remove() directly on free blocks without going through
mark_*().
The print functions are simplified as a result: the rbtree traversal
is replaced by a direct array lookup.
v2: Update after fix for use-after-free in split_block() call sites
Signed-off-by: Francois Dugast <francois.dugast@intel.com>
Assisted-by: GitHub Copilot:claude-sonnet-4.6
---
drivers/gpu/buddy.c | 39 +++++++++++++++++++++++--------------
drivers/gpu/drm/drm_buddy.c | 16 ++-------------
include/linux/gpu_buddy.h | 7 +++++++
3 files changed, 33 insertions(+), 29 deletions(-)
diff --git a/drivers/gpu/buddy.c b/drivers/gpu/buddy.c
index dac2027bb64a..01247e3201fb 100644
--- a/drivers/gpu/buddy.c
+++ b/drivers/gpu/buddy.c
@@ -193,6 +193,8 @@ static void mark_allocated(struct gpu_buddy *mm,
block->header &= ~GPU_BUDDY_HEADER_STATE;
block->header |= GPU_BUDDY_ALLOCATED;
+ mm->free_scoreboard[gpu_buddy_block_order(block)]--;
+
rbtree_remove(mm, block);
}
@@ -204,6 +206,8 @@ static void mark_free(struct gpu_buddy *mm,
block->header &= ~GPU_BUDDY_HEADER_STATE;
block->header |= GPU_BUDDY_FREE;
+ mm->free_scoreboard[gpu_buddy_block_order(block)]++;
+
tree = get_block_tree(block);
rbtree_insert(mm, block, tree);
}
@@ -214,6 +218,8 @@ static void mark_split(struct gpu_buddy *mm,
block->header &= ~GPU_BUDDY_HEADER_STATE;
block->header |= GPU_BUDDY_SPLIT;
+ mm->free_scoreboard[gpu_buddy_block_order(block)]--;
+
rbtree_remove(mm, block);
}
@@ -271,6 +277,7 @@ static unsigned int __gpu_buddy_free(struct gpu_buddy *mm,
}
rbtree_remove(mm, buddy);
+ mm->free_scoreboard[gpu_buddy_block_order(buddy)]--;
if (force_merge && gpu_buddy_block_is_clear(buddy))
mm->clear_avail -= gpu_buddy_block_size(mm, buddy);
@@ -335,6 +342,7 @@ static int __force_merge(struct gpu_buddy *mm,
iter = rb_prev(iter);
rbtree_remove(mm, block);
+ mm->free_scoreboard[gpu_buddy_block_order(block)]--;
if (gpu_buddy_block_is_clear(block))
mm->clear_avail -= gpu_buddy_block_size(mm, block);
@@ -384,11 +392,17 @@ int gpu_buddy_init(struct gpu_buddy *mm, u64 size, u64 chunk_size)
BUG_ON(mm->max_order > GPU_BUDDY_MAX_ORDER);
+ mm->free_scoreboard = kcalloc(mm->max_order + 1,
+ sizeof(*mm->free_scoreboard),
+ GFP_KERNEL);
+ if (!mm->free_scoreboard)
+ return -ENOMEM;
+
mm->free_trees = kmalloc_array(GPU_BUDDY_MAX_FREE_TREES,
sizeof(*mm->free_trees),
GFP_KERNEL);
if (!mm->free_trees)
- return -ENOMEM;
+ goto out_free_scoreboard;
for_each_free_tree(i) {
mm->free_trees[i] = kmalloc_array(mm->max_order + 1,
@@ -450,6 +464,8 @@ int gpu_buddy_init(struct gpu_buddy *mm, u64 size, u64 chunk_size)
while (i--)
kfree(mm->free_trees[i]);
kfree(mm->free_trees);
+out_free_scoreboard:
+ kfree(mm->free_scoreboard);
return -ENOMEM;
}
EXPORT_SYMBOL(gpu_buddy_init);
@@ -488,6 +504,7 @@ void gpu_buddy_fini(struct gpu_buddy *mm)
kfree(mm->free_trees[i]);
kfree(mm->free_trees);
kfree(mm->roots);
+ kfree(mm->free_scoreboard);
}
EXPORT_SYMBOL(gpu_buddy_fini);
@@ -739,6 +756,7 @@ __alloc_range_bias(struct gpu_buddy *mm,
(gpu_buddy_block_is_free(block) &&
gpu_buddy_block_is_free(buddy))) {
rbtree_remove(mm, block);
+ mm->free_scoreboard[gpu_buddy_block_order(block)]--;
__gpu_buddy_free(mm, block, false);
}
return ERR_PTR(err);
@@ -851,6 +869,7 @@ alloc_from_freetree(struct gpu_buddy *mm,
err_undo:
if (tmp != order) {
rbtree_remove(mm, block);
+ mm->free_scoreboard[gpu_buddy_block_order(block)]--;
__gpu_buddy_free(mm, block, false);
}
return ERR_PTR(err);
@@ -974,6 +993,7 @@ gpu_buddy_offset_aligned_allocation(struct gpu_buddy *mm,
(gpu_buddy_block_is_free(block) &&
gpu_buddy_block_is_free(buddy))) {
rbtree_remove(mm, block);
+ mm->free_scoreboard[gpu_buddy_block_order(block)]--;
__gpu_buddy_free(mm, block, false);
}
return ERR_PTR(err);
@@ -1062,6 +1082,7 @@ static int __alloc_range(struct gpu_buddy *mm,
(gpu_buddy_block_is_free(block) &&
gpu_buddy_block_is_free(buddy))) {
rbtree_remove(mm, block);
+ mm->free_scoreboard[gpu_buddy_block_order(block)]--;
__gpu_buddy_free(mm, block, false);
}
@@ -1498,21 +1519,9 @@ void gpu_buddy_print(struct gpu_buddy *mm)
mm->chunk_size >> 10, mm->size >> 20, mm->avail >> 20, mm->clear_avail >> 20);
for (order = mm->max_order; order >= 0; order--) {
- struct gpu_buddy_block *block, *tmp;
- struct rb_root *root;
- u64 count = 0, free;
- unsigned int tree;
-
- for_each_free_tree(tree) {
- root = &mm->free_trees[tree][order];
-
- rbtree_postorder_for_each_entry_safe(block, tmp, root, rb) {
- BUG_ON(!gpu_buddy_block_is_free(block));
- count++;
- }
- }
+ u64 count = mm->free_scoreboard[order];
+ u64 free = count * (mm->chunk_size << order);
- free = count * (mm->chunk_size << order);
if (free < SZ_1M)
pr_info("order-%2d free: %8llu KiB, blocks: %llu\n",
order, free >> 10, count);
diff --git a/drivers/gpu/drm/drm_buddy.c b/drivers/gpu/drm/drm_buddy.c
index faa025498de4..eef995e08a37 100644
--- a/drivers/gpu/drm/drm_buddy.c
+++ b/drivers/gpu/drm/drm_buddy.c
@@ -47,23 +47,11 @@ void drm_buddy_print(struct gpu_buddy *mm, struct drm_printer *p)
mm->chunk_size >> 10, mm->size >> 20, mm->avail >> 20, mm->clear_avail >> 20);
for (order = mm->max_order; order >= 0; order--) {
- struct gpu_buddy_block *block, *tmp;
- struct rb_root *root;
- u64 count = 0, free;
- unsigned int tree;
-
- for_each_free_tree(tree) {
- root = &mm->free_trees[tree][order];
-
- rbtree_postorder_for_each_entry_safe(block, tmp, root, rb) {
- BUG_ON(!gpu_buddy_block_is_free(block));
- count++;
- }
- }
+ u64 count = mm->free_scoreboard[order];
+ u64 free = count * (mm->chunk_size << order);
drm_printf(p, "order-%2d ", order);
- free = count * (mm->chunk_size << order);
if (free < SZ_1M)
drm_printf(p, "free: %8llu KiB", free >> 10);
else
diff --git a/include/linux/gpu_buddy.h b/include/linux/gpu_buddy.h
index 71941a039648..a28f7d7637ca 100644
--- a/include/linux/gpu_buddy.h
+++ b/include/linux/gpu_buddy.h
@@ -173,6 +173,13 @@ struct gpu_buddy {
* that fits in the remaining space.
*/
struct gpu_buddy_block **roots;
+ /*
+ * Per-order free block scoreboard: free_scoreboard[order] holds the
+ * number of blocks of that order currently in the free state.
+ * Incremented in mark_free(), decremented wherever rbtree_remove() is
+ * called on a free block.
+ */
+ u64 *free_scoreboard;
/* public: */
unsigned int n_roots;
unsigned int max_order;
--
2.43.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH v2 3/3] gpu/buddy: Track per-order used blocks with a scoreboard
2026-05-11 16:41 [PATCH v2 0/3] gpu/buddy: Per-order free and used block scoreboards Francois Dugast
2026-05-11 16:41 ` [PATCH v2 1/3] gpu/buddy: Fix use-after-free in split_block() call sites Francois Dugast
2026-05-11 16:41 ` [PATCH v2 2/3] gpu/buddy: Track per-order free blocks with a scoreboard Francois Dugast
@ 2026-05-11 16:41 ` Francois Dugast
2026-05-11 23:29 ` ✗ CI.checkpatch: warning for gpu/buddy: Per-order free and used block scoreboards (rev2) Patchwork
` (7 subsequent siblings)
10 siblings, 0 replies; 13+ messages in thread
From: Francois Dugast @ 2026-05-11 16:41 UTC (permalink / raw)
To: intel-xe; +Cc: dri-devel, matthew.auld, Francois Dugast
Extend the scoreboard approach from the previous commit to used blocks,
so drm_buddy_print() can report per-order allocation pressure in O(1).
Unlike free blocks, an allocated block can leave the allocated state
through mark_free() (normal free and gpu_buddy_block_trim()) or be
consumed directly by gpu_block_free() during coalescing. Both sites are
guarded by gpu_buddy_block_is_allocated() and paired with the increment
in mark_allocated().
v2:
- Update after fix for use-after-free in split_block() call sites
- Change goto label to out_free_used_scoreboard for clarity
- Make drm_buddy_print() and gpu_buddy_print() symmetric for used and
free
Signed-off-by: Francois Dugast <francois.dugast@intel.com>
Assisted-by: GitHub Copilot:claude-sonnet-4.6
---
drivers/gpu/buddy.c | 39 +++++++++++++++++++++++++++----------
drivers/gpu/drm/drm_buddy.c | 18 +++++++++++------
include/linux/gpu_buddy.h | 8 ++++++++
3 files changed, 49 insertions(+), 16 deletions(-)
diff --git a/drivers/gpu/buddy.c b/drivers/gpu/buddy.c
index 01247e3201fb..daff39f50c40 100644
--- a/drivers/gpu/buddy.c
+++ b/drivers/gpu/buddy.c
@@ -194,6 +194,7 @@ static void mark_allocated(struct gpu_buddy *mm,
block->header |= GPU_BUDDY_ALLOCATED;
mm->free_scoreboard[gpu_buddy_block_order(block)]--;
+ mm->used_scoreboard[gpu_buddy_block_order(block)]++;
rbtree_remove(mm, block);
}
@@ -203,6 +204,9 @@ static void mark_free(struct gpu_buddy *mm,
{
enum gpu_buddy_free_tree tree;
+ if (gpu_buddy_block_is_allocated(block))
+ mm->used_scoreboard[gpu_buddy_block_order(block)]--;
+
block->header &= ~GPU_BUDDY_HEADER_STATE;
block->header |= GPU_BUDDY_FREE;
@@ -281,6 +285,9 @@ static unsigned int __gpu_buddy_free(struct gpu_buddy *mm,
if (force_merge && gpu_buddy_block_is_clear(buddy))
mm->clear_avail -= gpu_buddy_block_size(mm, buddy);
+ if (gpu_buddy_block_is_allocated(block))
+ mm->used_scoreboard[gpu_buddy_block_order(block)]--;
+
gpu_block_free(mm, block);
gpu_block_free(mm, buddy);
@@ -398,11 +405,17 @@ int gpu_buddy_init(struct gpu_buddy *mm, u64 size, u64 chunk_size)
if (!mm->free_scoreboard)
return -ENOMEM;
+ mm->used_scoreboard = kcalloc(mm->max_order + 1,
+ sizeof(*mm->used_scoreboard),
+ GFP_KERNEL);
+ if (!mm->used_scoreboard)
+ goto out_free_free_scoreboard;
+
mm->free_trees = kmalloc_array(GPU_BUDDY_MAX_FREE_TREES,
sizeof(*mm->free_trees),
GFP_KERNEL);
if (!mm->free_trees)
- goto out_free_scoreboard;
+ goto out_free_used_scoreboard;
for_each_free_tree(i) {
mm->free_trees[i] = kmalloc_array(mm->max_order + 1,
@@ -464,7 +477,9 @@ int gpu_buddy_init(struct gpu_buddy *mm, u64 size, u64 chunk_size)
while (i--)
kfree(mm->free_trees[i]);
kfree(mm->free_trees);
-out_free_scoreboard:
+out_free_used_scoreboard:
+ kfree(mm->used_scoreboard);
+out_free_free_scoreboard:
kfree(mm->free_scoreboard);
return -ENOMEM;
}
@@ -505,6 +520,7 @@ void gpu_buddy_fini(struct gpu_buddy *mm)
kfree(mm->free_trees);
kfree(mm->roots);
kfree(mm->free_scoreboard);
+ kfree(mm->used_scoreboard);
}
EXPORT_SYMBOL(gpu_buddy_fini);
@@ -1519,15 +1535,18 @@ void gpu_buddy_print(struct gpu_buddy *mm)
mm->chunk_size >> 10, mm->size >> 20, mm->avail >> 20, mm->clear_avail >> 20);
for (order = mm->max_order; order >= 0; order--) {
- u64 count = mm->free_scoreboard[order];
- u64 free = count * (mm->chunk_size << order);
-
- if (free < SZ_1M)
- pr_info("order-%2d free: %8llu KiB, blocks: %llu\n",
- order, free >> 10, count);
+ u64 free_count = mm->free_scoreboard[order];
+ u64 used_count = mm->used_scoreboard[order];
+ u64 block_size = mm->chunk_size << order;
+ u64 free = free_count * block_size;
+ u64 used = used_count * block_size;
+
+ if (block_size < SZ_1M)
+ pr_info("order-%2d free: %8llu KiB, used: %8llu KiB, free_blocks: %llu, used_blocks: %llu\n",
+ order, free >> 10, used >> 10, free_count, used_count);
else
- pr_info("order-%2d free: %8llu MiB, blocks: %llu\n",
- order, free >> 20, count);
+ pr_info("order-%2d free: %8llu MiB, used: %8llu MiB, free_blocks: %llu, used_blocks: %llu\n",
+ order, free >> 20, used >> 20, free_count, used_count);
}
}
EXPORT_SYMBOL(gpu_buddy_print);
diff --git a/drivers/gpu/drm/drm_buddy.c b/drivers/gpu/drm/drm_buddy.c
index eef995e08a37..1536e59c6fe7 100644
--- a/drivers/gpu/drm/drm_buddy.c
+++ b/drivers/gpu/drm/drm_buddy.c
@@ -47,17 +47,23 @@ void drm_buddy_print(struct gpu_buddy *mm, struct drm_printer *p)
mm->chunk_size >> 10, mm->size >> 20, mm->avail >> 20, mm->clear_avail >> 20);
for (order = mm->max_order; order >= 0; order--) {
- u64 count = mm->free_scoreboard[order];
- u64 free = count * (mm->chunk_size << order);
+ u64 free_count = mm->free_scoreboard[order];
+ u64 used_count = mm->used_scoreboard[order];
+ u64 block_size = mm->chunk_size << order;
+ u64 free = free_count * block_size;
+ u64 used = used_count * block_size;
drm_printf(p, "order-%2d ", order);
- if (free < SZ_1M)
- drm_printf(p, "free: %8llu KiB", free >> 10);
+ if (block_size < SZ_1M)
+ drm_printf(p, "free: %8llu KiB, used: %8llu KiB",
+ free >> 10, used >> 10);
else
- drm_printf(p, "free: %8llu MiB", free >> 20);
+ drm_printf(p, "free: %8llu MiB, used: %8llu MiB",
+ free >> 20, used >> 20);
- drm_printf(p, ", blocks: %llu\n", count);
+ drm_printf(p, ", free_blocks: %llu, used_blocks: %llu\n",
+ free_count, used_count);
}
}
EXPORT_SYMBOL(drm_buddy_print);
diff --git a/include/linux/gpu_buddy.h b/include/linux/gpu_buddy.h
index a28f7d7637ca..e037714563d8 100644
--- a/include/linux/gpu_buddy.h
+++ b/include/linux/gpu_buddy.h
@@ -180,6 +180,14 @@ struct gpu_buddy {
* called on a free block.
*/
u64 *free_scoreboard;
+ /*
+ * Per-order used block scoreboard: used_scoreboard[order] holds the
+ * number of blocks of that order currently in the allocated state.
+ * Incremented in mark_allocated(), decremented in mark_free() (guarded
+ * by gpu_buddy_block_is_allocated()) and in __gpu_buddy_free() when an
+ * allocated block is consumed directly during buddy coalescing.
+ */
+ u64 *used_scoreboard;
/* public: */
unsigned int n_roots;
unsigned int max_order;
--
2.43.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* ✗ CI.checkpatch: warning for gpu/buddy: Per-order free and used block scoreboards (rev2)
2026-05-11 16:41 [PATCH v2 0/3] gpu/buddy: Per-order free and used block scoreboards Francois Dugast
` (2 preceding siblings ...)
2026-05-11 16:41 ` [PATCH v2 3/3] gpu/buddy: Track per-order used " Francois Dugast
@ 2026-05-11 23:29 ` Patchwork
2026-05-11 23:30 ` ✓ CI.KUnit: success " Patchwork
` (6 subsequent siblings)
10 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-05-11 23:29 UTC (permalink / raw)
To: Francois Dugast; +Cc: intel-xe
== Series Details ==
Series: gpu/buddy: Per-order free and used block scoreboards (rev2)
URL : https://patchwork.freedesktop.org/series/165914/
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
061140b9bc586ae7f40abc1249c97e1cc72d1b9d
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 8694a30afb253f15368f2ae4a000b66023e16f45
Author: Francois Dugast <francois.dugast@intel.com>
Date: Mon May 11 18:41:06 2026 +0200
gpu/buddy: Track per-order used blocks with a scoreboard
Extend the scoreboard approach from the previous commit to used blocks,
so drm_buddy_print() can report per-order allocation pressure in O(1).
Unlike free blocks, an allocated block can leave the allocated state
through mark_free() (normal free and gpu_buddy_block_trim()) or be
consumed directly by gpu_block_free() during coalescing. Both sites are
guarded by gpu_buddy_block_is_allocated() and paired with the increment
in mark_allocated().
v2:
- Update after fix for use-after-free in split_block() call sites
- Change goto label to out_free_used_scoreboard for clarity
- Make drm_buddy_print() and gpu_buddy_print() symmetric for used and
free
Signed-off-by: Francois Dugast <francois.dugast@intel.com>
Assisted-by: GitHub Copilot:claude-sonnet-4.6
+ /mt/dim checkpatch 0ce1c813197dfbe15ff14143da97ec11161e1795 drm-intel
32f374c49e1e gpu/buddy: Fix use-after-free in split_block() call sites
-:24: WARNING:BAD_REPORTED_BY_LINK: Reported-by: should be immediately followed by Closes: with a URL to the report
#24:
Reported-by: Sashiko <sashiko-bot@kernel.org>
Signed-off-by: Francois Dugast <francois.dugast@intel.com>
-:26: WARNING:BAD_SIGN_OFF: Assisted-by expects 'AGENT_NAME:MODEL_VERSION [TOOL1] [TOOL2]' format
#26:
Assisted-by: GitHub Copilot:claude-sonnet-4.6
total: 0 errors, 2 warnings, 0 checks, 44 lines checked
a641bbe6629a gpu/buddy: Track per-order free blocks with a scoreboard
-:25: WARNING:BAD_SIGN_OFF: Assisted-by expects 'AGENT_NAME:MODEL_VERSION [TOOL1] [TOOL2]' format
#25:
Assisted-by: GitHub Copilot:claude-sonnet-4.6
total: 0 errors, 1 warnings, 0 checks, 160 lines checked
8694a30afb25 gpu/buddy: Track per-order used blocks with a scoreboard
-:22: WARNING:BAD_SIGN_OFF: Assisted-by expects 'AGENT_NAME:MODEL_VERSION [TOOL1] [TOOL2]' format
#22:
Assisted-by: GitHub Copilot:claude-sonnet-4.6
total: 0 errors, 1 warnings, 0 checks, 129 lines checked
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ CI.KUnit: success for gpu/buddy: Per-order free and used block scoreboards (rev2)
2026-05-11 16:41 [PATCH v2 0/3] gpu/buddy: Per-order free and used block scoreboards Francois Dugast
` (3 preceding siblings ...)
2026-05-11 23:29 ` ✗ CI.checkpatch: warning for gpu/buddy: Per-order free and used block scoreboards (rev2) Patchwork
@ 2026-05-11 23:30 ` Patchwork
2026-05-12 1:05 ` ✗ Xe.CI.BAT: failure " Patchwork
` (5 subsequent siblings)
10 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-05-11 23:30 UTC (permalink / raw)
To: Francois Dugast; +Cc: intel-xe
== Series Details ==
Series: gpu/buddy: Per-order free and used block scoreboards (rev2)
URL : https://patchwork.freedesktop.org/series/165914/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[23:29:24] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:29:29] 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=25
[23:30:09] Starting KUnit Kernel (1/1)...
[23:30:09] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:30:09] ================== guc_buf (11 subtests) ===================
[23:30:09] [PASSED] test_smallest
[23:30:09] [PASSED] test_largest
[23:30:09] [PASSED] test_granular
[23:30:09] [PASSED] test_unique
[23:30:09] [PASSED] test_overlap
[23:30:09] [PASSED] test_reusable
[23:30:09] [PASSED] test_too_big
[23:30:09] [PASSED] test_flush
[23:30:09] [PASSED] test_lookup
[23:30:09] [PASSED] test_data
[23:30:09] [PASSED] test_class
[23:30:09] ===================== [PASSED] guc_buf =====================
[23:30:09] =================== guc_dbm (7 subtests) ===================
[23:30:09] [PASSED] test_empty
[23:30:09] [PASSED] test_default
[23:30:09] ======================== test_size ========================
[23:30:09] [PASSED] 4
[23:30:09] [PASSED] 8
[23:30:09] [PASSED] 32
[23:30:09] [PASSED] 256
[23:30:09] ==================== [PASSED] test_size ====================
[23:30:09] ======================= test_reuse ========================
[23:30:09] [PASSED] 4
[23:30:09] [PASSED] 8
[23:30:09] [PASSED] 32
[23:30:09] [PASSED] 256
[23:30:09] =================== [PASSED] test_reuse ====================
[23:30:09] =================== test_range_overlap ====================
[23:30:09] [PASSED] 4
[23:30:09] [PASSED] 8
[23:30:09] [PASSED] 32
[23:30:09] [PASSED] 256
[23:30:09] =============== [PASSED] test_range_overlap ================
[23:30:09] =================== test_range_compact ====================
[23:30:09] [PASSED] 4
[23:30:09] [PASSED] 8
[23:30:09] [PASSED] 32
[23:30:09] [PASSED] 256
[23:30:09] =============== [PASSED] test_range_compact ================
[23:30:09] ==================== test_range_spare =====================
[23:30:09] [PASSED] 4
[23:30:09] [PASSED] 8
[23:30:09] [PASSED] 32
[23:30:09] [PASSED] 256
[23:30:09] ================ [PASSED] test_range_spare =================
[23:30:09] ===================== [PASSED] guc_dbm =====================
[23:30:09] =================== guc_idm (6 subtests) ===================
[23:30:09] [PASSED] bad_init
[23:30:09] [PASSED] no_init
[23:30:09] [PASSED] init_fini
[23:30:09] [PASSED] check_used
[23:30:09] [PASSED] check_quota
[23:30:09] [PASSED] check_all
[23:30:09] ===================== [PASSED] guc_idm =====================
[23:30:09] ================== no_relay (3 subtests) ===================
[23:30:09] [PASSED] xe_drops_guc2pf_if_not_ready
[23:30:09] [PASSED] xe_drops_guc2vf_if_not_ready
[23:30:09] [PASSED] xe_rejects_send_if_not_ready
[23:30:09] ==================== [PASSED] no_relay =====================
[23:30:09] ================== pf_relay (14 subtests) ==================
[23:30:09] [PASSED] pf_rejects_guc2pf_too_short
[23:30:09] [PASSED] pf_rejects_guc2pf_too_long
[23:30:09] [PASSED] pf_rejects_guc2pf_no_payload
[23:30:09] [PASSED] pf_fails_no_payload
[23:30:09] [PASSED] pf_fails_bad_origin
[23:30:09] [PASSED] pf_fails_bad_type
[23:30:09] [PASSED] pf_txn_reports_error
[23:30:09] [PASSED] pf_txn_sends_pf2guc
[23:30:09] [PASSED] pf_sends_pf2guc
[23:30:09] [SKIPPED] pf_loopback_nop
[23:30:09] [SKIPPED] pf_loopback_echo
[23:30:09] [SKIPPED] pf_loopback_fail
[23:30:09] [SKIPPED] pf_loopback_busy
[23:30:09] [SKIPPED] pf_loopback_retry
[23:30:09] ==================== [PASSED] pf_relay =====================
[23:30:09] ================== vf_relay (3 subtests) ===================
[23:30:09] [PASSED] vf_rejects_guc2vf_too_short
[23:30:09] [PASSED] vf_rejects_guc2vf_too_long
[23:30:09] [PASSED] vf_rejects_guc2vf_no_payload
[23:30:09] ==================== [PASSED] vf_relay =====================
[23:30:09] ================ pf_gt_config (9 subtests) =================
[23:30:09] [PASSED] fair_contexts_1vf
[23:30:09] [PASSED] fair_doorbells_1vf
[23:30:09] [PASSED] fair_ggtt_1vf
[23:30:09] ====================== fair_vram_1vf ======================
[23:30:09] [PASSED] 3.50 GiB
[23:30:09] [PASSED] 11.5 GiB
[23:30:09] [PASSED] 15.5 GiB
[23:30:09] [PASSED] 31.5 GiB
[23:30:09] [PASSED] 63.5 GiB
[23:30:09] [PASSED] 1.91 GiB
[23:30:09] ================== [PASSED] fair_vram_1vf ==================
[23:30:09] ================ fair_vram_1vf_admin_only =================
[23:30:09] [PASSED] 3.50 GiB
[23:30:09] [PASSED] 11.5 GiB
[23:30:09] [PASSED] 15.5 GiB
[23:30:09] [PASSED] 31.5 GiB
[23:30:09] [PASSED] 63.5 GiB
[23:30:09] [PASSED] 1.91 GiB
[23:30:09] ============ [PASSED] fair_vram_1vf_admin_only =============
[23:30:09] ====================== fair_contexts ======================
[23:30:09] [PASSED] 1 VF
[23:30:09] [PASSED] 2 VFs
[23:30:09] [PASSED] 3 VFs
[23:30:09] [PASSED] 4 VFs
[23:30:09] [PASSED] 5 VFs
[23:30:09] [PASSED] 6 VFs
[23:30:09] [PASSED] 7 VFs
[23:30:09] [PASSED] 8 VFs
[23:30:09] [PASSED] 9 VFs
[23:30:09] [PASSED] 10 VFs
[23:30:09] [PASSED] 11 VFs
[23:30:09] [PASSED] 12 VFs
[23:30:09] [PASSED] 13 VFs
[23:30:09] [PASSED] 14 VFs
[23:30:09] [PASSED] 15 VFs
[23:30:09] [PASSED] 16 VFs
[23:30:09] [PASSED] 17 VFs
[23:30:09] [PASSED] 18 VFs
[23:30:09] [PASSED] 19 VFs
[23:30:09] [PASSED] 20 VFs
[23:30:09] [PASSED] 21 VFs
[23:30:09] [PASSED] 22 VFs
[23:30:09] [PASSED] 23 VFs
[23:30:09] [PASSED] 24 VFs
[23:30:09] [PASSED] 25 VFs
[23:30:09] [PASSED] 26 VFs
[23:30:09] [PASSED] 27 VFs
[23:30:09] [PASSED] 28 VFs
[23:30:09] [PASSED] 29 VFs
[23:30:09] [PASSED] 30 VFs
[23:30:09] [PASSED] 31 VFs
[23:30:09] [PASSED] 32 VFs
[23:30:09] [PASSED] 33 VFs
[23:30:09] [PASSED] 34 VFs
[23:30:09] [PASSED] 35 VFs
[23:30:09] [PASSED] 36 VFs
[23:30:09] [PASSED] 37 VFs
[23:30:09] [PASSED] 38 VFs
[23:30:09] [PASSED] 39 VFs
[23:30:09] [PASSED] 40 VFs
[23:30:09] [PASSED] 41 VFs
[23:30:09] [PASSED] 42 VFs
[23:30:09] [PASSED] 43 VFs
[23:30:09] [PASSED] 44 VFs
[23:30:09] [PASSED] 45 VFs
[23:30:09] [PASSED] 46 VFs
[23:30:09] [PASSED] 47 VFs
[23:30:09] [PASSED] 48 VFs
[23:30:09] [PASSED] 49 VFs
[23:30:09] [PASSED] 50 VFs
[23:30:09] [PASSED] 51 VFs
[23:30:09] [PASSED] 52 VFs
[23:30:09] [PASSED] 53 VFs
[23:30:09] [PASSED] 54 VFs
[23:30:09] [PASSED] 55 VFs
[23:30:09] [PASSED] 56 VFs
[23:30:09] [PASSED] 57 VFs
[23:30:09] [PASSED] 58 VFs
[23:30:09] [PASSED] 59 VFs
[23:30:09] [PASSED] 60 VFs
[23:30:09] [PASSED] 61 VFs
[23:30:09] [PASSED] 62 VFs
[23:30:09] [PASSED] 63 VFs
[23:30:09] ================== [PASSED] fair_contexts ==================
[23:30:09] ===================== fair_doorbells ======================
[23:30:09] [PASSED] 1 VF
[23:30:09] [PASSED] 2 VFs
[23:30:09] [PASSED] 3 VFs
[23:30:09] [PASSED] 4 VFs
[23:30:09] [PASSED] 5 VFs
[23:30:09] [PASSED] 6 VFs
[23:30:09] [PASSED] 7 VFs
[23:30:09] [PASSED] 8 VFs
[23:30:09] [PASSED] 9 VFs
[23:30:09] [PASSED] 10 VFs
[23:30:09] [PASSED] 11 VFs
[23:30:09] [PASSED] 12 VFs
[23:30:09] [PASSED] 13 VFs
[23:30:09] [PASSED] 14 VFs
[23:30:09] [PASSED] 15 VFs
[23:30:09] [PASSED] 16 VFs
[23:30:09] [PASSED] 17 VFs
[23:30:09] [PASSED] 18 VFs
[23:30:09] [PASSED] 19 VFs
[23:30:09] [PASSED] 20 VFs
[23:30:09] [PASSED] 21 VFs
[23:30:09] [PASSED] 22 VFs
[23:30:09] [PASSED] 23 VFs
[23:30:09] [PASSED] 24 VFs
[23:30:09] [PASSED] 25 VFs
[23:30:09] [PASSED] 26 VFs
[23:30:09] [PASSED] 27 VFs
[23:30:09] [PASSED] 28 VFs
[23:30:09] [PASSED] 29 VFs
[23:30:09] [PASSED] 30 VFs
[23:30:09] [PASSED] 31 VFs
[23:30:09] [PASSED] 32 VFs
[23:30:09] [PASSED] 33 VFs
[23:30:09] [PASSED] 34 VFs
[23:30:09] [PASSED] 35 VFs
[23:30:09] [PASSED] 36 VFs
[23:30:09] [PASSED] 37 VFs
[23:30:09] [PASSED] 38 VFs
[23:30:09] [PASSED] 39 VFs
[23:30:09] [PASSED] 40 VFs
[23:30:09] [PASSED] 41 VFs
[23:30:09] [PASSED] 42 VFs
[23:30:09] [PASSED] 43 VFs
[23:30:09] [PASSED] 44 VFs
[23:30:09] [PASSED] 45 VFs
[23:30:09] [PASSED] 46 VFs
[23:30:09] [PASSED] 47 VFs
[23:30:09] [PASSED] 48 VFs
[23:30:09] [PASSED] 49 VFs
[23:30:09] [PASSED] 50 VFs
[23:30:09] [PASSED] 51 VFs
[23:30:09] [PASSED] 52 VFs
[23:30:09] [PASSED] 53 VFs
[23:30:09] [PASSED] 54 VFs
[23:30:09] [PASSED] 55 VFs
[23:30:09] [PASSED] 56 VFs
[23:30:09] [PASSED] 57 VFs
[23:30:09] [PASSED] 58 VFs
[23:30:09] [PASSED] 59 VFs
[23:30:09] [PASSED] 60 VFs
[23:30:09] [PASSED] 61 VFs
[23:30:09] [PASSED] 62 VFs
[23:30:09] [PASSED] 63 VFs
[23:30:09] ================= [PASSED] fair_doorbells ==================
[23:30:09] ======================== fair_ggtt ========================
[23:30:09] [PASSED] 1 VF
[23:30:09] [PASSED] 2 VFs
[23:30:09] [PASSED] 3 VFs
[23:30:09] [PASSED] 4 VFs
[23:30:09] [PASSED] 5 VFs
[23:30:09] [PASSED] 6 VFs
[23:30:09] [PASSED] 7 VFs
[23:30:09] [PASSED] 8 VFs
[23:30:09] [PASSED] 9 VFs
[23:30:09] [PASSED] 10 VFs
[23:30:09] [PASSED] 11 VFs
[23:30:09] [PASSED] 12 VFs
[23:30:09] [PASSED] 13 VFs
[23:30:09] [PASSED] 14 VFs
[23:30:09] [PASSED] 15 VFs
[23:30:09] [PASSED] 16 VFs
[23:30:09] [PASSED] 17 VFs
[23:30:09] [PASSED] 18 VFs
[23:30:09] [PASSED] 19 VFs
[23:30:09] [PASSED] 20 VFs
[23:30:09] [PASSED] 21 VFs
[23:30:09] [PASSED] 22 VFs
[23:30:09] [PASSED] 23 VFs
[23:30:09] [PASSED] 24 VFs
[23:30:09] [PASSED] 25 VFs
[23:30:09] [PASSED] 26 VFs
[23:30:09] [PASSED] 27 VFs
[23:30:09] [PASSED] 28 VFs
[23:30:09] [PASSED] 29 VFs
[23:30:09] [PASSED] 30 VFs
[23:30:09] [PASSED] 31 VFs
[23:30:09] [PASSED] 32 VFs
[23:30:09] [PASSED] 33 VFs
[23:30:09] [PASSED] 34 VFs
[23:30:09] [PASSED] 35 VFs
[23:30:09] [PASSED] 36 VFs
[23:30:09] [PASSED] 37 VFs
[23:30:09] [PASSED] 38 VFs
[23:30:09] [PASSED] 39 VFs
[23:30:09] [PASSED] 40 VFs
[23:30:09] [PASSED] 41 VFs
[23:30:09] [PASSED] 42 VFs
[23:30:09] [PASSED] 43 VFs
[23:30:09] [PASSED] 44 VFs
[23:30:09] [PASSED] 45 VFs
[23:30:09] [PASSED] 46 VFs
[23:30:09] [PASSED] 47 VFs
[23:30:09] [PASSED] 48 VFs
[23:30:09] [PASSED] 49 VFs
[23:30:09] [PASSED] 50 VFs
[23:30:09] [PASSED] 51 VFs
[23:30:09] [PASSED] 52 VFs
[23:30:09] [PASSED] 53 VFs
[23:30:09] [PASSED] 54 VFs
[23:30:09] [PASSED] 55 VFs
[23:30:09] [PASSED] 56 VFs
[23:30:09] [PASSED] 57 VFs
[23:30:09] [PASSED] 58 VFs
[23:30:09] [PASSED] 59 VFs
[23:30:09] [PASSED] 60 VFs
[23:30:09] [PASSED] 61 VFs
[23:30:09] [PASSED] 62 VFs
[23:30:09] [PASSED] 63 VFs
[23:30:09] ==================== [PASSED] fair_ggtt ====================
[23:30:09] ======================== fair_vram ========================
[23:30:09] [PASSED] 1 VF
[23:30:09] [PASSED] 2 VFs
[23:30:09] [PASSED] 3 VFs
[23:30:09] [PASSED] 4 VFs
[23:30:09] [PASSED] 5 VFs
[23:30:09] [PASSED] 6 VFs
[23:30:09] [PASSED] 7 VFs
[23:30:09] [PASSED] 8 VFs
[23:30:09] [PASSED] 9 VFs
[23:30:09] [PASSED] 10 VFs
[23:30:09] [PASSED] 11 VFs
[23:30:09] [PASSED] 12 VFs
[23:30:09] [PASSED] 13 VFs
[23:30:09] [PASSED] 14 VFs
[23:30:09] [PASSED] 15 VFs
[23:30:09] [PASSED] 16 VFs
[23:30:09] [PASSED] 17 VFs
[23:30:09] [PASSED] 18 VFs
[23:30:09] [PASSED] 19 VFs
[23:30:09] [PASSED] 20 VFs
[23:30:09] [PASSED] 21 VFs
[23:30:09] [PASSED] 22 VFs
[23:30:09] [PASSED] 23 VFs
[23:30:09] [PASSED] 24 VFs
[23:30:09] [PASSED] 25 VFs
[23:30:09] [PASSED] 26 VFs
[23:30:09] [PASSED] 27 VFs
[23:30:09] [PASSED] 28 VFs
[23:30:09] [PASSED] 29 VFs
[23:30:09] [PASSED] 30 VFs
[23:30:09] [PASSED] 31 VFs
[23:30:09] [PASSED] 32 VFs
[23:30:09] [PASSED] 33 VFs
[23:30:09] [PASSED] 34 VFs
[23:30:09] [PASSED] 35 VFs
[23:30:09] [PASSED] 36 VFs
[23:30:09] [PASSED] 37 VFs
[23:30:09] [PASSED] 38 VFs
[23:30:09] [PASSED] 39 VFs
[23:30:09] [PASSED] 40 VFs
[23:30:09] [PASSED] 41 VFs
[23:30:09] [PASSED] 42 VFs
[23:30:09] [PASSED] 43 VFs
[23:30:09] [PASSED] 44 VFs
[23:30:09] [PASSED] 45 VFs
[23:30:09] [PASSED] 46 VFs
[23:30:09] [PASSED] 47 VFs
[23:30:09] [PASSED] 48 VFs
[23:30:09] [PASSED] 49 VFs
[23:30:09] [PASSED] 50 VFs
[23:30:09] [PASSED] 51 VFs
[23:30:09] [PASSED] 52 VFs
[23:30:09] [PASSED] 53 VFs
[23:30:09] [PASSED] 54 VFs
[23:30:09] [PASSED] 55 VFs
[23:30:09] [PASSED] 56 VFs
[23:30:09] [PASSED] 57 VFs
[23:30:09] [PASSED] 58 VFs
[23:30:09] [PASSED] 59 VFs
[23:30:09] [PASSED] 60 VFs
[23:30:09] [PASSED] 61 VFs
[23:30:09] [PASSED] 62 VFs
[23:30:09] [PASSED] 63 VFs
[23:30:09] ==================== [PASSED] fair_vram ====================
[23:30:09] ================== [PASSED] pf_gt_config ===================
[23:30:09] ===================== lmtt (1 subtest) =====================
[23:30:09] ======================== test_ops =========================
[23:30:09] [PASSED] 2-level
[23:30:09] [PASSED] multi-level
[23:30:09] ==================== [PASSED] test_ops =====================
[23:30:09] ====================== [PASSED] lmtt =======================
[23:30:09] ================= pf_service (11 subtests) =================
[23:30:09] [PASSED] pf_negotiate_any
[23:30:09] [PASSED] pf_negotiate_base_match
[23:30:09] [PASSED] pf_negotiate_base_newer
[23:30:09] [PASSED] pf_negotiate_base_next
[23:30:09] [SKIPPED] pf_negotiate_base_older
[23:30:09] [PASSED] pf_negotiate_base_prev
[23:30:09] [PASSED] pf_negotiate_latest_match
[23:30:09] [PASSED] pf_negotiate_latest_newer
[23:30:09] [PASSED] pf_negotiate_latest_next
[23:30:09] [SKIPPED] pf_negotiate_latest_older
[23:30:09] [SKIPPED] pf_negotiate_latest_prev
[23:30:09] =================== [PASSED] pf_service ====================
[23:30:09] ================= xe_guc_g2g (2 subtests) ==================
[23:30:09] ============== xe_live_guc_g2g_kunit_default ==============
[23:30:09] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[23:30:09] ============== xe_live_guc_g2g_kunit_allmem ===============
[23:30:09] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[23:30:09] =================== [SKIPPED] xe_guc_g2g ===================
[23:30:09] =================== xe_mocs (2 subtests) ===================
[23:30:09] ================ xe_live_mocs_kernel_kunit ================
[23:30:09] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[23:30:09] ================ xe_live_mocs_reset_kunit =================
[23:30:09] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[23:30:09] ==================== [SKIPPED] xe_mocs =====================
[23:30:09] ================= xe_migrate (2 subtests) ==================
[23:30:09] ================= xe_migrate_sanity_kunit =================
[23:30:09] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[23:30:09] ================== xe_validate_ccs_kunit ==================
[23:30:09] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[23:30:09] =================== [SKIPPED] xe_migrate ===================
[23:30:09] ================== xe_dma_buf (1 subtest) ==================
[23:30:09] ==================== xe_dma_buf_kunit =====================
[23:30:09] ================ [SKIPPED] xe_dma_buf_kunit ================
[23:30:09] =================== [SKIPPED] xe_dma_buf ===================
[23:30:09] ================= xe_bo_shrink (1 subtest) =================
[23:30:09] =================== xe_bo_shrink_kunit ====================
[23:30:09] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[23:30:09] ================== [SKIPPED] xe_bo_shrink ==================
[23:30:09] ==================== xe_bo (2 subtests) ====================
[23:30:09] ================== xe_ccs_migrate_kunit ===================
[23:30:09] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[23:30:09] ==================== xe_bo_evict_kunit ====================
[23:30:09] =============== [SKIPPED] xe_bo_evict_kunit ================
[23:30:09] ===================== [SKIPPED] xe_bo ======================
[23:30:09] ==================== args (13 subtests) ====================
[23:30:09] [PASSED] count_args_test
[23:30:09] [PASSED] call_args_example
[23:30:09] [PASSED] call_args_test
[23:30:09] [PASSED] drop_first_arg_example
[23:30:09] [PASSED] drop_first_arg_test
[23:30:09] [PASSED] first_arg_example
[23:30:09] [PASSED] first_arg_test
[23:30:09] [PASSED] last_arg_example
[23:30:09] [PASSED] last_arg_test
[23:30:09] [PASSED] pick_arg_example
[23:30:09] [PASSED] if_args_example
[23:30:09] [PASSED] if_args_test
[23:30:09] [PASSED] sep_comma_example
[23:30:09] ====================== [PASSED] args =======================
[23:30:09] =================== xe_pci (3 subtests) ====================
[23:30:09] ==================== check_graphics_ip ====================
[23:30:09] [PASSED] 12.00 Xe_LP
[23:30:09] [PASSED] 12.10 Xe_LP+
[23:30:09] [PASSED] 12.55 Xe_HPG
[23:30:09] [PASSED] 12.60 Xe_HPC
[23:30:09] [PASSED] 12.70 Xe_LPG
[23:30:09] [PASSED] 12.71 Xe_LPG
[23:30:09] [PASSED] 12.74 Xe_LPG+
[23:30:09] [PASSED] 20.01 Xe2_HPG
[23:30:09] [PASSED] 20.02 Xe2_HPG
[23:30:09] [PASSED] 20.04 Xe2_LPG
[23:30:09] [PASSED] 30.00 Xe3_LPG
[23:30:09] [PASSED] 30.01 Xe3_LPG
[23:30:09] [PASSED] 30.03 Xe3_LPG
[23:30:09] [PASSED] 30.04 Xe3_LPG
[23:30:09] [PASSED] 30.05 Xe3_LPG
[23:30:09] [PASSED] 35.10 Xe3p_LPG
[23:30:09] [PASSED] 35.11 Xe3p_XPC
[23:30:09] ================ [PASSED] check_graphics_ip ================
[23:30:09] ===================== check_media_ip ======================
[23:30:09] [PASSED] 12.00 Xe_M
[23:30:09] [PASSED] 12.55 Xe_HPM
[23:30:09] [PASSED] 13.00 Xe_LPM+
[23:30:09] [PASSED] 13.01 Xe2_HPM
[23:30:09] [PASSED] 20.00 Xe2_LPM
[23:30:09] [PASSED] 30.00 Xe3_LPM
[23:30:09] [PASSED] 30.02 Xe3_LPM
[23:30:09] [PASSED] 35.00 Xe3p_LPM
[23:30:09] [PASSED] 35.03 Xe3p_HPM
[23:30:09] ================= [PASSED] check_media_ip ==================
[23:30:09] =================== check_platform_desc ===================
[23:30:09] [PASSED] 0x9A60 (TIGERLAKE)
[23:30:09] [PASSED] 0x9A68 (TIGERLAKE)
[23:30:09] [PASSED] 0x9A70 (TIGERLAKE)
[23:30:09] [PASSED] 0x9A40 (TIGERLAKE)
[23:30:09] [PASSED] 0x9A49 (TIGERLAKE)
[23:30:09] [PASSED] 0x9A59 (TIGERLAKE)
[23:30:09] [PASSED] 0x9A78 (TIGERLAKE)
[23:30:09] [PASSED] 0x9AC0 (TIGERLAKE)
[23:30:09] [PASSED] 0x9AC9 (TIGERLAKE)
[23:30:09] [PASSED] 0x9AD9 (TIGERLAKE)
[23:30:09] [PASSED] 0x9AF8 (TIGERLAKE)
[23:30:09] [PASSED] 0x4C80 (ROCKETLAKE)
[23:30:09] [PASSED] 0x4C8A (ROCKETLAKE)
[23:30:09] [PASSED] 0x4C8B (ROCKETLAKE)
[23:30:09] [PASSED] 0x4C8C (ROCKETLAKE)
[23:30:09] [PASSED] 0x4C90 (ROCKETLAKE)
[23:30:09] [PASSED] 0x4C9A (ROCKETLAKE)
[23:30:09] [PASSED] 0x4680 (ALDERLAKE_S)
[23:30:09] [PASSED] 0x4682 (ALDERLAKE_S)
[23:30:09] [PASSED] 0x4688 (ALDERLAKE_S)
[23:30:09] [PASSED] 0x468A (ALDERLAKE_S)
[23:30:09] [PASSED] 0x468B (ALDERLAKE_S)
[23:30:09] [PASSED] 0x4690 (ALDERLAKE_S)
[23:30:09] [PASSED] 0x4692 (ALDERLAKE_S)
[23:30:09] [PASSED] 0x4693 (ALDERLAKE_S)
[23:30:09] [PASSED] 0x46A0 (ALDERLAKE_P)
[23:30:09] [PASSED] 0x46A1 (ALDERLAKE_P)
[23:30:09] [PASSED] 0x46A2 (ALDERLAKE_P)
[23:30:09] [PASSED] 0x46A3 (ALDERLAKE_P)
[23:30:09] [PASSED] 0x46A6 (ALDERLAKE_P)
[23:30:09] [PASSED] 0x46A8 (ALDERLAKE_P)
[23:30:09] [PASSED] 0x46AA (ALDERLAKE_P)
[23:30:09] [PASSED] 0x462A (ALDERLAKE_P)
[23:30:09] [PASSED] 0x4626 (ALDERLAKE_P)
[23:30:09] [PASSED] 0x4628 (ALDERLAKE_P)
[23:30:09] [PASSED] 0x46B0 (ALDERLAKE_P)
[23:30:09] [PASSED] 0x46B1 (ALDERLAKE_P)
[23:30:09] [PASSED] 0x46B2 (ALDERLAKE_P)
[23:30:09] [PASSED] 0x46B3 (ALDERLAKE_P)
[23:30:09] [PASSED] 0x46C0 (ALDERLAKE_P)
[23:30:09] [PASSED] 0x46C1 (ALDERLAKE_P)
[23:30:09] [PASSED] 0x46C2 (ALDERLAKE_P)
[23:30:09] [PASSED] 0x46C3 (ALDERLAKE_P)
[23:30:09] [PASSED] 0x46D0 (ALDERLAKE_N)
[23:30:09] [PASSED] 0x46D1 (ALDERLAKE_N)
[23:30:09] [PASSED] 0x46D2 (ALDERLAKE_N)
[23:30:09] [PASSED] 0x46D3 (ALDERLAKE_N)
[23:30:09] [PASSED] 0x46D4 (ALDERLAKE_N)
[23:30:09] [PASSED] 0xA721 (ALDERLAKE_P)
[23:30:09] [PASSED] 0xA7A1 (ALDERLAKE_P)
[23:30:09] [PASSED] 0xA7A9 (ALDERLAKE_P)
[23:30:09] [PASSED] 0xA7AC (ALDERLAKE_P)
[23:30:09] [PASSED] 0xA7AD (ALDERLAKE_P)
[23:30:09] [PASSED] 0xA720 (ALDERLAKE_P)
[23:30:09] [PASSED] 0xA7A0 (ALDERLAKE_P)
[23:30:09] [PASSED] 0xA7A8 (ALDERLAKE_P)
[23:30:09] [PASSED] 0xA7AA (ALDERLAKE_P)
[23:30:09] [PASSED] 0xA7AB (ALDERLAKE_P)
[23:30:09] [PASSED] 0xA780 (ALDERLAKE_S)
[23:30:09] [PASSED] 0xA781 (ALDERLAKE_S)
[23:30:09] [PASSED] 0xA782 (ALDERLAKE_S)
[23:30:09] [PASSED] 0xA783 (ALDERLAKE_S)
[23:30:09] [PASSED] 0xA788 (ALDERLAKE_S)
[23:30:09] [PASSED] 0xA789 (ALDERLAKE_S)
[23:30:09] [PASSED] 0xA78A (ALDERLAKE_S)
[23:30:09] [PASSED] 0xA78B (ALDERLAKE_S)
[23:30:09] [PASSED] 0x4905 (DG1)
[23:30:09] [PASSED] 0x4906 (DG1)
[23:30:09] [PASSED] 0x4907 (DG1)
[23:30:09] [PASSED] 0x4908 (DG1)
[23:30:09] [PASSED] 0x4909 (DG1)
[23:30:09] [PASSED] 0x56C0 (DG2)
[23:30:09] [PASSED] 0x56C2 (DG2)
[23:30:09] [PASSED] 0x56C1 (DG2)
[23:30:09] [PASSED] 0x7D51 (METEORLAKE)
[23:30:09] [PASSED] 0x7DD1 (METEORLAKE)
[23:30:09] [PASSED] 0x7D41 (METEORLAKE)
[23:30:09] [PASSED] 0x7D67 (METEORLAKE)
[23:30:09] [PASSED] 0xB640 (METEORLAKE)
[23:30:09] [PASSED] 0x56A0 (DG2)
[23:30:09] [PASSED] 0x56A1 (DG2)
[23:30:09] [PASSED] 0x56A2 (DG2)
[23:30:09] [PASSED] 0x56BE (DG2)
[23:30:09] [PASSED] 0x56BF (DG2)
[23:30:09] [PASSED] 0x5690 (DG2)
[23:30:09] [PASSED] 0x5691 (DG2)
[23:30:09] [PASSED] 0x5692 (DG2)
[23:30:09] [PASSED] 0x56A5 (DG2)
[23:30:09] [PASSED] 0x56A6 (DG2)
[23:30:09] [PASSED] 0x56B0 (DG2)
[23:30:09] [PASSED] 0x56B1 (DG2)
[23:30:09] [PASSED] 0x56BA (DG2)
[23:30:09] [PASSED] 0x56BB (DG2)
[23:30:09] [PASSED] 0x56BC (DG2)
[23:30:09] [PASSED] 0x56BD (DG2)
[23:30:09] [PASSED] 0x5693 (DG2)
[23:30:09] [PASSED] 0x5694 (DG2)
[23:30:09] [PASSED] 0x5695 (DG2)
[23:30:09] [PASSED] 0x56A3 (DG2)
[23:30:09] [PASSED] 0x56A4 (DG2)
[23:30:09] [PASSED] 0x56B2 (DG2)
[23:30:09] [PASSED] 0x56B3 (DG2)
[23:30:09] [PASSED] 0x5696 (DG2)
[23:30:09] [PASSED] 0x5697 (DG2)
[23:30:09] [PASSED] 0xB69 (PVC)
[23:30:09] [PASSED] 0xB6E (PVC)
[23:30:09] [PASSED] 0xBD4 (PVC)
[23:30:09] [PASSED] 0xBD5 (PVC)
[23:30:09] [PASSED] 0xBD6 (PVC)
[23:30:09] [PASSED] 0xBD7 (PVC)
[23:30:09] [PASSED] 0xBD8 (PVC)
[23:30:09] [PASSED] 0xBD9 (PVC)
[23:30:09] [PASSED] 0xBDA (PVC)
[23:30:09] [PASSED] 0xBDB (PVC)
[23:30:09] [PASSED] 0xBE0 (PVC)
[23:30:09] [PASSED] 0xBE1 (PVC)
[23:30:09] [PASSED] 0xBE5 (PVC)
[23:30:09] [PASSED] 0x7D40 (METEORLAKE)
[23:30:09] [PASSED] 0x7D45 (METEORLAKE)
[23:30:09] [PASSED] 0x7D55 (METEORLAKE)
[23:30:09] [PASSED] 0x7D60 (METEORLAKE)
[23:30:09] [PASSED] 0x7DD5 (METEORLAKE)
[23:30:09] [PASSED] 0x6420 (LUNARLAKE)
[23:30:09] [PASSED] 0x64A0 (LUNARLAKE)
[23:30:09] [PASSED] 0x64B0 (LUNARLAKE)
[23:30:09] [PASSED] 0xE202 (BATTLEMAGE)
[23:30:09] [PASSED] 0xE209 (BATTLEMAGE)
[23:30:09] [PASSED] 0xE20B (BATTLEMAGE)
[23:30:09] [PASSED] 0xE20C (BATTLEMAGE)
[23:30:09] [PASSED] 0xE20D (BATTLEMAGE)
[23:30:09] [PASSED] 0xE210 (BATTLEMAGE)
[23:30:09] [PASSED] 0xE211 (BATTLEMAGE)
[23:30:09] [PASSED] 0xE212 (BATTLEMAGE)
[23:30:09] [PASSED] 0xE216 (BATTLEMAGE)
[23:30:09] [PASSED] 0xE220 (BATTLEMAGE)
[23:30:09] [PASSED] 0xE221 (BATTLEMAGE)
[23:30:09] [PASSED] 0xE222 (BATTLEMAGE)
[23:30:09] [PASSED] 0xE223 (BATTLEMAGE)
[23:30:09] [PASSED] 0xB080 (PANTHERLAKE)
[23:30:09] [PASSED] 0xB081 (PANTHERLAKE)
[23:30:09] [PASSED] 0xB082 (PANTHERLAKE)
[23:30:09] [PASSED] 0xB083 (PANTHERLAKE)
[23:30:09] [PASSED] 0xB084 (PANTHERLAKE)
[23:30:09] [PASSED] 0xB085 (PANTHERLAKE)
[23:30:09] [PASSED] 0xB086 (PANTHERLAKE)
[23:30:09] [PASSED] 0xB087 (PANTHERLAKE)
[23:30:09] [PASSED] 0xB08F (PANTHERLAKE)
[23:30:09] [PASSED] 0xB090 (PANTHERLAKE)
[23:30:09] [PASSED] 0xB0A0 (PANTHERLAKE)
[23:30:09] [PASSED] 0xB0B0 (PANTHERLAKE)
[23:30:09] [PASSED] 0xFD80 (PANTHERLAKE)
[23:30:09] [PASSED] 0xFD81 (PANTHERLAKE)
[23:30:09] [PASSED] 0xD740 (NOVALAKE_S)
[23:30:09] [PASSED] 0xD741 (NOVALAKE_S)
[23:30:09] [PASSED] 0xD742 (NOVALAKE_S)
[23:30:09] [PASSED] 0xD743 (NOVALAKE_S)
[23:30:09] [PASSED] 0xD744 (NOVALAKE_S)
[23:30:09] [PASSED] 0xD745 (NOVALAKE_S)
[23:30:09] [PASSED] 0x674C (CRESCENTISLAND)
[23:30:09] [PASSED] 0x674D (CRESCENTISLAND)
[23:30:09] [PASSED] 0x674E (CRESCENTISLAND)
[23:30:09] [PASSED] 0x674F (CRESCENTISLAND)
[23:30:09] [PASSED] 0x6750 (CRESCENTISLAND)
[23:30:09] [PASSED] 0xD750 (NOVALAKE_P)
[23:30:09] [PASSED] 0xD751 (NOVALAKE_P)
[23:30:09] [PASSED] 0xD752 (NOVALAKE_P)
[23:30:09] [PASSED] 0xD753 (NOVALAKE_P)
[23:30:09] [PASSED] 0xD754 (NOVALAKE_P)
[23:30:09] [PASSED] 0xD755 (NOVALAKE_P)
[23:30:09] [PASSED] 0xD756 (NOVALAKE_P)
[23:30:09] [PASSED] 0xD757 (NOVALAKE_P)
[23:30:09] [PASSED] 0xD75F (NOVALAKE_P)
[23:30:09] =============== [PASSED] check_platform_desc ===============
[23:30:09] ===================== [PASSED] xe_pci ======================
[23:30:09] =================== xe_rtp (2 subtests) ====================
[23:30:09] =============== xe_rtp_process_to_sr_tests ================
[23:30:09] [PASSED] coalesce-same-reg
[23:30:09] [PASSED] no-match-no-add
[23:30:09] [PASSED] match-or
[23:30:09] [PASSED] match-or-xfail
[23:30:09] [PASSED] no-match-no-add-multiple-rules
[23:30:09] [PASSED] two-regs-two-entries
[23:30:09] [PASSED] clr-one-set-other
[23:30:09] [PASSED] set-field
[23:30:09] [PASSED] conflict-duplicate
[23:30:09] [PASSED] conflict-not-disjoint
[23:30:09] [PASSED] conflict-reg-type
[23:30:09] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[23:30:09] ================== xe_rtp_process_tests ===================
[23:30:09] [PASSED] active1
[23:30:09] [PASSED] active2
[23:30:09] [PASSED] active-inactive
[23:30:09] [PASSED] inactive-active
[23:30:09] [PASSED] inactive-1st_or_active-inactive
[23:30:09] [PASSED] inactive-2nd_or_active-inactive
[23:30:09] [PASSED] inactive-last_or_active-inactive
[23:30:09] [PASSED] inactive-no_or_active-inactive
[23:30:09] ============== [PASSED] xe_rtp_process_tests ===============
[23:30:09] ===================== [PASSED] xe_rtp ======================
[23:30:09] ==================== xe_wa (1 subtest) =====================
[23:30:09] ======================== xe_wa_gt =========================
[23:30:09] [PASSED] TIGERLAKE B0
[23:30:09] [PASSED] DG1 A0
[23:30:09] [PASSED] DG1 B0
[23:30:09] [PASSED] ALDERLAKE_S A0
[23:30:09] [PASSED] ALDERLAKE_S B0
[23:30:09] [PASSED] ALDERLAKE_S C0
[23:30:09] [PASSED] ALDERLAKE_S D0
[23:30:09] [PASSED] ALDERLAKE_P A0
[23:30:09] [PASSED] ALDERLAKE_P B0
[23:30:09] [PASSED] ALDERLAKE_P C0
[23:30:09] [PASSED] ALDERLAKE_S RPLS D0
[23:30:09] [PASSED] ALDERLAKE_P RPLU E0
[23:30:09] [PASSED] DG2 G10 C0
[23:30:09] [PASSED] DG2 G11 B1
[23:30:09] [PASSED] DG2 G12 A1
[23:30:09] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[23:30:09] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[23:30:09] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[23:30:09] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[23:30:09] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[23:30:09] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[23:30:09] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[23:30:09] ==================== [PASSED] xe_wa_gt =====================
[23:30:09] ====================== [PASSED] xe_wa ======================
[23:30:09] ============================================================
[23:30:09] Testing complete. Ran 601 tests: passed: 583, skipped: 18
[23:30:10] Elapsed time: 45.424s total, 4.494s configuring, 40.264s building, 0.619s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[23:30:10] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:30:11] 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=25
[23:30:41] Starting KUnit Kernel (1/1)...
[23:30:41] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:30:42] ============ drm_test_pick_cmdline (2 subtests) ============
[23:30:42] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[23:30:42] =============== drm_test_pick_cmdline_named ===============
[23:30:42] [PASSED] NTSC
[23:30:42] [PASSED] NTSC-J
[23:30:42] [PASSED] PAL
[23:30:42] [PASSED] PAL-M
[23:30:42] =========== [PASSED] drm_test_pick_cmdline_named ===========
[23:30:42] ============== [PASSED] drm_test_pick_cmdline ==============
[23:30:42] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[23:30:42] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[23:30:42] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[23:30:42] =========== drm_validate_clone_mode (2 subtests) ===========
[23:30:42] ============== drm_test_check_in_clone_mode ===============
[23:30:42] [PASSED] in_clone_mode
[23:30:42] [PASSED] not_in_clone_mode
[23:30:42] ========== [PASSED] drm_test_check_in_clone_mode ===========
[23:30:42] =============== drm_test_check_valid_clones ===============
[23:30:42] [PASSED] not_in_clone_mode
[23:30:42] [PASSED] valid_clone
[23:30:42] [PASSED] invalid_clone
[23:30:42] =========== [PASSED] drm_test_check_valid_clones ===========
[23:30:42] ============= [PASSED] drm_validate_clone_mode =============
[23:30:42] ============= drm_validate_modeset (1 subtest) =============
[23:30:42] [PASSED] drm_test_check_connector_changed_modeset
[23:30:42] ============== [PASSED] drm_validate_modeset ===============
[23:30:42] ====== drm_test_bridge_get_current_state (2 subtests) ======
[23:30:42] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[23:30:42] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[23:30:42] ======== [PASSED] drm_test_bridge_get_current_state ========
[23:30:42] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[23:30:42] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[23:30:42] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[23:30:42] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[23:30:42] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[23:30:42] ============== drm_bridge_alloc (2 subtests) ===============
[23:30:42] [PASSED] drm_test_drm_bridge_alloc_basic
[23:30:42] [PASSED] drm_test_drm_bridge_alloc_get_put
[23:30:42] ================ [PASSED] drm_bridge_alloc =================
[23:30:42] ============= drm_cmdline_parser (40 subtests) =============
[23:30:42] [PASSED] drm_test_cmdline_force_d_only
[23:30:42] [PASSED] drm_test_cmdline_force_D_only_dvi
[23:30:42] [PASSED] drm_test_cmdline_force_D_only_hdmi
[23:30:42] [PASSED] drm_test_cmdline_force_D_only_not_digital
[23:30:42] [PASSED] drm_test_cmdline_force_e_only
[23:30:42] [PASSED] drm_test_cmdline_res
[23:30:42] [PASSED] drm_test_cmdline_res_vesa
[23:30:42] [PASSED] drm_test_cmdline_res_vesa_rblank
[23:30:42] [PASSED] drm_test_cmdline_res_rblank
[23:30:42] [PASSED] drm_test_cmdline_res_bpp
[23:30:42] [PASSED] drm_test_cmdline_res_refresh
[23:30:42] [PASSED] drm_test_cmdline_res_bpp_refresh
[23:30:42] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[23:30:42] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[23:30:42] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[23:30:42] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[23:30:42] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[23:30:42] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[23:30:42] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[23:30:42] [PASSED] drm_test_cmdline_res_margins_force_on
[23:30:42] [PASSED] drm_test_cmdline_res_vesa_margins
[23:30:42] [PASSED] drm_test_cmdline_name
[23:30:42] [PASSED] drm_test_cmdline_name_bpp
[23:30:42] [PASSED] drm_test_cmdline_name_option
[23:30:42] [PASSED] drm_test_cmdline_name_bpp_option
[23:30:42] [PASSED] drm_test_cmdline_rotate_0
[23:30:42] [PASSED] drm_test_cmdline_rotate_90
[23:30:42] [PASSED] drm_test_cmdline_rotate_180
[23:30:42] [PASSED] drm_test_cmdline_rotate_270
[23:30:42] [PASSED] drm_test_cmdline_hmirror
[23:30:42] [PASSED] drm_test_cmdline_vmirror
[23:30:42] [PASSED] drm_test_cmdline_margin_options
[23:30:42] [PASSED] drm_test_cmdline_multiple_options
[23:30:42] [PASSED] drm_test_cmdline_bpp_extra_and_option
[23:30:42] [PASSED] drm_test_cmdline_extra_and_option
[23:30:42] [PASSED] drm_test_cmdline_freestanding_options
[23:30:42] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[23:30:42] [PASSED] drm_test_cmdline_panel_orientation
[23:30:42] ================ drm_test_cmdline_invalid =================
[23:30:42] [PASSED] margin_only
[23:30:42] [PASSED] interlace_only
[23:30:42] [PASSED] res_missing_x
[23:30:42] [PASSED] res_missing_y
[23:30:42] [PASSED] res_bad_y
[23:30:42] [PASSED] res_missing_y_bpp
[23:30:42] [PASSED] res_bad_bpp
[23:30:42] [PASSED] res_bad_refresh
[23:30:42] [PASSED] res_bpp_refresh_force_on_off
[23:30:42] [PASSED] res_invalid_mode
[23:30:42] [PASSED] res_bpp_wrong_place_mode
[23:30:42] [PASSED] name_bpp_refresh
[23:30:42] [PASSED] name_refresh
[23:30:42] [PASSED] name_refresh_wrong_mode
[23:30:42] [PASSED] name_refresh_invalid_mode
[23:30:42] [PASSED] rotate_multiple
[23:30:42] [PASSED] rotate_invalid_val
[23:30:42] [PASSED] rotate_truncated
[23:30:42] [PASSED] invalid_option
[23:30:42] [PASSED] invalid_tv_option
[23:30:42] [PASSED] truncated_tv_option
[23:30:42] ============ [PASSED] drm_test_cmdline_invalid =============
[23:30:42] =============== drm_test_cmdline_tv_options ===============
[23:30:42] [PASSED] NTSC
[23:30:42] [PASSED] NTSC_443
[23:30:42] [PASSED] NTSC_J
[23:30:42] [PASSED] PAL
[23:30:42] [PASSED] PAL_M
[23:30:42] [PASSED] PAL_N
[23:30:42] [PASSED] SECAM
[23:30:42] [PASSED] MONO_525
[23:30:42] [PASSED] MONO_625
[23:30:42] =========== [PASSED] drm_test_cmdline_tv_options ===========
[23:30:42] =============== [PASSED] drm_cmdline_parser ================
[23:30:42] ========== drmm_connector_hdmi_init (20 subtests) ==========
[23:30:42] [PASSED] drm_test_connector_hdmi_init_valid
[23:30:42] [PASSED] drm_test_connector_hdmi_init_bpc_8
[23:30:42] [PASSED] drm_test_connector_hdmi_init_bpc_10
[23:30:42] [PASSED] drm_test_connector_hdmi_init_bpc_12
[23:30:42] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[23:30:42] [PASSED] drm_test_connector_hdmi_init_bpc_null
[23:30:42] [PASSED] drm_test_connector_hdmi_init_formats_empty
[23:30:42] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[23:30:42] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[23:30:42] [PASSED] supported_formats=0x9 yuv420_allowed=1
[23:30:42] [PASSED] supported_formats=0x9 yuv420_allowed=0
[23:30:42] [PASSED] supported_formats=0x5 yuv420_allowed=1
[23:30:42] [PASSED] supported_formats=0x5 yuv420_allowed=0
[23:30:42] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[23:30:42] [PASSED] drm_test_connector_hdmi_init_null_ddc
[23:30:42] [PASSED] drm_test_connector_hdmi_init_null_product
[23:30:42] [PASSED] drm_test_connector_hdmi_init_null_vendor
[23:30:42] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[23:30:42] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[23:30:42] [PASSED] drm_test_connector_hdmi_init_product_valid
[23:30:42] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[23:30:42] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[23:30:42] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[23:30:42] ========= drm_test_connector_hdmi_init_type_valid =========
[23:30:42] [PASSED] HDMI-A
[23:30:42] [PASSED] HDMI-B
[23:30:42] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[23:30:42] ======== drm_test_connector_hdmi_init_type_invalid ========
[23:30:42] [PASSED] Unknown
[23:30:42] [PASSED] VGA
[23:30:42] [PASSED] DVI-I
[23:30:42] [PASSED] DVI-D
[23:30:42] [PASSED] DVI-A
[23:30:42] [PASSED] Composite
[23:30:42] [PASSED] SVIDEO
[23:30:42] [PASSED] LVDS
[23:30:42] [PASSED] Component
[23:30:42] [PASSED] DIN
[23:30:42] [PASSED] DP
[23:30:42] [PASSED] TV
[23:30:42] [PASSED] eDP
[23:30:42] [PASSED] Virtual
[23:30:42] [PASSED] DSI
[23:30:42] [PASSED] DPI
[23:30:42] [PASSED] Writeback
[23:30:42] [PASSED] SPI
[23:30:42] [PASSED] USB
[23:30:42] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[23:30:42] ============ [PASSED] drmm_connector_hdmi_init =============
[23:30:42] ============= drmm_connector_init (3 subtests) =============
[23:30:42] [PASSED] drm_test_drmm_connector_init
[23:30:42] [PASSED] drm_test_drmm_connector_init_null_ddc
[23:30:42] ========= drm_test_drmm_connector_init_type_valid =========
[23:30:42] [PASSED] Unknown
[23:30:42] [PASSED] VGA
[23:30:42] [PASSED] DVI-I
[23:30:42] [PASSED] DVI-D
[23:30:42] [PASSED] DVI-A
[23:30:42] [PASSED] Composite
[23:30:42] [PASSED] SVIDEO
[23:30:42] [PASSED] LVDS
[23:30:42] [PASSED] Component
[23:30:42] [PASSED] DIN
[23:30:42] [PASSED] DP
[23:30:42] [PASSED] HDMI-A
[23:30:42] [PASSED] HDMI-B
[23:30:42] [PASSED] TV
[23:30:42] [PASSED] eDP
[23:30:42] [PASSED] Virtual
[23:30:42] [PASSED] DSI
[23:30:42] [PASSED] DPI
[23:30:42] [PASSED] Writeback
[23:30:42] [PASSED] SPI
[23:30:42] [PASSED] USB
[23:30:42] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[23:30:42] =============== [PASSED] drmm_connector_init ===============
[23:30:42] ========= drm_connector_dynamic_init (6 subtests) ==========
[23:30:42] [PASSED] drm_test_drm_connector_dynamic_init
[23:30:42] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[23:30:42] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[23:30:42] [PASSED] drm_test_drm_connector_dynamic_init_properties
[23:30:42] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[23:30:42] [PASSED] Unknown
[23:30:42] [PASSED] VGA
[23:30:42] [PASSED] DVI-I
[23:30:42] [PASSED] DVI-D
[23:30:42] [PASSED] DVI-A
[23:30:42] [PASSED] Composite
[23:30:42] [PASSED] SVIDEO
[23:30:42] [PASSED] LVDS
[23:30:42] [PASSED] Component
[23:30:42] [PASSED] DIN
[23:30:42] [PASSED] DP
[23:30:42] [PASSED] HDMI-A
[23:30:42] [PASSED] HDMI-B
[23:30:42] [PASSED] TV
[23:30:42] [PASSED] eDP
[23:30:42] [PASSED] Virtual
[23:30:42] [PASSED] DSI
[23:30:42] [PASSED] DPI
[23:30:42] [PASSED] Writeback
[23:30:42] [PASSED] SPI
[23:30:42] [PASSED] USB
[23:30:42] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[23:30:42] ======== drm_test_drm_connector_dynamic_init_name =========
[23:30:42] [PASSED] Unknown
[23:30:42] [PASSED] VGA
[23:30:42] [PASSED] DVI-I
[23:30:42] [PASSED] DVI-D
[23:30:42] [PASSED] DVI-A
[23:30:42] [PASSED] Composite
[23:30:42] [PASSED] SVIDEO
[23:30:42] [PASSED] LVDS
[23:30:42] [PASSED] Component
[23:30:42] [PASSED] DIN
[23:30:42] [PASSED] DP
[23:30:42] [PASSED] HDMI-A
[23:30:42] [PASSED] HDMI-B
[23:30:42] [PASSED] TV
[23:30:42] [PASSED] eDP
[23:30:42] [PASSED] Virtual
[23:30:42] [PASSED] DSI
[23:30:42] [PASSED] DPI
[23:30:42] [PASSED] Writeback
[23:30:42] [PASSED] SPI
[23:30:42] [PASSED] USB
[23:30:42] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[23:30:42] =========== [PASSED] drm_connector_dynamic_init ============
[23:30:42] ==== drm_connector_dynamic_register_early (4 subtests) =====
[23:30:42] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[23:30:42] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[23:30:42] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[23:30:42] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[23:30:42] ====== [PASSED] drm_connector_dynamic_register_early =======
[23:30:42] ======= drm_connector_dynamic_register (7 subtests) ========
[23:30:42] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[23:30:42] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[23:30:42] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[23:30:42] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[23:30:42] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[23:30:42] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[23:30:42] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[23:30:42] ========= [PASSED] drm_connector_dynamic_register ==========
[23:30:42] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[23:30:42] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[23:30:42] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[23:30:42] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[23:30:42] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[23:30:42] ========== drm_test_get_tv_mode_from_name_valid ===========
[23:30:42] [PASSED] NTSC
[23:30:42] [PASSED] NTSC-443
[23:30:42] [PASSED] NTSC-J
[23:30:42] [PASSED] PAL
[23:30:42] [PASSED] PAL-M
[23:30:42] [PASSED] PAL-N
[23:30:42] [PASSED] SECAM
[23:30:42] [PASSED] Mono
[23:30:42] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[23:30:42] [PASSED] drm_test_get_tv_mode_from_name_truncated
[23:30:42] ============ [PASSED] drm_get_tv_mode_from_name ============
[23:30:42] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[23:30:42] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[23:30:42] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[23:30:42] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[23:30:42] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[23:30:42] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[23:30:42] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[23:30:42] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[23:30:42] [PASSED] VIC 96
[23:30:42] [PASSED] VIC 97
[23:30:42] [PASSED] VIC 101
[23:30:42] [PASSED] VIC 102
[23:30:42] [PASSED] VIC 106
[23:30:42] [PASSED] VIC 107
[23:30:42] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[23:30:42] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[23:30:42] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[23:30:42] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[23:30:42] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[23:30:42] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[23:30:42] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[23:30:42] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[23:30:42] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[23:30:42] [PASSED] Automatic
[23:30:42] [PASSED] Full
[23:30:42] [PASSED] Limited 16:235
[23:30:42] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[23:30:42] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[23:30:42] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[23:30:42] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[23:30:42] === drm_test_drm_hdmi_connector_get_output_format_name ====
[23:30:42] [PASSED] RGB
[23:30:42] [PASSED] YUV 4:2:0
[23:30:42] [PASSED] YUV 4:2:2
[23:30:42] [PASSED] YUV 4:4:4
[23:30:42] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[23:30:42] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[23:30:42] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[23:30:42] ============= drm_damage_helper (21 subtests) ==============
[23:30:42] [PASSED] drm_test_damage_iter_no_damage
[23:30:42] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[23:30:42] [PASSED] drm_test_damage_iter_no_damage_src_moved
[23:30:42] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[23:30:42] [PASSED] drm_test_damage_iter_no_damage_not_visible
[23:30:42] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[23:30:42] [PASSED] drm_test_damage_iter_no_damage_no_fb
[23:30:42] [PASSED] drm_test_damage_iter_simple_damage
[23:30:42] [PASSED] drm_test_damage_iter_single_damage
[23:30:42] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[23:30:42] [PASSED] drm_test_damage_iter_single_damage_outside_src
[23:30:42] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[23:30:42] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[23:30:42] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[23:30:42] [PASSED] drm_test_damage_iter_single_damage_src_moved
[23:30:42] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[23:30:42] [PASSED] drm_test_damage_iter_damage
[23:30:42] [PASSED] drm_test_damage_iter_damage_one_intersect
[23:30:42] [PASSED] drm_test_damage_iter_damage_one_outside
[23:30:42] [PASSED] drm_test_damage_iter_damage_src_moved
[23:30:42] [PASSED] drm_test_damage_iter_damage_not_visible
[23:30:42] ================ [PASSED] drm_damage_helper ================
[23:30:42] ============== drm_dp_mst_helper (3 subtests) ==============
[23:30:42] ============== drm_test_dp_mst_calc_pbn_mode ==============
[23:30:42] [PASSED] Clock 154000 BPP 30 DSC disabled
[23:30:42] [PASSED] Clock 234000 BPP 30 DSC disabled
[23:30:42] [PASSED] Clock 297000 BPP 24 DSC disabled
[23:30:42] [PASSED] Clock 332880 BPP 24 DSC enabled
[23:30:42] [PASSED] Clock 324540 BPP 24 DSC enabled
[23:30:42] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[23:30:42] ============== drm_test_dp_mst_calc_pbn_div ===============
[23:30:42] [PASSED] Link rate 2000000 lane count 4
[23:30:42] [PASSED] Link rate 2000000 lane count 2
[23:30:42] [PASSED] Link rate 2000000 lane count 1
[23:30:42] [PASSED] Link rate 1350000 lane count 4
[23:30:42] [PASSED] Link rate 1350000 lane count 2
[23:30:42] [PASSED] Link rate 1350000 lane count 1
[23:30:42] [PASSED] Link rate 1000000 lane count 4
[23:30:42] [PASSED] Link rate 1000000 lane count 2
[23:30:42] [PASSED] Link rate 1000000 lane count 1
[23:30:42] [PASSED] Link rate 810000 lane count 4
[23:30:42] [PASSED] Link rate 810000 lane count 2
[23:30:42] [PASSED] Link rate 810000 lane count 1
[23:30:42] [PASSED] Link rate 540000 lane count 4
[23:30:42] [PASSED] Link rate 540000 lane count 2
[23:30:42] [PASSED] Link rate 540000 lane count 1
[23:30:42] [PASSED] Link rate 270000 lane count 4
[23:30:42] [PASSED] Link rate 270000 lane count 2
[23:30:42] [PASSED] Link rate 270000 lane count 1
[23:30:42] [PASSED] Link rate 162000 lane count 4
[23:30:42] [PASSED] Link rate 162000 lane count 2
[23:30:42] [PASSED] Link rate 162000 lane count 1
[23:30:42] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[23:30:42] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[23:30:42] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[23:30:42] [PASSED] DP_POWER_UP_PHY with port number
[23:30:42] [PASSED] DP_POWER_DOWN_PHY with port number
[23:30:42] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[23:30:42] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[23:30:42] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[23:30:42] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[23:30:42] [PASSED] DP_QUERY_PAYLOAD with port number
[23:30:42] [PASSED] DP_QUERY_PAYLOAD with VCPI
[23:30:42] [PASSED] DP_REMOTE_DPCD_READ with port number
[23:30:42] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[23:30:42] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[23:30:42] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[23:30:42] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[23:30:42] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[23:30:42] [PASSED] DP_REMOTE_I2C_READ with port number
[23:30:42] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[23:30:42] [PASSED] DP_REMOTE_I2C_READ with transactions array
[23:30:42] [PASSED] DP_REMOTE_I2C_WRITE with port number
[23:30:42] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[23:30:42] [PASSED] DP_REMOTE_I2C_WRITE with data array
[23:30:42] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[23:30:42] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[23:30:42] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[23:30:42] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[23:30:42] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[23:30:42] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[23:30:42] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[23:30:42] ================ [PASSED] drm_dp_mst_helper ================
[23:30:42] ================== drm_exec (7 subtests) ===================
[23:30:42] [PASSED] sanitycheck
[23:30:42] [PASSED] test_lock
[23:30:42] [PASSED] test_lock_unlock
[23:30:42] [PASSED] test_duplicates
[23:30:42] [PASSED] test_prepare
[23:30:42] [PASSED] test_prepare_array
[23:30:42] [PASSED] test_multiple_loops
[23:30:42] ==================== [PASSED] drm_exec =====================
[23:30:42] =========== drm_format_helper_test (17 subtests) ===========
[23:30:42] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[23:30:42] [PASSED] single_pixel_source_buffer
[23:30:42] [PASSED] single_pixel_clip_rectangle
[23:30:42] [PASSED] well_known_colors
[23:30:42] [PASSED] destination_pitch
[23:30:42] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[23:30:42] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[23:30:42] [PASSED] single_pixel_source_buffer
[23:30:42] [PASSED] single_pixel_clip_rectangle
[23:30:42] [PASSED] well_known_colors
[23:30:42] [PASSED] destination_pitch
[23:30:42] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[23:30:42] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[23:30:42] [PASSED] single_pixel_source_buffer
[23:30:42] [PASSED] single_pixel_clip_rectangle
[23:30:42] [PASSED] well_known_colors
[23:30:42] [PASSED] destination_pitch
[23:30:42] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[23:30:42] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[23:30:42] [PASSED] single_pixel_source_buffer
[23:30:42] [PASSED] single_pixel_clip_rectangle
[23:30:42] [PASSED] well_known_colors
[23:30:42] [PASSED] destination_pitch
[23:30:42] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[23:30:42] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[23:30:42] [PASSED] single_pixel_source_buffer
[23:30:42] [PASSED] single_pixel_clip_rectangle
[23:30:42] [PASSED] well_known_colors
[23:30:42] [PASSED] destination_pitch
[23:30:42] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[23:30:42] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[23:30:42] [PASSED] single_pixel_source_buffer
[23:30:42] [PASSED] single_pixel_clip_rectangle
[23:30:42] [PASSED] well_known_colors
[23:30:42] [PASSED] destination_pitch
[23:30:42] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[23:30:42] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[23:30:42] [PASSED] single_pixel_source_buffer
[23:30:42] [PASSED] single_pixel_clip_rectangle
[23:30:42] [PASSED] well_known_colors
[23:30:42] [PASSED] destination_pitch
[23:30:42] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[23:30:42] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[23:30:42] [PASSED] single_pixel_source_buffer
[23:30:42] [PASSED] single_pixel_clip_rectangle
[23:30:42] [PASSED] well_known_colors
[23:30:42] [PASSED] destination_pitch
[23:30:42] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[23:30:42] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[23:30:42] [PASSED] single_pixel_source_buffer
[23:30:42] [PASSED] single_pixel_clip_rectangle
[23:30:42] [PASSED] well_known_colors
[23:30:42] [PASSED] destination_pitch
[23:30:42] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[23:30:42] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[23:30:42] [PASSED] single_pixel_source_buffer
[23:30:42] [PASSED] single_pixel_clip_rectangle
[23:30:42] [PASSED] well_known_colors
[23:30:42] [PASSED] destination_pitch
[23:30:42] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[23:30:42] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[23:30:42] [PASSED] single_pixel_source_buffer
[23:30:42] [PASSED] single_pixel_clip_rectangle
[23:30:42] [PASSED] well_known_colors
[23:30:42] [PASSED] destination_pitch
[23:30:42] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[23:30:42] ============== drm_test_fb_xrgb8888_to_mono ===============
[23:30:42] [PASSED] single_pixel_source_buffer
[23:30:42] [PASSED] single_pixel_clip_rectangle
[23:30:42] [PASSED] well_known_colors
[23:30:42] [PASSED] destination_pitch
[23:30:42] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[23:30:42] ==================== drm_test_fb_swab =====================
[23:30:42] [PASSED] single_pixel_source_buffer
[23:30:42] [PASSED] single_pixel_clip_rectangle
[23:30:42] [PASSED] well_known_colors
[23:30:42] [PASSED] destination_pitch
[23:30:42] ================ [PASSED] drm_test_fb_swab =================
[23:30:42] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[23:30:42] [PASSED] single_pixel_source_buffer
[23:30:42] [PASSED] single_pixel_clip_rectangle
[23:30:42] [PASSED] well_known_colors
[23:30:42] [PASSED] destination_pitch
[23:30:42] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[23:30:42] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[23:30:42] [PASSED] single_pixel_source_buffer
[23:30:42] [PASSED] single_pixel_clip_rectangle
[23:30:42] [PASSED] well_known_colors
[23:30:42] [PASSED] destination_pitch
[23:30:42] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[23:30:42] ================= drm_test_fb_clip_offset =================
[23:30:42] [PASSED] pass through
[23:30:42] [PASSED] horizontal offset
[23:30:42] [PASSED] vertical offset
[23:30:42] [PASSED] horizontal and vertical offset
[23:30:42] [PASSED] horizontal offset (custom pitch)
[23:30:42] [PASSED] vertical offset (custom pitch)
[23:30:42] [PASSED] horizontal and vertical offset (custom pitch)
[23:30:42] ============= [PASSED] drm_test_fb_clip_offset =============
[23:30:42] =================== drm_test_fb_memcpy ====================
[23:30:42] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[23:30:42] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[23:30:42] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[23:30:42] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[23:30:42] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[23:30:42] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[23:30:42] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[23:30:42] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[23:30:42] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[23:30:42] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[23:30:42] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[23:30:42] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[23:30:42] =============== [PASSED] drm_test_fb_memcpy ================
[23:30:42] ============= [PASSED] drm_format_helper_test ==============
[23:30:42] ================= drm_format (18 subtests) =================
[23:30:42] [PASSED] drm_test_format_block_width_invalid
[23:30:42] [PASSED] drm_test_format_block_width_one_plane
[23:30:42] [PASSED] drm_test_format_block_width_two_plane
[23:30:42] [PASSED] drm_test_format_block_width_three_plane
[23:30:42] [PASSED] drm_test_format_block_width_tiled
[23:30:42] [PASSED] drm_test_format_block_height_invalid
[23:30:42] [PASSED] drm_test_format_block_height_one_plane
[23:30:42] [PASSED] drm_test_format_block_height_two_plane
[23:30:42] [PASSED] drm_test_format_block_height_three_plane
[23:30:42] [PASSED] drm_test_format_block_height_tiled
[23:30:42] [PASSED] drm_test_format_min_pitch_invalid
[23:30:42] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[23:30:42] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[23:30:42] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[23:30:42] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[23:30:42] [PASSED] drm_test_format_min_pitch_two_plane
[23:30:42] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[23:30:42] [PASSED] drm_test_format_min_pitch_tiled
[23:30:42] =================== [PASSED] drm_format ====================
[23:30:42] ============== drm_framebuffer (10 subtests) ===============
[23:30:42] ========== drm_test_framebuffer_check_src_coords ==========
[23:30:42] [PASSED] Success: source fits into fb
[23:30:42] [PASSED] Fail: overflowing fb with x-axis coordinate
[23:30:42] [PASSED] Fail: overflowing fb with y-axis coordinate
[23:30:42] [PASSED] Fail: overflowing fb with source width
[23:30:42] [PASSED] Fail: overflowing fb with source height
[23:30:42] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[23:30:42] [PASSED] drm_test_framebuffer_cleanup
[23:30:42] =============== drm_test_framebuffer_create ===============
[23:30:42] [PASSED] ABGR8888 normal sizes
[23:30:42] [PASSED] ABGR8888 max sizes
[23:30:42] [PASSED] ABGR8888 pitch greater than min required
[23:30:42] [PASSED] ABGR8888 pitch less than min required
[23:30:42] [PASSED] ABGR8888 Invalid width
[23:30:42] [PASSED] ABGR8888 Invalid buffer handle
[23:30:42] [PASSED] No pixel format
[23:30:42] [PASSED] ABGR8888 Width 0
[23:30:42] [PASSED] ABGR8888 Height 0
[23:30:42] [PASSED] ABGR8888 Out of bound height * pitch combination
[23:30:42] [PASSED] ABGR8888 Large buffer offset
[23:30:42] [PASSED] ABGR8888 Buffer offset for inexistent plane
[23:30:42] [PASSED] ABGR8888 Invalid flag
[23:30:42] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[23:30:42] [PASSED] ABGR8888 Valid buffer modifier
[23:30:42] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[23:30:42] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[23:30:42] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[23:30:42] [PASSED] NV12 Normal sizes
[23:30:42] [PASSED] NV12 Max sizes
[23:30:42] [PASSED] NV12 Invalid pitch
[23:30:42] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[23:30:42] [PASSED] NV12 different modifier per-plane
[23:30:42] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[23:30:42] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[23:30:42] [PASSED] NV12 Modifier for inexistent plane
[23:30:42] [PASSED] NV12 Handle for inexistent plane
[23:30:42] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[23:30:42] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[23:30:42] [PASSED] YVU420 Normal sizes
[23:30:42] [PASSED] YVU420 Max sizes
[23:30:42] [PASSED] YVU420 Invalid pitch
[23:30:42] [PASSED] YVU420 Different pitches
[23:30:42] [PASSED] YVU420 Different buffer offsets/pitches
[23:30:42] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[23:30:42] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[23:30:42] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[23:30:42] [PASSED] YVU420 Valid modifier
[23:30:42] [PASSED] YVU420 Different modifiers per plane
[23:30:42] [PASSED] YVU420 Modifier for inexistent plane
[23:30:42] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[23:30:42] [PASSED] X0L2 Normal sizes
[23:30:42] [PASSED] X0L2 Max sizes
[23:30:42] [PASSED] X0L2 Invalid pitch
[23:30:42] [PASSED] X0L2 Pitch greater than minimum required
[23:30:42] [PASSED] X0L2 Handle for inexistent plane
[23:30:42] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[23:30:42] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[23:30:42] [PASSED] X0L2 Valid modifier
[23:30:42] [PASSED] X0L2 Modifier for inexistent plane
[23:30:42] =========== [PASSED] drm_test_framebuffer_create ===========
[23:30:42] [PASSED] drm_test_framebuffer_free
[23:30:42] [PASSED] drm_test_framebuffer_init
[23:30:42] [PASSED] drm_test_framebuffer_init_bad_format
[23:30:42] [PASSED] drm_test_framebuffer_init_dev_mismatch
[23:30:42] [PASSED] drm_test_framebuffer_lookup
[23:30:42] [PASSED] drm_test_framebuffer_lookup_inexistent
[23:30:42] [PASSED] drm_test_framebuffer_modifiers_not_supported
[23:30:42] ================= [PASSED] drm_framebuffer =================
[23:30:42] ================ drm_gem_shmem (8 subtests) ================
[23:30:42] [PASSED] drm_gem_shmem_test_obj_create
[23:30:42] [PASSED] drm_gem_shmem_test_obj_create_private
[23:30:42] [PASSED] drm_gem_shmem_test_pin_pages
[23:30:42] [PASSED] drm_gem_shmem_test_vmap
[23:30:42] [PASSED] drm_gem_shmem_test_get_sg_table
[23:30:42] [PASSED] drm_gem_shmem_test_get_pages_sgt
[23:30:42] [PASSED] drm_gem_shmem_test_madvise
[23:30:42] [PASSED] drm_gem_shmem_test_purge
[23:30:42] ================== [PASSED] drm_gem_shmem ==================
[23:30:42] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[23:30:42] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[23:30:42] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[23:30:42] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[23:30:42] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[23:30:42] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[23:30:42] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[23:30:42] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[23:30:42] [PASSED] Automatic
[23:30:42] [PASSED] Full
[23:30:42] [PASSED] Limited 16:235
[23:30:42] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[23:30:42] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[23:30:42] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[23:30:42] [PASSED] drm_test_check_disable_connector
[23:30:42] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[23:30:42] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[23:30:42] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[23:30:42] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[23:30:42] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[23:30:42] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[23:30:42] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[23:30:42] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[23:30:42] [PASSED] drm_test_check_output_bpc_dvi
[23:30:42] [PASSED] drm_test_check_output_bpc_format_vic_1
[23:30:42] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[23:30:42] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[23:30:42] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[23:30:42] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[23:30:42] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[23:30:42] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[23:30:42] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[23:30:42] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[23:30:42] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[23:30:42] [PASSED] drm_test_check_broadcast_rgb_value
[23:30:42] [PASSED] drm_test_check_bpc_8_value
[23:30:42] [PASSED] drm_test_check_bpc_10_value
[23:30:42] [PASSED] drm_test_check_bpc_12_value
[23:30:42] [PASSED] drm_test_check_format_value
[23:30:42] [PASSED] drm_test_check_tmds_char_value
[23:30:42] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[23:30:42] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[23:30:42] [PASSED] drm_test_check_mode_valid
[23:30:42] [PASSED] drm_test_check_mode_valid_reject
[23:30:42] [PASSED] drm_test_check_mode_valid_reject_rate
[23:30:42] [PASSED] drm_test_check_mode_valid_reject_max_clock
[23:30:42] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[23:30:42] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[23:30:42] [PASSED] drm_test_check_infoframes
[23:30:42] [PASSED] drm_test_check_reject_avi_infoframe
[23:30:42] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[23:30:42] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[23:30:42] [PASSED] drm_test_check_reject_audio_infoframe
[23:30:42] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[23:30:42] ================= drm_managed (2 subtests) =================
[23:30:42] [PASSED] drm_test_managed_release_action
[23:30:42] [PASSED] drm_test_managed_run_action
[23:30:42] =================== [PASSED] drm_managed ===================
[23:30:42] =================== drm_mm (6 subtests) ====================
[23:30:42] [PASSED] drm_test_mm_init
[23:30:42] [PASSED] drm_test_mm_debug
[23:30:42] [PASSED] drm_test_mm_align32
[23:30:42] [PASSED] drm_test_mm_align64
[23:30:42] [PASSED] drm_test_mm_lowest
[23:30:42] [PASSED] drm_test_mm_highest
[23:30:42] ===================== [PASSED] drm_mm ======================
[23:30:42] ============= drm_modes_analog_tv (5 subtests) =============
[23:30:42] [PASSED] drm_test_modes_analog_tv_mono_576i
[23:30:42] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[23:30:42] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[23:30:42] [PASSED] drm_test_modes_analog_tv_pal_576i
[23:30:42] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[23:30:42] =============== [PASSED] drm_modes_analog_tv ===============
[23:30:42] ============== drm_plane_helper (2 subtests) ===============
[23:30:42] =============== drm_test_check_plane_state ================
[23:30:42] [PASSED] clipping_simple
[23:30:42] [PASSED] clipping_rotate_reflect
[23:30:42] [PASSED] positioning_simple
[23:30:42] [PASSED] upscaling
[23:30:42] [PASSED] downscaling
[23:30:42] [PASSED] rounding1
[23:30:42] [PASSED] rounding2
[23:30:42] [PASSED] rounding3
[23:30:42] [PASSED] rounding4
[23:30:42] =========== [PASSED] drm_test_check_plane_state ============
[23:30:42] =========== drm_test_check_invalid_plane_state ============
[23:30:42] [PASSED] positioning_invalid
[23:30:42] [PASSED] upscaling_invalid
[23:30:42] [PASSED] downscaling_invalid
[23:30:42] ======= [PASSED] drm_test_check_invalid_plane_state ========
[23:30:42] ================ [PASSED] drm_plane_helper =================
[23:30:42] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[23:30:42] ====== drm_test_connector_helper_tv_get_modes_check =======
[23:30:42] [PASSED] None
[23:30:42] [PASSED] PAL
[23:30:42] [PASSED] NTSC
[23:30:42] [PASSED] Both, NTSC Default
[23:30:42] [PASSED] Both, PAL Default
[23:30:42] [PASSED] Both, NTSC Default, with PAL on command-line
[23:30:42] [PASSED] Both, PAL Default, with NTSC on command-line
[23:30:42] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[23:30:42] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[23:30:42] ================== drm_rect (9 subtests) ===================
[23:30:42] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[23:30:42] [PASSED] drm_test_rect_clip_scaled_not_clipped
[23:30:42] [PASSED] drm_test_rect_clip_scaled_clipped
[23:30:42] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[23:30:42] ================= drm_test_rect_intersect =================
[23:30:42] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[23:30:42] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[23:30:42] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[23:30:42] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[23:30:42] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[23:30:42] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[23:30:42] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[23:30:42] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[23:30:42] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[23:30:42] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[23:30:42] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[23:30:42] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[23:30:42] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[23:30:42] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[23:30:42] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[23:30:42] ============= [PASSED] drm_test_rect_intersect =============
[23:30:42] ================ drm_test_rect_calc_hscale ================
[23:30:42] [PASSED] normal use
[23:30:42] [PASSED] out of max range
[23:30:42] [PASSED] out of min range
[23:30:42] [PASSED] zero dst
[23:30:42] [PASSED] negative src
[23:30:42] [PASSED] negative dst
[23:30:42] ============ [PASSED] drm_test_rect_calc_hscale ============
[23:30:42] ================ drm_test_rect_calc_vscale ================
[23:30:42] [PASSED] normal use
[23:30:42] [PASSED] out of max range
[23:30:42] [PASSED] out of min range
[23:30:42] [PASSED] zero dst
[23:30:42] [PASSED] negative src
[23:30:42] [PASSED] negative dst
[23:30:42] ============ [PASSED] drm_test_rect_calc_vscale ============
[23:30:42] ================== drm_test_rect_rotate ===================
[23:30:42] [PASSED] reflect-x
[23:30:42] [PASSED] reflect-y
[23:30:42] [PASSED] rotate-0
[23:30:42] [PASSED] rotate-90
[23:30:42] [PASSED] rotate-180
[23:30:42] [PASSED] rotate-270
[23:30:42] ============== [PASSED] drm_test_rect_rotate ===============
[23:30:42] ================ drm_test_rect_rotate_inv =================
[23:30:42] [PASSED] reflect-x
[23:30:42] [PASSED] reflect-y
[23:30:42] [PASSED] rotate-0
[23:30:42] [PASSED] rotate-90
[23:30:42] [PASSED] rotate-180
[23:30:42] [PASSED] rotate-270
[23:30:42] ============ [PASSED] drm_test_rect_rotate_inv =============
[23:30:42] ==================== [PASSED] drm_rect =====================
[23:30:42] ============ drm_sysfb_modeset_test (1 subtest) ============
[23:30:42] ============ drm_test_sysfb_build_fourcc_list =============
[23:30:42] [PASSED] no native formats
[23:30:42] [PASSED] XRGB8888 as native format
[23:30:42] [PASSED] remove duplicates
[23:30:42] [PASSED] convert alpha formats
[23:30:42] [PASSED] random formats
[23:30:42] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[23:30:42] ============= [PASSED] drm_sysfb_modeset_test ==============
[23:30:42] ================== drm_fixp (2 subtests) ===================
[23:30:42] [PASSED] drm_test_int2fixp
[23:30:42] [PASSED] drm_test_sm2fixp
[23:30:42] ==================== [PASSED] drm_fixp =====================
[23:30:42] ============================================================
[23:30:42] Testing complete. Ran 621 tests: passed: 621
[23:30:42] Elapsed time: 32.059s total, 1.717s configuring, 30.127s building, 0.183s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[23:30:42] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:30:44] 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=25
[23:30:53] Starting KUnit Kernel (1/1)...
[23:30:53] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:30:53] ================= ttm_device (5 subtests) ==================
[23:30:53] [PASSED] ttm_device_init_basic
[23:30:53] [PASSED] ttm_device_init_multiple
[23:30:53] [PASSED] ttm_device_fini_basic
[23:30:53] [PASSED] ttm_device_init_no_vma_man
[23:30:53] ================== ttm_device_init_pools ==================
[23:30:53] [PASSED] No DMA allocations, no DMA32 required
[23:30:53] [PASSED] DMA allocations, DMA32 required
[23:30:53] [PASSED] No DMA allocations, DMA32 required
[23:30:53] [PASSED] DMA allocations, no DMA32 required
[23:30:53] ============== [PASSED] ttm_device_init_pools ==============
[23:30:53] =================== [PASSED] ttm_device ====================
[23:30:53] ================== ttm_pool (8 subtests) ===================
[23:30:53] ================== ttm_pool_alloc_basic ===================
[23:30:53] [PASSED] One page
[23:30:53] [PASSED] More than one page
[23:30:53] [PASSED] Above the allocation limit
[23:30:53] [PASSED] One page, with coherent DMA mappings enabled
[23:30:53] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[23:30:53] ============== [PASSED] ttm_pool_alloc_basic ===============
[23:30:53] ============== ttm_pool_alloc_basic_dma_addr ==============
[23:30:53] [PASSED] One page
[23:30:53] [PASSED] More than one page
[23:30:53] [PASSED] Above the allocation limit
[23:30:53] [PASSED] One page, with coherent DMA mappings enabled
[23:30:53] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[23:30:53] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[23:30:53] [PASSED] ttm_pool_alloc_order_caching_match
[23:30:53] [PASSED] ttm_pool_alloc_caching_mismatch
[23:30:53] [PASSED] ttm_pool_alloc_order_mismatch
[23:30:53] [PASSED] ttm_pool_free_dma_alloc
[23:30:53] [PASSED] ttm_pool_free_no_dma_alloc
[23:30:53] [PASSED] ttm_pool_fini_basic
[23:30:53] ==================== [PASSED] ttm_pool =====================
[23:30:53] ================ ttm_resource (8 subtests) =================
[23:30:53] ================= ttm_resource_init_basic =================
[23:30:53] [PASSED] Init resource in TTM_PL_SYSTEM
[23:30:53] [PASSED] Init resource in TTM_PL_VRAM
[23:30:53] [PASSED] Init resource in a private placement
[23:30:53] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[23:30:53] ============= [PASSED] ttm_resource_init_basic =============
[23:30:53] [PASSED] ttm_resource_init_pinned
[23:30:53] [PASSED] ttm_resource_fini_basic
[23:30:53] [PASSED] ttm_resource_manager_init_basic
[23:30:53] [PASSED] ttm_resource_manager_usage_basic
[23:30:53] [PASSED] ttm_resource_manager_set_used_basic
[23:30:53] [PASSED] ttm_sys_man_alloc_basic
[23:30:53] [PASSED] ttm_sys_man_free_basic
[23:30:53] ================== [PASSED] ttm_resource ===================
[23:30:53] =================== ttm_tt (15 subtests) ===================
[23:30:53] ==================== ttm_tt_init_basic ====================
[23:30:53] [PASSED] Page-aligned size
[23:30:53] [PASSED] Extra pages requested
[23:30:53] ================ [PASSED] ttm_tt_init_basic ================
[23:30:53] [PASSED] ttm_tt_init_misaligned
[23:30:53] [PASSED] ttm_tt_fini_basic
[23:30:53] [PASSED] ttm_tt_fini_sg
[23:30:53] [PASSED] ttm_tt_fini_shmem
[23:30:53] [PASSED] ttm_tt_create_basic
[23:30:53] [PASSED] ttm_tt_create_invalid_bo_type
[23:30:53] [PASSED] ttm_tt_create_ttm_exists
[23:30:53] [PASSED] ttm_tt_create_failed
[23:30:53] [PASSED] ttm_tt_destroy_basic
[23:30:53] [PASSED] ttm_tt_populate_null_ttm
[23:30:53] [PASSED] ttm_tt_populate_populated_ttm
[23:30:53] [PASSED] ttm_tt_unpopulate_basic
[23:30:53] [PASSED] ttm_tt_unpopulate_empty_ttm
[23:30:53] [PASSED] ttm_tt_swapin_basic
[23:30:53] ===================== [PASSED] ttm_tt ======================
[23:30:53] =================== ttm_bo (14 subtests) ===================
[23:30:53] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[23:30:53] [PASSED] Cannot be interrupted and sleeps
[23:30:53] [PASSED] Cannot be interrupted, locks straight away
[23:30:53] [PASSED] Can be interrupted, sleeps
[23:30:53] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[23:30:53] [PASSED] ttm_bo_reserve_locked_no_sleep
[23:30:53] [PASSED] ttm_bo_reserve_no_wait_ticket
[23:30:53] [PASSED] ttm_bo_reserve_double_resv
[23:30:53] [PASSED] ttm_bo_reserve_interrupted
[23:30:53] [PASSED] ttm_bo_reserve_deadlock
[23:30:53] [PASSED] ttm_bo_unreserve_basic
[23:30:53] [PASSED] ttm_bo_unreserve_pinned
[23:30:53] [PASSED] ttm_bo_unreserve_bulk
[23:30:53] [PASSED] ttm_bo_fini_basic
[23:30:53] [PASSED] ttm_bo_fini_shared_resv
[23:30:53] [PASSED] ttm_bo_pin_basic
[23:30:53] [PASSED] ttm_bo_pin_unpin_resource
[23:30:53] [PASSED] ttm_bo_multiple_pin_one_unpin
[23:30:53] ===================== [PASSED] ttm_bo ======================
[23:30:53] ============== ttm_bo_validate (22 subtests) ===============
[23:30:53] ============== ttm_bo_init_reserved_sys_man ===============
[23:30:53] [PASSED] Buffer object for userspace
[23:30:53] [PASSED] Kernel buffer object
[23:30:53] [PASSED] Shared buffer object
[23:30:53] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[23:30:53] ============== ttm_bo_init_reserved_mock_man ==============
[23:30:53] [PASSED] Buffer object for userspace
[23:30:53] [PASSED] Kernel buffer object
[23:30:53] [PASSED] Shared buffer object
[23:30:53] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[23:30:53] [PASSED] ttm_bo_init_reserved_resv
[23:30:53] ================== ttm_bo_validate_basic ==================
[23:30:53] [PASSED] Buffer object for userspace
[23:30:53] [PASSED] Kernel buffer object
[23:30:53] [PASSED] Shared buffer object
[23:30:53] ============== [PASSED] ttm_bo_validate_basic ==============
[23:30:53] [PASSED] ttm_bo_validate_invalid_placement
[23:30:53] ============= ttm_bo_validate_same_placement ==============
[23:30:53] [PASSED] System manager
[23:30:53] [PASSED] VRAM manager
[23:30:53] ========= [PASSED] ttm_bo_validate_same_placement ==========
[23:30:53] [PASSED] ttm_bo_validate_failed_alloc
[23:30:53] [PASSED] ttm_bo_validate_pinned
[23:30:53] [PASSED] ttm_bo_validate_busy_placement
[23:30:53] ================ ttm_bo_validate_multihop =================
[23:30:53] [PASSED] Buffer object for userspace
[23:30:53] [PASSED] Kernel buffer object
[23:30:53] [PASSED] Shared buffer object
[23:30:53] ============ [PASSED] ttm_bo_validate_multihop =============
[23:30:53] ========== ttm_bo_validate_no_placement_signaled ==========
[23:30:53] [PASSED] Buffer object in system domain, no page vector
[23:30:53] [PASSED] Buffer object in system domain with an existing page vector
[23:30:53] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[23:30:53] ======== ttm_bo_validate_no_placement_not_signaled ========
[23:30:53] [PASSED] Buffer object for userspace
[23:30:53] [PASSED] Kernel buffer object
[23:30:53] [PASSED] Shared buffer object
[23:30:53] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[23:30:53] [PASSED] ttm_bo_validate_move_fence_signaled
[23:30:54] ========= ttm_bo_validate_move_fence_not_signaled =========
[23:30:54] [PASSED] Waits for GPU
[23:30:54] [PASSED] Tries to lock straight away
[23:30:54] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[23:30:54] [PASSED] ttm_bo_validate_swapout
[23:30:54] [PASSED] ttm_bo_validate_happy_evict
[23:30:54] [PASSED] ttm_bo_validate_all_pinned_evict
[23:30:54] [PASSED] ttm_bo_validate_allowed_only_evict
[23:30:54] [PASSED] ttm_bo_validate_deleted_evict
[23:30:54] [PASSED] ttm_bo_validate_busy_domain_evict
[23:30:54] [PASSED] ttm_bo_validate_evict_gutting
[23:30:54] [PASSED] ttm_bo_validate_recrusive_evict
[23:30:54] ================= [PASSED] ttm_bo_validate =================
[23:30:54] ============================================================
[23:30:54] Testing complete. Ran 102 tests: passed: 102
[23:30:54] Elapsed time: 11.819s total, 1.740s configuring, 9.864s building, 0.183s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.BAT: failure for gpu/buddy: Per-order free and used block scoreboards (rev2)
2026-05-11 16:41 [PATCH v2 0/3] gpu/buddy: Per-order free and used block scoreboards Francois Dugast
` (4 preceding siblings ...)
2026-05-11 23:30 ` ✓ CI.KUnit: success " Patchwork
@ 2026-05-12 1:05 ` Patchwork
2026-05-12 4:13 ` ✗ Xe.CI.FULL: " Patchwork
` (4 subsequent siblings)
10 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-05-12 1:05 UTC (permalink / raw)
To: Francois Dugast; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1787 bytes --]
== Series Details ==
Series: gpu/buddy: Per-order free and used block scoreboards (rev2)
URL : https://patchwork.freedesktop.org/series/165914/
State : failure
== Summary ==
CI Bug Log - changes from xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d_BAT -> xe-pw-165914v2_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-165914v2_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-165914v2_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-165914v2_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_waitfence@reltime:
- bat-ptl-1: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/bat-ptl-1/igt@xe_waitfence@reltime.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/bat-ptl-1/igt@xe_waitfence@reltime.html
Build changes
-------------
* Linux: xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d -> xe-pw-165914v2
IGT_8903: 6f88532e2fe22529195cc2f8cabff93d994688f8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d: 311a7de0a4e360124ba1abb933df42b021ef8b9d
xe-pw-165914v2: 165914v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/index.html
[-- Attachment #2: Type: text/html, Size: 2372 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.FULL: failure for gpu/buddy: Per-order free and used block scoreboards (rev2)
2026-05-11 16:41 [PATCH v2 0/3] gpu/buddy: Per-order free and used block scoreboards Francois Dugast
` (5 preceding siblings ...)
2026-05-12 1:05 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2026-05-12 4:13 ` Patchwork
2026-05-12 12:33 ` ✗ CI.checkpatch: warning for gpu/buddy: Per-order free and used block scoreboards (rev3) Patchwork
` (3 subsequent siblings)
10 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-05-12 4:13 UTC (permalink / raw)
To: Francois Dugast; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 44876 bytes --]
== Series Details ==
Series: gpu/buddy: Per-order free and used block scoreboards (rev2)
URL : https://patchwork.freedesktop.org/series/165914/
State : failure
== Summary ==
CI Bug Log - changes from xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d_FULL -> xe-pw-165914v2_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-165914v2_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-165914v2_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-165914v2_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads:
- shard-lnl: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@xe_exec_reset@long-spin-comp-reuse-many-preempt-threads.html
Known issues
------------
Here are the changes found in xe-pw-165914v2_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][2] ([Intel XE#3658] / [Intel XE#7360])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#1124]) +5 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#7676])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-target-2560x1440p:
- shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#367])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_bw@linear-tiling-3-displays-target-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-lnl: NOTRUN -> [SKIP][6] ([Intel XE#2887]) +7 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#2669] / [Intel XE#3433] / [Intel XE#7389]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_chamelium_color@degamma:
- shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#306] / [Intel XE#7358])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#373]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#6974])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@uevent:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#7642]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#1424])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#2321] / [Intel XE#7355])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#309] / [Intel XE#7343]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#4354] / [Intel XE#7450])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#4294] / [Intel XE#7477])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-with-bpc:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#2244])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1421]) +4 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [PASS][19] -> [FAIL][20] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x:
- shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#7179])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#6312] / [Intel XE#651]) +5 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-modesetfrombusy:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#4141])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-pri-indfb-multidraw:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#6312]) +6 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#7905]) +23 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2313])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#7061] / [Intel XE#7356]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-rgb565-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#7865]) +13 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#656] / [Intel XE#7905]) +19 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#7061]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_frontbuffer_tracking@psrhdr-abgr161616f-draw-blt.html
* igt@kms_hdr@static-swap:
- shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1503] / [Intel XE#7915])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-swap@pipe-a-edp-1-xrgb2101010:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#7915]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_hdr@static-swap@pipe-a-edp-1-xrgb2101010.html
* igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-bmg: [PASS][34] -> [SKIP][35] ([Intel XE#7915]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-9/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-7/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_joiner@basic-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#6901])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_joiner@basic-big-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#7283]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#5020] / [Intel XE#7348])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2763] / [Intel XE#6886]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#4608])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#4608] / [Intel XE#7304])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#2893] / [Intel XE#7304]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1406] / [Intel XE#7345]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff@edp-1:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1406] / [Intel XE#4609]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-plane-onoff@edp-1.html
* igt@kms_psr@pr-sprite-plane-onoff:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1406]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_psr@pr-sprite-plane-onoff.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#1435])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#362] / [Intel XE#5848])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1499])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@xe_ccs@vm-bind-decompress:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#7644])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@xe_ccs@vm-bind-decompress.html
* igt@xe_eudebug@basic-close:
- shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#7636]) +6 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@xe_eudebug@basic-close.html
* igt@xe_evict@evict-large-external-cm:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#6540] / [Intel XE#688]) +5 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@xe_evict@evict-large-external-cm.html
* igt@xe_exec_balancer@once-parallel-userptr:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#7482]) +8 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@xe_exec_balancer@once-parallel-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-userptr:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#1392]) +4 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-userptr.html
* igt@xe_exec_fault_mode@many-multi-queue-userptr-prefetch:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#7136]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@xe_exec_fault_mode@many-multi-queue-userptr-prefetch.html
* igt@xe_exec_multi_queue@many-execs-priority:
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#6874]) +15 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@xe_exec_multi_queue@many-execs-priority.html
* igt@xe_exec_reset@multi-queue-close-execqueues:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#7866])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@xe_exec_reset@multi-queue-close-execqueues.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-multi-vma:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#6196])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-comp-multi-vma.html
* igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-basic:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#7138]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-basic.html
* igt@xe_multigpu_svm@mgpu-coherency-fail-basic:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#6964])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@xe_multigpu_svm@mgpu-coherency-fail-basic.html
* igt@xe_page_reclaim@basic-mixed:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#7793])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@xe_page_reclaim@basic-mixed.html
* igt@xe_pat@pat-sw-hw-reset-compare:
- shard-lnl: NOTRUN -> [FAIL][64] ([Intel XE#7695])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@xe_pat@pat-sw-hw-reset-compare.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#944]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_sriov_admin@bulk-sched-priority-vfs-disabled:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#7174])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@xe_sriov_admin@bulk-sched-priority-vfs-disabled.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#4273])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_vfio@region-info:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#7724])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-4/igt@xe_sriov_vfio@region-info.html
#### Possible fixes ####
* igt@fbdev@unaligned-write:
- shard-bmg: [FAIL][69] ([Intel XE#7950]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@fbdev@unaligned-write.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@fbdev@unaligned-write.html
* igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait:
- shard-bmg: [ABORT][71] ([Intel XE#5545] / [Intel XE#7814]) -> [PASS][72] +1 other test pass
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1:
- shard-lnl: [FAIL][73] ([Intel XE#3098]) -> [PASS][74] +1 other test pass
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-lnl-1/igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-3/igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1.html
* igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-bmg: [SKIP][75] ([Intel XE#7915]) -> [PASS][76] +1 other test pass
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-7/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-4/igt@kms_hdr@invalid-metadata-sizes@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][77] ([Intel XE#2142]) -> [PASS][78] +1 other test pass
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_exec_reset@long-spin-reuse-many-preempt-gt0-threads:
- shard-bmg: [FAIL][79] -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@xe_exec_reset@long-spin-reuse-many-preempt-gt0-threads.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@xe_exec_reset@long-spin-reuse-many-preempt-gt0-threads.html
* igt@xe_module_load@reload:
- shard-bmg: [DMESG-WARN][81] -> [PASS][82]
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@xe_module_load@reload.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@xe_module_load@reload.html
* igt@xe_survivability@runtime-survivability:
- shard-bmg: [DMESG-WARN][83] ([Intel XE#6627] / [Intel XE#7419]) -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-6/igt@xe_survivability@runtime-survivability.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-5/igt@xe_survivability@runtime-survivability.html
* igt@xe_sysfs_scheduler@preempt_timeout_us-invalid-string:
- shard-bmg: [SKIP][85] ([Intel XE#6703]) -> [PASS][86] +88 other tests pass
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@xe_sysfs_scheduler@preempt_timeout_us-invalid-string.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@xe_sysfs_scheduler@preempt_timeout_us-invalid-string.html
#### Warnings ####
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-bmg: [SKIP][87] ([Intel XE#6703]) -> [SKIP][88] ([Intel XE#7059] / [Intel XE#7085])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: [SKIP][89] ([Intel XE#6703]) -> [SKIP][90] ([Intel XE#1124]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-4-displays-target-2560x1440p:
- shard-bmg: [SKIP][91] ([Intel XE#6703]) -> [SKIP][92] ([Intel XE#7679])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@kms_bw@connected-linear-tiling-4-displays-target-2560x1440p.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@kms_bw@connected-linear-tiling-4-displays-target-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-bmg: [SKIP][93] ([Intel XE#6703]) -> [SKIP][94] ([Intel XE#2887]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: [SKIP][95] ([Intel XE#6703]) -> [SKIP][96] ([Intel XE#3432])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-bmg: [SKIP][97] ([Intel XE#6703]) -> [SKIP][98] ([Intel XE#2252])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@kms_chamelium_frames@dp-crc-single.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-bmg: [SKIP][99] ([Intel XE#6703]) -> [SKIP][100] ([Intel XE#2390] / [Intel XE#6974])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@kms_content_protection@dp-mst-type-0.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_dsc@dsc-with-formats:
- shard-bmg: [SKIP][101] ([Intel XE#6703]) -> [SKIP][102] ([Intel XE#2244])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@kms_dsc@dsc-with-formats.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@kms_dsc@dsc-with-formats.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-bmg: [SKIP][103] ([Intel XE#6703]) -> [SKIP][104] ([Intel XE#7178] / [Intel XE#7351])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][105] ([Intel XE#6703]) -> [SKIP][106] ([Intel XE#4141])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][107] ([Intel XE#6703]) -> [SKIP][108] ([Intel XE#2311]) +8 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-shrfb-msflip-blt.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][109] ([Intel XE#6703]) -> [SKIP][110] ([Intel XE#2313]) +9 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-render:
- shard-bmg: [SKIP][111] ([Intel XE#6703]) -> [SKIP][112] ([Intel XE#7061]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-render.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@kms_frontbuffer_tracking@hdr-argb161616f-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][113] ([Intel XE#3544] / [Intel XE#7916]) -> [SKIP][114] ([Intel XE#3544] / [Intel XE#7915] / [Intel XE#7916])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-bmg: [SKIP][115] ([Intel XE#7916]) -> [SKIP][116] ([Intel XE#7915]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-4/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@kms_hdr@brightness-with-hdr@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-bmg: [SKIP][117] ([Intel XE#6703]) -> [SKIP][118] ([Intel XE#7283]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_pm_backlight@basic-brightness:
- shard-bmg: [SKIP][119] ([Intel XE#6703]) -> [SKIP][120] ([Intel XE#7376] / [Intel XE#870])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@kms_pm_backlight@basic-brightness.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-bmg: [SKIP][121] ([Intel XE#6703]) -> [SKIP][122] ([Intel XE#1489])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-bmg: [SKIP][123] ([Intel XE#6703]) -> [SKIP][124] ([Intel XE#2234] / [Intel XE#2850])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@kms_psr@fbc-psr-no-drrs.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][125] ([Intel XE#2426] / [Intel XE#5848]) -> [SKIP][126] ([Intel XE#2509] / [Intel XE#7437])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_eudebug_online@single-step-one:
- shard-bmg: [SKIP][127] ([Intel XE#6703]) -> [SKIP][128] ([Intel XE#7636]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@xe_eudebug_online@single-step-one.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@xe_eudebug_online@single-step-one.html
* igt@xe_evict@evict-mixed-threads-small-multi-queue:
- shard-bmg: [SKIP][129] ([Intel XE#6703]) -> [SKIP][130] ([Intel XE#7140])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@xe_evict@evict-mixed-threads-small-multi-queue.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@xe_evict@evict-mixed-threads-small-multi-queue.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate:
- shard-bmg: [SKIP][131] ([Intel XE#6703]) -> [SKIP][132] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-userptr:
- shard-bmg: [SKIP][133] ([Intel XE#6703]) -> [SKIP][134] ([Intel XE#6874]) +2 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-userptr.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@xe_exec_multi_queue@few-execs-preempt-mode-fault-userptr.html
* igt@xe_exec_threads@threads-multi-queue-mixed-rebind:
- shard-bmg: [SKIP][135] ([Intel XE#6703]) -> [SKIP][136] ([Intel XE#7138])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-mixed-rebind.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-mixed-rebind.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-bmg: [SKIP][137] ([Intel XE#6703]) -> [SKIP][138] ([Intel XE#2284] / [Intel XE#7370])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@xe_pm@s2idle-d3cold-basic-exec.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-bmg: [SKIP][139] ([Intel XE#6703]) -> [SKIP][140] ([Intel XE#944])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d/shard-bmg-2/igt@xe_query@multigpu-query-uc-fw-version-guc.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/shard-bmg-1/igt@xe_query@multigpu-query-uc-fw-version-guc.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[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#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[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#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[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#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[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#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[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#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[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#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389
[Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7450
[Intel XE#7477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7477
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7644]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7644
[Intel XE#7676]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7676
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695
[Intel XE#7724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7724
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7814
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7866]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7866
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915
[Intel XE#7916]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7916
[Intel XE#7950]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7950
[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
-------------
* Linux: xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d -> xe-pw-165914v2
IGT_8903: 6f88532e2fe22529195cc2f8cabff93d994688f8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5042-311a7de0a4e360124ba1abb933df42b021ef8b9d: 311a7de0a4e360124ba1abb933df42b021ef8b9d
xe-pw-165914v2: 165914v2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v2/index.html
[-- Attachment #2: Type: text/html, Size: 51478 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ CI.checkpatch: warning for gpu/buddy: Per-order free and used block scoreboards (rev3)
2026-05-11 16:41 [PATCH v2 0/3] gpu/buddy: Per-order free and used block scoreboards Francois Dugast
` (6 preceding siblings ...)
2026-05-12 4:13 ` ✗ Xe.CI.FULL: " Patchwork
@ 2026-05-12 12:33 ` Patchwork
2026-05-12 12:34 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
10 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-05-12 12:33 UTC (permalink / raw)
To: Francois Dugast; +Cc: intel-xe
== Series Details ==
Series: gpu/buddy: Per-order free and used block scoreboards (rev3)
URL : https://patchwork.freedesktop.org/series/165914/
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
061140b9bc586ae7f40abc1249c97e1cc72d1b9d
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 1644f68e601283ea1dfcd47029099f2dcd89e3ae
Author: Francois Dugast <francois.dugast@intel.com>
Date: Mon May 11 18:41:06 2026 +0200
gpu/buddy: Track per-order used blocks with a scoreboard
Extend the scoreboard approach from the previous commit to used blocks,
so drm_buddy_print() can report per-order allocation pressure in O(1).
Unlike free blocks, an allocated block can leave the allocated state
through mark_free() (normal free and gpu_buddy_block_trim()) or be
consumed directly by gpu_block_free() during coalescing. Both sites are
guarded by gpu_buddy_block_is_allocated() and paired with the increment
in mark_allocated().
v2:
- Update after fix for use-after-free in split_block() call sites
- Change goto label to out_free_used_scoreboard for clarity
- Make drm_buddy_print() and gpu_buddy_print() symmetric for used and
free
Signed-off-by: Francois Dugast <francois.dugast@intel.com>
Assisted-by: GitHub Copilot:claude-sonnet-4.6
+ /mt/dim checkpatch b83102e9c06357b09f2cfbe944269786cb6985c4 drm-intel
e1e022f337b4 gpu/buddy: Fix use-after-free in split_block() call sites
-:24: WARNING:BAD_REPORTED_BY_LINK: Reported-by: should be immediately followed by Closes: with a URL to the report
#24:
Reported-by: Sashiko <sashiko-bot@kernel.org>
Signed-off-by: Francois Dugast <francois.dugast@intel.com>
-:26: WARNING:BAD_SIGN_OFF: Assisted-by expects 'AGENT_NAME:MODEL_VERSION [TOOL1] [TOOL2]' format
#26:
Assisted-by: GitHub Copilot:claude-sonnet-4.6
total: 0 errors, 2 warnings, 0 checks, 44 lines checked
d8c958ca521a gpu/buddy: Track per-order free blocks with a scoreboard
-:25: WARNING:BAD_SIGN_OFF: Assisted-by expects 'AGENT_NAME:MODEL_VERSION [TOOL1] [TOOL2]' format
#25:
Assisted-by: GitHub Copilot:claude-sonnet-4.6
total: 0 errors, 1 warnings, 0 checks, 160 lines checked
1644f68e6012 gpu/buddy: Track per-order used blocks with a scoreboard
-:22: WARNING:BAD_SIGN_OFF: Assisted-by expects 'AGENT_NAME:MODEL_VERSION [TOOL1] [TOOL2]' format
#22:
Assisted-by: GitHub Copilot:claude-sonnet-4.6
total: 0 errors, 1 warnings, 0 checks, 129 lines checked
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ CI.KUnit: success for gpu/buddy: Per-order free and used block scoreboards (rev3)
2026-05-11 16:41 [PATCH v2 0/3] gpu/buddy: Per-order free and used block scoreboards Francois Dugast
` (7 preceding siblings ...)
2026-05-12 12:33 ` ✗ CI.checkpatch: warning for gpu/buddy: Per-order free and used block scoreboards (rev3) Patchwork
@ 2026-05-12 12:34 ` Patchwork
2026-05-12 13:57 ` ✓ Xe.CI.BAT: " Patchwork
2026-05-13 0:43 ` ✗ Xe.CI.FULL: failure " Patchwork
10 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-05-12 12:34 UTC (permalink / raw)
To: Francois Dugast; +Cc: intel-xe
== Series Details ==
Series: gpu/buddy: Per-order free and used block scoreboards (rev3)
URL : https://patchwork.freedesktop.org/series/165914/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[12:33:31] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:33:35] 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
[12:34:06] Starting KUnit Kernel (1/1)...
[12:34:06] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:34:06] ================== guc_buf (11 subtests) ===================
[12:34:06] [PASSED] test_smallest
[12:34:06] [PASSED] test_largest
[12:34:06] [PASSED] test_granular
[12:34:06] [PASSED] test_unique
[12:34:06] [PASSED] test_overlap
[12:34:06] [PASSED] test_reusable
[12:34:06] [PASSED] test_too_big
[12:34:06] [PASSED] test_flush
[12:34:06] [PASSED] test_lookup
[12:34:06] [PASSED] test_data
[12:34:06] [PASSED] test_class
[12:34:06] ===================== [PASSED] guc_buf =====================
[12:34:06] =================== guc_dbm (7 subtests) ===================
[12:34:06] [PASSED] test_empty
[12:34:06] [PASSED] test_default
[12:34:06] ======================== test_size ========================
[12:34:06] [PASSED] 4
[12:34:06] [PASSED] 8
[12:34:06] [PASSED] 32
[12:34:06] [PASSED] 256
[12:34:06] ==================== [PASSED] test_size ====================
[12:34:06] ======================= test_reuse ========================
[12:34:06] [PASSED] 4
[12:34:06] [PASSED] 8
[12:34:06] [PASSED] 32
[12:34:06] [PASSED] 256
[12:34:06] =================== [PASSED] test_reuse ====================
[12:34:06] =================== test_range_overlap ====================
[12:34:06] [PASSED] 4
[12:34:06] [PASSED] 8
[12:34:06] [PASSED] 32
[12:34:06] [PASSED] 256
[12:34:06] =============== [PASSED] test_range_overlap ================
[12:34:06] =================== test_range_compact ====================
[12:34:06] [PASSED] 4
[12:34:06] [PASSED] 8
[12:34:06] [PASSED] 32
[12:34:06] [PASSED] 256
[12:34:06] =============== [PASSED] test_range_compact ================
[12:34:06] ==================== test_range_spare =====================
[12:34:06] [PASSED] 4
[12:34:06] [PASSED] 8
[12:34:06] [PASSED] 32
[12:34:06] [PASSED] 256
[12:34:06] ================ [PASSED] test_range_spare =================
[12:34:06] ===================== [PASSED] guc_dbm =====================
[12:34:06] =================== guc_idm (6 subtests) ===================
[12:34:06] [PASSED] bad_init
[12:34:06] [PASSED] no_init
[12:34:06] [PASSED] init_fini
[12:34:06] [PASSED] check_used
[12:34:06] [PASSED] check_quota
[12:34:06] [PASSED] check_all
[12:34:06] ===================== [PASSED] guc_idm =====================
[12:34:06] ================== no_relay (3 subtests) ===================
[12:34:06] [PASSED] xe_drops_guc2pf_if_not_ready
[12:34:06] [PASSED] xe_drops_guc2vf_if_not_ready
[12:34:06] [PASSED] xe_rejects_send_if_not_ready
[12:34:06] ==================== [PASSED] no_relay =====================
[12:34:06] ================== pf_relay (14 subtests) ==================
[12:34:06] [PASSED] pf_rejects_guc2pf_too_short
[12:34:06] [PASSED] pf_rejects_guc2pf_too_long
[12:34:06] [PASSED] pf_rejects_guc2pf_no_payload
[12:34:06] [PASSED] pf_fails_no_payload
[12:34:06] [PASSED] pf_fails_bad_origin
[12:34:06] [PASSED] pf_fails_bad_type
[12:34:06] [PASSED] pf_txn_reports_error
[12:34:06] [PASSED] pf_txn_sends_pf2guc
[12:34:06] [PASSED] pf_sends_pf2guc
[12:34:06] [SKIPPED] pf_loopback_nop
[12:34:06] [SKIPPED] pf_loopback_echo
[12:34:06] [SKIPPED] pf_loopback_fail
[12:34:06] [SKIPPED] pf_loopback_busy
[12:34:06] [SKIPPED] pf_loopback_retry
[12:34:06] ==================== [PASSED] pf_relay =====================
[12:34:06] ================== vf_relay (3 subtests) ===================
[12:34:06] [PASSED] vf_rejects_guc2vf_too_short
[12:34:06] [PASSED] vf_rejects_guc2vf_too_long
[12:34:06] [PASSED] vf_rejects_guc2vf_no_payload
[12:34:06] ==================== [PASSED] vf_relay =====================
[12:34:06] ================ pf_gt_config (9 subtests) =================
[12:34:06] [PASSED] fair_contexts_1vf
[12:34:06] [PASSED] fair_doorbells_1vf
[12:34:06] [PASSED] fair_ggtt_1vf
[12:34:06] ====================== fair_vram_1vf ======================
[12:34:06] [PASSED] 3.50 GiB
[12:34:06] [PASSED] 11.5 GiB
[12:34:06] [PASSED] 15.5 GiB
[12:34:06] [PASSED] 31.5 GiB
[12:34:06] [PASSED] 63.5 GiB
[12:34:06] [PASSED] 1.91 GiB
[12:34:06] ================== [PASSED] fair_vram_1vf ==================
[12:34:06] ================ fair_vram_1vf_admin_only =================
[12:34:06] [PASSED] 3.50 GiB
[12:34:06] [PASSED] 11.5 GiB
[12:34:06] [PASSED] 15.5 GiB
[12:34:06] [PASSED] 31.5 GiB
[12:34:06] [PASSED] 63.5 GiB
[12:34:06] [PASSED] 1.91 GiB
[12:34:06] ============ [PASSED] fair_vram_1vf_admin_only =============
[12:34:06] ====================== fair_contexts ======================
[12:34:06] [PASSED] 1 VF
[12:34:06] [PASSED] 2 VFs
[12:34:06] [PASSED] 3 VFs
[12:34:06] [PASSED] 4 VFs
[12:34:06] [PASSED] 5 VFs
[12:34:06] [PASSED] 6 VFs
[12:34:06] [PASSED] 7 VFs
[12:34:06] [PASSED] 8 VFs
[12:34:06] [PASSED] 9 VFs
[12:34:06] [PASSED] 10 VFs
[12:34:06] [PASSED] 11 VFs
[12:34:06] [PASSED] 12 VFs
[12:34:06] [PASSED] 13 VFs
[12:34:06] [PASSED] 14 VFs
[12:34:06] [PASSED] 15 VFs
[12:34:06] [PASSED] 16 VFs
[12:34:06] [PASSED] 17 VFs
[12:34:06] [PASSED] 18 VFs
[12:34:06] [PASSED] 19 VFs
[12:34:06] [PASSED] 20 VFs
[12:34:06] [PASSED] 21 VFs
[12:34:06] [PASSED] 22 VFs
[12:34:06] [PASSED] 23 VFs
[12:34:06] [PASSED] 24 VFs
[12:34:06] [PASSED] 25 VFs
[12:34:06] [PASSED] 26 VFs
[12:34:06] [PASSED] 27 VFs
[12:34:06] [PASSED] 28 VFs
[12:34:06] [PASSED] 29 VFs
[12:34:06] [PASSED] 30 VFs
[12:34:06] [PASSED] 31 VFs
[12:34:06] [PASSED] 32 VFs
[12:34:06] [PASSED] 33 VFs
[12:34:06] [PASSED] 34 VFs
[12:34:06] [PASSED] 35 VFs
[12:34:06] [PASSED] 36 VFs
[12:34:06] [PASSED] 37 VFs
[12:34:06] [PASSED] 38 VFs
[12:34:06] [PASSED] 39 VFs
[12:34:06] [PASSED] 40 VFs
[12:34:06] [PASSED] 41 VFs
[12:34:06] [PASSED] 42 VFs
[12:34:06] [PASSED] 43 VFs
[12:34:06] [PASSED] 44 VFs
[12:34:06] [PASSED] 45 VFs
[12:34:06] [PASSED] 46 VFs
[12:34:06] [PASSED] 47 VFs
[12:34:06] [PASSED] 48 VFs
[12:34:06] [PASSED] 49 VFs
[12:34:06] [PASSED] 50 VFs
[12:34:06] [PASSED] 51 VFs
[12:34:06] [PASSED] 52 VFs
[12:34:06] [PASSED] 53 VFs
[12:34:06] [PASSED] 54 VFs
[12:34:06] [PASSED] 55 VFs
[12:34:06] [PASSED] 56 VFs
[12:34:06] [PASSED] 57 VFs
[12:34:06] [PASSED] 58 VFs
[12:34:06] [PASSED] 59 VFs
[12:34:06] [PASSED] 60 VFs
[12:34:06] [PASSED] 61 VFs
[12:34:07] [PASSED] 62 VFs
[12:34:07] [PASSED] 63 VFs
[12:34:07] ================== [PASSED] fair_contexts ==================
[12:34:07] ===================== fair_doorbells ======================
[12:34:07] [PASSED] 1 VF
[12:34:07] [PASSED] 2 VFs
[12:34:07] [PASSED] 3 VFs
[12:34:07] [PASSED] 4 VFs
[12:34:07] [PASSED] 5 VFs
[12:34:07] [PASSED] 6 VFs
[12:34:07] [PASSED] 7 VFs
[12:34:07] [PASSED] 8 VFs
[12:34:07] [PASSED] 9 VFs
[12:34:07] [PASSED] 10 VFs
[12:34:07] [PASSED] 11 VFs
[12:34:07] [PASSED] 12 VFs
[12:34:07] [PASSED] 13 VFs
[12:34:07] [PASSED] 14 VFs
[12:34:07] [PASSED] 15 VFs
[12:34:07] [PASSED] 16 VFs
[12:34:07] [PASSED] 17 VFs
[12:34:07] [PASSED] 18 VFs
[12:34:07] [PASSED] 19 VFs
[12:34:07] [PASSED] 20 VFs
[12:34:07] [PASSED] 21 VFs
[12:34:07] [PASSED] 22 VFs
[12:34:07] [PASSED] 23 VFs
[12:34:07] [PASSED] 24 VFs
[12:34:07] [PASSED] 25 VFs
[12:34:07] [PASSED] 26 VFs
[12:34:07] [PASSED] 27 VFs
[12:34:07] [PASSED] 28 VFs
[12:34:07] [PASSED] 29 VFs
[12:34:07] [PASSED] 30 VFs
[12:34:07] [PASSED] 31 VFs
[12:34:07] [PASSED] 32 VFs
[12:34:07] [PASSED] 33 VFs
[12:34:07] [PASSED] 34 VFs
[12:34:07] [PASSED] 35 VFs
[12:34:07] [PASSED] 36 VFs
[12:34:07] [PASSED] 37 VFs
[12:34:07] [PASSED] 38 VFs
[12:34:07] [PASSED] 39 VFs
[12:34:07] [PASSED] 40 VFs
[12:34:07] [PASSED] 41 VFs
[12:34:07] [PASSED] 42 VFs
[12:34:07] [PASSED] 43 VFs
[12:34:07] [PASSED] 44 VFs
[12:34:07] [PASSED] 45 VFs
[12:34:07] [PASSED] 46 VFs
[12:34:07] [PASSED] 47 VFs
[12:34:07] [PASSED] 48 VFs
[12:34:07] [PASSED] 49 VFs
[12:34:07] [PASSED] 50 VFs
[12:34:07] [PASSED] 51 VFs
[12:34:07] [PASSED] 52 VFs
[12:34:07] [PASSED] 53 VFs
[12:34:07] [PASSED] 54 VFs
[12:34:07] [PASSED] 55 VFs
[12:34:07] [PASSED] 56 VFs
[12:34:07] [PASSED] 57 VFs
[12:34:07] [PASSED] 58 VFs
[12:34:07] [PASSED] 59 VFs
[12:34:07] [PASSED] 60 VFs
[12:34:07] [PASSED] 61 VFs
[12:34:07] [PASSED] 62 VFs
[12:34:07] [PASSED] 63 VFs
[12:34:07] ================= [PASSED] fair_doorbells ==================
[12:34:07] ======================== fair_ggtt ========================
[12:34:07] [PASSED] 1 VF
[12:34:07] [PASSED] 2 VFs
[12:34:07] [PASSED] 3 VFs
[12:34:07] [PASSED] 4 VFs
[12:34:07] [PASSED] 5 VFs
[12:34:07] [PASSED] 6 VFs
[12:34:07] [PASSED] 7 VFs
[12:34:07] [PASSED] 8 VFs
[12:34:07] [PASSED] 9 VFs
[12:34:07] [PASSED] 10 VFs
[12:34:07] [PASSED] 11 VFs
[12:34:07] [PASSED] 12 VFs
[12:34:07] [PASSED] 13 VFs
[12:34:07] [PASSED] 14 VFs
[12:34:07] [PASSED] 15 VFs
[12:34:07] [PASSED] 16 VFs
[12:34:07] [PASSED] 17 VFs
[12:34:07] [PASSED] 18 VFs
[12:34:07] [PASSED] 19 VFs
[12:34:07] [PASSED] 20 VFs
[12:34:07] [PASSED] 21 VFs
[12:34:07] [PASSED] 22 VFs
[12:34:07] [PASSED] 23 VFs
[12:34:07] [PASSED] 24 VFs
[12:34:07] [PASSED] 25 VFs
[12:34:07] [PASSED] 26 VFs
[12:34:07] [PASSED] 27 VFs
[12:34:07] [PASSED] 28 VFs
[12:34:07] [PASSED] 29 VFs
[12:34:07] [PASSED] 30 VFs
[12:34:07] [PASSED] 31 VFs
[12:34:07] [PASSED] 32 VFs
[12:34:07] [PASSED] 33 VFs
[12:34:07] [PASSED] 34 VFs
[12:34:07] [PASSED] 35 VFs
[12:34:07] [PASSED] 36 VFs
[12:34:07] [PASSED] 37 VFs
[12:34:07] [PASSED] 38 VFs
[12:34:07] [PASSED] 39 VFs
[12:34:07] [PASSED] 40 VFs
[12:34:07] [PASSED] 41 VFs
[12:34:07] [PASSED] 42 VFs
[12:34:07] [PASSED] 43 VFs
[12:34:07] [PASSED] 44 VFs
[12:34:07] [PASSED] 45 VFs
[12:34:07] [PASSED] 46 VFs
[12:34:07] [PASSED] 47 VFs
[12:34:07] [PASSED] 48 VFs
[12:34:07] [PASSED] 49 VFs
[12:34:07] [PASSED] 50 VFs
[12:34:07] [PASSED] 51 VFs
[12:34:07] [PASSED] 52 VFs
[12:34:07] [PASSED] 53 VFs
[12:34:07] [PASSED] 54 VFs
[12:34:07] [PASSED] 55 VFs
[12:34:07] [PASSED] 56 VFs
[12:34:07] [PASSED] 57 VFs
[12:34:07] [PASSED] 58 VFs
[12:34:07] [PASSED] 59 VFs
[12:34:07] [PASSED] 60 VFs
[12:34:07] [PASSED] 61 VFs
[12:34:07] [PASSED] 62 VFs
[12:34:07] [PASSED] 63 VFs
[12:34:07] ==================== [PASSED] fair_ggtt ====================
[12:34:07] ======================== fair_vram ========================
[12:34:07] [PASSED] 1 VF
[12:34:07] [PASSED] 2 VFs
[12:34:07] [PASSED] 3 VFs
[12:34:07] [PASSED] 4 VFs
[12:34:07] [PASSED] 5 VFs
[12:34:07] [PASSED] 6 VFs
[12:34:07] [PASSED] 7 VFs
[12:34:07] [PASSED] 8 VFs
[12:34:07] [PASSED] 9 VFs
[12:34:07] [PASSED] 10 VFs
[12:34:07] [PASSED] 11 VFs
[12:34:07] [PASSED] 12 VFs
[12:34:07] [PASSED] 13 VFs
[12:34:07] [PASSED] 14 VFs
[12:34:07] [PASSED] 15 VFs
[12:34:07] [PASSED] 16 VFs
[12:34:07] [PASSED] 17 VFs
[12:34:07] [PASSED] 18 VFs
[12:34:07] [PASSED] 19 VFs
[12:34:07] [PASSED] 20 VFs
[12:34:07] [PASSED] 21 VFs
[12:34:07] [PASSED] 22 VFs
[12:34:07] [PASSED] 23 VFs
[12:34:07] [PASSED] 24 VFs
[12:34:07] [PASSED] 25 VFs
[12:34:07] [PASSED] 26 VFs
[12:34:07] [PASSED] 27 VFs
[12:34:07] [PASSED] 28 VFs
[12:34:07] [PASSED] 29 VFs
[12:34:07] [PASSED] 30 VFs
[12:34:07] [PASSED] 31 VFs
[12:34:07] [PASSED] 32 VFs
[12:34:07] [PASSED] 33 VFs
[12:34:07] [PASSED] 34 VFs
[12:34:07] [PASSED] 35 VFs
[12:34:07] [PASSED] 36 VFs
[12:34:07] [PASSED] 37 VFs
[12:34:07] [PASSED] 38 VFs
[12:34:07] [PASSED] 39 VFs
[12:34:07] [PASSED] 40 VFs
[12:34:07] [PASSED] 41 VFs
[12:34:07] [PASSED] 42 VFs
[12:34:07] [PASSED] 43 VFs
[12:34:07] [PASSED] 44 VFs
[12:34:07] [PASSED] 45 VFs
[12:34:07] [PASSED] 46 VFs
[12:34:07] [PASSED] 47 VFs
[12:34:07] [PASSED] 48 VFs
[12:34:07] [PASSED] 49 VFs
[12:34:07] [PASSED] 50 VFs
[12:34:07] [PASSED] 51 VFs
[12:34:07] [PASSED] 52 VFs
[12:34:07] [PASSED] 53 VFs
[12:34:07] [PASSED] 54 VFs
[12:34:07] [PASSED] 55 VFs
[12:34:07] [PASSED] 56 VFs
[12:34:07] [PASSED] 57 VFs
[12:34:07] [PASSED] 58 VFs
[12:34:07] [PASSED] 59 VFs
[12:34:07] [PASSED] 60 VFs
[12:34:07] [PASSED] 61 VFs
[12:34:07] [PASSED] 62 VFs
[12:34:07] [PASSED] 63 VFs
[12:34:07] ==================== [PASSED] fair_vram ====================
[12:34:07] ================== [PASSED] pf_gt_config ===================
[12:34:07] ===================== lmtt (1 subtest) =====================
[12:34:07] ======================== test_ops =========================
[12:34:07] [PASSED] 2-level
[12:34:07] [PASSED] multi-level
[12:34:07] ==================== [PASSED] test_ops =====================
[12:34:07] ====================== [PASSED] lmtt =======================
[12:34:07] ================= pf_service (11 subtests) =================
[12:34:07] [PASSED] pf_negotiate_any
[12:34:07] [PASSED] pf_negotiate_base_match
[12:34:07] [PASSED] pf_negotiate_base_newer
[12:34:07] [PASSED] pf_negotiate_base_next
[12:34:07] [SKIPPED] pf_negotiate_base_older
[12:34:07] [PASSED] pf_negotiate_base_prev
[12:34:07] [PASSED] pf_negotiate_latest_match
[12:34:07] [PASSED] pf_negotiate_latest_newer
[12:34:07] [PASSED] pf_negotiate_latest_next
[12:34:07] [SKIPPED] pf_negotiate_latest_older
[12:34:07] [SKIPPED] pf_negotiate_latest_prev
[12:34:07] =================== [PASSED] pf_service ====================
[12:34:07] ================= xe_guc_g2g (2 subtests) ==================
[12:34:07] ============== xe_live_guc_g2g_kunit_default ==============
[12:34:07] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[12:34:07] ============== xe_live_guc_g2g_kunit_allmem ===============
[12:34:07] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[12:34:07] =================== [SKIPPED] xe_guc_g2g ===================
[12:34:07] =================== xe_mocs (2 subtests) ===================
[12:34:07] ================ xe_live_mocs_kernel_kunit ================
[12:34:07] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[12:34:07] ================ xe_live_mocs_reset_kunit =================
[12:34:07] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[12:34:07] ==================== [SKIPPED] xe_mocs =====================
[12:34:07] ================= xe_migrate (2 subtests) ==================
[12:34:07] ================= xe_migrate_sanity_kunit =================
[12:34:07] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[12:34:07] ================== xe_validate_ccs_kunit ==================
[12:34:07] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[12:34:07] =================== [SKIPPED] xe_migrate ===================
[12:34:07] ================== xe_dma_buf (1 subtest) ==================
[12:34:07] ==================== xe_dma_buf_kunit =====================
[12:34:07] ================ [SKIPPED] xe_dma_buf_kunit ================
[12:34:07] =================== [SKIPPED] xe_dma_buf ===================
[12:34:07] ================= xe_bo_shrink (1 subtest) =================
[12:34:07] =================== xe_bo_shrink_kunit ====================
[12:34:07] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[12:34:07] ================== [SKIPPED] xe_bo_shrink ==================
[12:34:07] ==================== xe_bo (2 subtests) ====================
[12:34:07] ================== xe_ccs_migrate_kunit ===================
[12:34:07] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[12:34:07] ==================== xe_bo_evict_kunit ====================
[12:34:07] =============== [SKIPPED] xe_bo_evict_kunit ================
[12:34:07] ===================== [SKIPPED] xe_bo ======================
[12:34:07] ==================== args (13 subtests) ====================
[12:34:07] [PASSED] count_args_test
[12:34:07] [PASSED] call_args_example
[12:34:07] [PASSED] call_args_test
[12:34:07] [PASSED] drop_first_arg_example
[12:34:07] [PASSED] drop_first_arg_test
[12:34:07] [PASSED] first_arg_example
[12:34:07] [PASSED] first_arg_test
[12:34:07] [PASSED] last_arg_example
[12:34:07] [PASSED] last_arg_test
[12:34:07] [PASSED] pick_arg_example
[12:34:07] [PASSED] if_args_example
[12:34:07] [PASSED] if_args_test
[12:34:07] [PASSED] sep_comma_example
[12:34:07] ====================== [PASSED] args =======================
[12:34:07] =================== xe_pci (3 subtests) ====================
[12:34:07] ==================== check_graphics_ip ====================
[12:34:07] [PASSED] 12.00 Xe_LP
[12:34:07] [PASSED] 12.10 Xe_LP+
[12:34:07] [PASSED] 12.55 Xe_HPG
[12:34:07] [PASSED] 12.60 Xe_HPC
[12:34:07] [PASSED] 12.70 Xe_LPG
[12:34:07] [PASSED] 12.71 Xe_LPG
[12:34:07] [PASSED] 12.74 Xe_LPG+
[12:34:07] [PASSED] 20.01 Xe2_HPG
[12:34:07] [PASSED] 20.02 Xe2_HPG
[12:34:07] [PASSED] 20.04 Xe2_LPG
[12:34:07] [PASSED] 30.00 Xe3_LPG
[12:34:07] [PASSED] 30.01 Xe3_LPG
[12:34:07] [PASSED] 30.03 Xe3_LPG
[12:34:07] [PASSED] 30.04 Xe3_LPG
[12:34:07] [PASSED] 30.05 Xe3_LPG
[12:34:07] [PASSED] 35.10 Xe3p_LPG
[12:34:07] [PASSED] 35.11 Xe3p_XPC
[12:34:07] ================ [PASSED] check_graphics_ip ================
[12:34:07] ===================== check_media_ip ======================
[12:34:07] [PASSED] 12.00 Xe_M
[12:34:07] [PASSED] 12.55 Xe_HPM
[12:34:07] [PASSED] 13.00 Xe_LPM+
[12:34:07] [PASSED] 13.01 Xe2_HPM
[12:34:07] [PASSED] 20.00 Xe2_LPM
[12:34:07] [PASSED] 30.00 Xe3_LPM
[12:34:07] [PASSED] 30.02 Xe3_LPM
[12:34:07] [PASSED] 35.00 Xe3p_LPM
[12:34:07] [PASSED] 35.03 Xe3p_HPM
[12:34:07] ================= [PASSED] check_media_ip ==================
[12:34:07] =================== check_platform_desc ===================
[12:34:07] [PASSED] 0x9A60 (TIGERLAKE)
[12:34:07] [PASSED] 0x9A68 (TIGERLAKE)
[12:34:07] [PASSED] 0x9A70 (TIGERLAKE)
[12:34:07] [PASSED] 0x9A40 (TIGERLAKE)
[12:34:07] [PASSED] 0x9A49 (TIGERLAKE)
[12:34:07] [PASSED] 0x9A59 (TIGERLAKE)
[12:34:07] [PASSED] 0x9A78 (TIGERLAKE)
[12:34:07] [PASSED] 0x9AC0 (TIGERLAKE)
[12:34:07] [PASSED] 0x9AC9 (TIGERLAKE)
[12:34:07] [PASSED] 0x9AD9 (TIGERLAKE)
[12:34:07] [PASSED] 0x9AF8 (TIGERLAKE)
[12:34:07] [PASSED] 0x4C80 (ROCKETLAKE)
[12:34:07] [PASSED] 0x4C8A (ROCKETLAKE)
[12:34:07] [PASSED] 0x4C8B (ROCKETLAKE)
[12:34:07] [PASSED] 0x4C8C (ROCKETLAKE)
[12:34:07] [PASSED] 0x4C90 (ROCKETLAKE)
[12:34:07] [PASSED] 0x4C9A (ROCKETLAKE)
[12:34:07] [PASSED] 0x4680 (ALDERLAKE_S)
[12:34:07] [PASSED] 0x4682 (ALDERLAKE_S)
[12:34:07] [PASSED] 0x4688 (ALDERLAKE_S)
[12:34:07] [PASSED] 0x468A (ALDERLAKE_S)
[12:34:07] [PASSED] 0x468B (ALDERLAKE_S)
[12:34:07] [PASSED] 0x4690 (ALDERLAKE_S)
[12:34:07] [PASSED] 0x4692 (ALDERLAKE_S)
[12:34:07] [PASSED] 0x4693 (ALDERLAKE_S)
[12:34:07] [PASSED] 0x46A0 (ALDERLAKE_P)
[12:34:07] [PASSED] 0x46A1 (ALDERLAKE_P)
[12:34:07] [PASSED] 0x46A2 (ALDERLAKE_P)
[12:34:07] [PASSED] 0x46A3 (ALDERLAKE_P)
[12:34:07] [PASSED] 0x46A6 (ALDERLAKE_P)
[12:34:07] [PASSED] 0x46A8 (ALDERLAKE_P)
[12:34:07] [PASSED] 0x46AA (ALDERLAKE_P)
[12:34:07] [PASSED] 0x462A (ALDERLAKE_P)
[12:34:07] [PASSED] 0x4626 (ALDERLAKE_P)
[12:34:07] [PASSED] 0x4628 (ALDERLAKE_P)
[12:34:07] [PASSED] 0x46B0 (ALDERLAKE_P)
[12:34:07] [PASSED] 0x46B1 (ALDERLAKE_P)
[12:34:07] [PASSED] 0x46B2 (ALDERLAKE_P)
[12:34:07] [PASSED] 0x46B3 (ALDERLAKE_P)
[12:34:07] [PASSED] 0x46C0 (ALDERLAKE_P)
[12:34:07] [PASSED] 0x46C1 (ALDERLAKE_P)
[12:34:07] [PASSED] 0x46C2 (ALDERLAKE_P)
[12:34:07] [PASSED] 0x46C3 (ALDERLAKE_P)
[12:34:07] [PASSED] 0x46D0 (ALDERLAKE_N)
[12:34:07] [PASSED] 0x46D1 (ALDERLAKE_N)
[12:34:07] [PASSED] 0x46D2 (ALDERLAKE_N)
[12:34:07] [PASSED] 0x46D3 (ALDERLAKE_N)
[12:34:07] [PASSED] 0x46D4 (ALDERLAKE_N)
[12:34:07] [PASSED] 0xA721 (ALDERLAKE_P)
[12:34:07] [PASSED] 0xA7A1 (ALDERLAKE_P)
[12:34:07] [PASSED] 0xA7A9 (ALDERLAKE_P)
[12:34:07] [PASSED] 0xA7AC (ALDERLAKE_P)
[12:34:07] [PASSED] 0xA7AD (ALDERLAKE_P)
[12:34:07] [PASSED] 0xA720 (ALDERLAKE_P)
[12:34:07] [PASSED] 0xA7A0 (ALDERLAKE_P)
[12:34:07] [PASSED] 0xA7A8 (ALDERLAKE_P)
[12:34:07] [PASSED] 0xA7AA (ALDERLAKE_P)
[12:34:07] [PASSED] 0xA7AB (ALDERLAKE_P)
[12:34:07] [PASSED] 0xA780 (ALDERLAKE_S)
[12:34:07] [PASSED] 0xA781 (ALDERLAKE_S)
[12:34:07] [PASSED] 0xA782 (ALDERLAKE_S)
[12:34:07] [PASSED] 0xA783 (ALDERLAKE_S)
[12:34:07] [PASSED] 0xA788 (ALDERLAKE_S)
[12:34:07] [PASSED] 0xA789 (ALDERLAKE_S)
[12:34:07] [PASSED] 0xA78A (ALDERLAKE_S)
[12:34:07] [PASSED] 0xA78B (ALDERLAKE_S)
[12:34:07] [PASSED] 0x4905 (DG1)
[12:34:07] [PASSED] 0x4906 (DG1)
[12:34:07] [PASSED] 0x4907 (DG1)
[12:34:07] [PASSED] 0x4908 (DG1)
[12:34:07] [PASSED] 0x4909 (DG1)
[12:34:07] [PASSED] 0x56C0 (DG2)
[12:34:07] [PASSED] 0x56C2 (DG2)
[12:34:07] [PASSED] 0x56C1 (DG2)
[12:34:07] [PASSED] 0x7D51 (METEORLAKE)
[12:34:07] [PASSED] 0x7DD1 (METEORLAKE)
[12:34:07] [PASSED] 0x7D41 (METEORLAKE)
[12:34:07] [PASSED] 0x7D67 (METEORLAKE)
[12:34:07] [PASSED] 0xB640 (METEORLAKE)
[12:34:07] [PASSED] 0x56A0 (DG2)
[12:34:07] [PASSED] 0x56A1 (DG2)
[12:34:07] [PASSED] 0x56A2 (DG2)
[12:34:07] [PASSED] 0x56BE (DG2)
[12:34:07] [PASSED] 0x56BF (DG2)
[12:34:07] [PASSED] 0x5690 (DG2)
[12:34:07] [PASSED] 0x5691 (DG2)
[12:34:07] [PASSED] 0x5692 (DG2)
[12:34:07] [PASSED] 0x56A5 (DG2)
[12:34:07] [PASSED] 0x56A6 (DG2)
[12:34:07] [PASSED] 0x56B0 (DG2)
[12:34:07] [PASSED] 0x56B1 (DG2)
[12:34:07] [PASSED] 0x56BA (DG2)
[12:34:07] [PASSED] 0x56BB (DG2)
[12:34:07] [PASSED] 0x56BC (DG2)
[12:34:07] [PASSED] 0x56BD (DG2)
[12:34:07] [PASSED] 0x5693 (DG2)
[12:34:07] [PASSED] 0x5694 (DG2)
[12:34:07] [PASSED] 0x5695 (DG2)
[12:34:07] [PASSED] 0x56A3 (DG2)
[12:34:07] [PASSED] 0x56A4 (DG2)
[12:34:07] [PASSED] 0x56B2 (DG2)
[12:34:07] [PASSED] 0x56B3 (DG2)
[12:34:07] [PASSED] 0x5696 (DG2)
[12:34:07] [PASSED] 0x5697 (DG2)
[12:34:07] [PASSED] 0xB69 (PVC)
[12:34:07] [PASSED] 0xB6E (PVC)
[12:34:07] [PASSED] 0xBD4 (PVC)
[12:34:07] [PASSED] 0xBD5 (PVC)
[12:34:07] [PASSED] 0xBD6 (PVC)
[12:34:07] [PASSED] 0xBD7 (PVC)
[12:34:07] [PASSED] 0xBD8 (PVC)
[12:34:07] [PASSED] 0xBD9 (PVC)
[12:34:07] [PASSED] 0xBDA (PVC)
[12:34:07] [PASSED] 0xBDB (PVC)
[12:34:07] [PASSED] 0xBE0 (PVC)
[12:34:07] [PASSED] 0xBE1 (PVC)
[12:34:07] [PASSED] 0xBE5 (PVC)
[12:34:07] [PASSED] 0x7D40 (METEORLAKE)
[12:34:07] [PASSED] 0x7D45 (METEORLAKE)
[12:34:07] [PASSED] 0x7D55 (METEORLAKE)
[12:34:07] [PASSED] 0x7D60 (METEORLAKE)
[12:34:07] [PASSED] 0x7DD5 (METEORLAKE)
[12:34:07] [PASSED] 0x6420 (LUNARLAKE)
[12:34:07] [PASSED] 0x64A0 (LUNARLAKE)
[12:34:07] [PASSED] 0x64B0 (LUNARLAKE)
[12:34:07] [PASSED] 0xE202 (BATTLEMAGE)
[12:34:07] [PASSED] 0xE209 (BATTLEMAGE)
[12:34:07] [PASSED] 0xE20B (BATTLEMAGE)
[12:34:07] [PASSED] 0xE20C (BATTLEMAGE)
[12:34:07] [PASSED] 0xE20D (BATTLEMAGE)
[12:34:07] [PASSED] 0xE210 (BATTLEMAGE)
[12:34:07] [PASSED] 0xE211 (BATTLEMAGE)
[12:34:07] [PASSED] 0xE212 (BATTLEMAGE)
[12:34:07] [PASSED] 0xE216 (BATTLEMAGE)
[12:34:07] [PASSED] 0xE220 (BATTLEMAGE)
[12:34:07] [PASSED] 0xE221 (BATTLEMAGE)
[12:34:07] [PASSED] 0xE222 (BATTLEMAGE)
[12:34:07] [PASSED] 0xE223 (BATTLEMAGE)
[12:34:07] [PASSED] 0xB080 (PANTHERLAKE)
[12:34:07] [PASSED] 0xB081 (PANTHERLAKE)
[12:34:07] [PASSED] 0xB082 (PANTHERLAKE)
[12:34:07] [PASSED] 0xB083 (PANTHERLAKE)
[12:34:07] [PASSED] 0xB084 (PANTHERLAKE)
[12:34:07] [PASSED] 0xB085 (PANTHERLAKE)
[12:34:07] [PASSED] 0xB086 (PANTHERLAKE)
[12:34:07] [PASSED] 0xB087 (PANTHERLAKE)
[12:34:07] [PASSED] 0xB08F (PANTHERLAKE)
[12:34:07] [PASSED] 0xB090 (PANTHERLAKE)
[12:34:07] [PASSED] 0xB0A0 (PANTHERLAKE)
[12:34:07] [PASSED] 0xB0B0 (PANTHERLAKE)
[12:34:07] [PASSED] 0xFD80 (PANTHERLAKE)
[12:34:07] [PASSED] 0xFD81 (PANTHERLAKE)
[12:34:07] [PASSED] 0xD740 (NOVALAKE_S)
[12:34:07] [PASSED] 0xD741 (NOVALAKE_S)
[12:34:07] [PASSED] 0xD742 (NOVALAKE_S)
[12:34:07] [PASSED] 0xD743 (NOVALAKE_S)
[12:34:07] [PASSED] 0xD744 (NOVALAKE_S)
[12:34:07] [PASSED] 0xD745 (NOVALAKE_S)
[12:34:07] [PASSED] 0x674C (CRESCENTISLAND)
[12:34:07] [PASSED] 0x674D (CRESCENTISLAND)
[12:34:07] [PASSED] 0x674E (CRESCENTISLAND)
[12:34:07] [PASSED] 0x674F (CRESCENTISLAND)
[12:34:07] [PASSED] 0x6750 (CRESCENTISLAND)
[12:34:07] [PASSED] 0xD750 (NOVALAKE_P)
[12:34:07] [PASSED] 0xD751 (NOVALAKE_P)
[12:34:07] [PASSED] 0xD752 (NOVALAKE_P)
[12:34:07] [PASSED] 0xD753 (NOVALAKE_P)
[12:34:07] [PASSED] 0xD754 (NOVALAKE_P)
[12:34:07] [PASSED] 0xD755 (NOVALAKE_P)
[12:34:07] [PASSED] 0xD756 (NOVALAKE_P)
[12:34:07] [PASSED] 0xD757 (NOVALAKE_P)
[12:34:07] [PASSED] 0xD75F (NOVALAKE_P)
[12:34:07] =============== [PASSED] check_platform_desc ===============
[12:34:07] ===================== [PASSED] xe_pci ======================
[12:34:07] =================== xe_rtp (2 subtests) ====================
[12:34:07] =============== xe_rtp_process_to_sr_tests ================
[12:34:07] [PASSED] coalesce-same-reg
[12:34:07] [PASSED] no-match-no-add
[12:34:07] [PASSED] match-or
[12:34:07] [PASSED] match-or-xfail
[12:34:07] [PASSED] no-match-no-add-multiple-rules
[12:34:07] [PASSED] two-regs-two-entries
[12:34:07] [PASSED] clr-one-set-other
[12:34:07] [PASSED] set-field
[12:34:07] [PASSED] conflict-duplicate
[12:34:07] [PASSED] conflict-not-disjoint
[12:34:07] [PASSED] conflict-reg-type
[12:34:07] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[12:34:07] ================== xe_rtp_process_tests ===================
[12:34:07] [PASSED] active1
[12:34:07] [PASSED] active2
[12:34:07] [PASSED] active-inactive
[12:34:07] [PASSED] inactive-active
[12:34:07] [PASSED] inactive-1st_or_active-inactive
[12:34:07] [PASSED] inactive-2nd_or_active-inactive
[12:34:07] [PASSED] inactive-last_or_active-inactive
[12:34:07] [PASSED] inactive-no_or_active-inactive
[12:34:07] ============== [PASSED] xe_rtp_process_tests ===============
[12:34:07] ===================== [PASSED] xe_rtp ======================
[12:34:07] ==================== xe_wa (1 subtest) =====================
[12:34:07] ======================== xe_wa_gt =========================
[12:34:07] [PASSED] TIGERLAKE B0
[12:34:07] [PASSED] DG1 A0
[12:34:07] [PASSED] DG1 B0
[12:34:07] [PASSED] ALDERLAKE_S A0
[12:34:07] [PASSED] ALDERLAKE_S B0
[12:34:07] [PASSED] ALDERLAKE_S C0
[12:34:07] [PASSED] ALDERLAKE_S D0
[12:34:07] [PASSED] ALDERLAKE_P A0
[12:34:07] [PASSED] ALDERLAKE_P B0
[12:34:07] [PASSED] ALDERLAKE_P C0
[12:34:07] [PASSED] ALDERLAKE_S RPLS D0
[12:34:07] [PASSED] ALDERLAKE_P RPLU E0
[12:34:07] [PASSED] DG2 G10 C0
[12:34:07] [PASSED] DG2 G11 B1
[12:34:07] [PASSED] DG2 G12 A1
[12:34:07] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:34:07] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[12:34:07] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[12:34:07] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[12:34:07] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[12:34:07] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[12:34:07] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[12:34:07] ==================== [PASSED] xe_wa_gt =====================
[12:34:07] ====================== [PASSED] xe_wa ======================
[12:34:07] ============================================================
[12:34:07] Testing complete. Ran 601 tests: passed: 583, skipped: 18
[12:34:07] Elapsed time: 36.044s total, 4.313s configuring, 31.116s building, 0.600s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[12:34:07] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:34:09] 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
[12:34:33] Starting KUnit Kernel (1/1)...
[12:34:33] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:34:33] ============ drm_test_pick_cmdline (2 subtests) ============
[12:34:33] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[12:34:33] =============== drm_test_pick_cmdline_named ===============
[12:34:33] [PASSED] NTSC
[12:34:33] [PASSED] NTSC-J
[12:34:33] [PASSED] PAL
[12:34:33] [PASSED] PAL-M
[12:34:33] =========== [PASSED] drm_test_pick_cmdline_named ===========
[12:34:33] ============== [PASSED] drm_test_pick_cmdline ==============
[12:34:33] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[12:34:33] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[12:34:33] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[12:34:33] =========== drm_validate_clone_mode (2 subtests) ===========
[12:34:33] ============== drm_test_check_in_clone_mode ===============
[12:34:33] [PASSED] in_clone_mode
[12:34:33] [PASSED] not_in_clone_mode
[12:34:33] ========== [PASSED] drm_test_check_in_clone_mode ===========
[12:34:33] =============== drm_test_check_valid_clones ===============
[12:34:33] [PASSED] not_in_clone_mode
[12:34:33] [PASSED] valid_clone
[12:34:33] [PASSED] invalid_clone
[12:34:33] =========== [PASSED] drm_test_check_valid_clones ===========
[12:34:33] ============= [PASSED] drm_validate_clone_mode =============
[12:34:33] ============= drm_validate_modeset (1 subtest) =============
[12:34:33] [PASSED] drm_test_check_connector_changed_modeset
[12:34:33] ============== [PASSED] drm_validate_modeset ===============
[12:34:33] ====== drm_test_bridge_get_current_state (2 subtests) ======
[12:34:33] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[12:34:33] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[12:34:33] ======== [PASSED] drm_test_bridge_get_current_state ========
[12:34:33] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[12:34:33] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[12:34:33] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[12:34:33] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[12:34:33] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[12:34:33] ============== drm_bridge_alloc (2 subtests) ===============
[12:34:33] [PASSED] drm_test_drm_bridge_alloc_basic
[12:34:33] [PASSED] drm_test_drm_bridge_alloc_get_put
[12:34:33] ================ [PASSED] drm_bridge_alloc =================
[12:34:33] ============= drm_cmdline_parser (40 subtests) =============
[12:34:33] [PASSED] drm_test_cmdline_force_d_only
[12:34:33] [PASSED] drm_test_cmdline_force_D_only_dvi
[12:34:33] [PASSED] drm_test_cmdline_force_D_only_hdmi
[12:34:33] [PASSED] drm_test_cmdline_force_D_only_not_digital
[12:34:33] [PASSED] drm_test_cmdline_force_e_only
[12:34:33] [PASSED] drm_test_cmdline_res
[12:34:33] [PASSED] drm_test_cmdline_res_vesa
[12:34:33] [PASSED] drm_test_cmdline_res_vesa_rblank
[12:34:33] [PASSED] drm_test_cmdline_res_rblank
[12:34:33] [PASSED] drm_test_cmdline_res_bpp
[12:34:33] [PASSED] drm_test_cmdline_res_refresh
[12:34:33] [PASSED] drm_test_cmdline_res_bpp_refresh
[12:34:33] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[12:34:33] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[12:34:33] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[12:34:33] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[12:34:33] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[12:34:33] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[12:34:33] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[12:34:33] [PASSED] drm_test_cmdline_res_margins_force_on
[12:34:33] [PASSED] drm_test_cmdline_res_vesa_margins
[12:34:33] [PASSED] drm_test_cmdline_name
[12:34:33] [PASSED] drm_test_cmdline_name_bpp
[12:34:33] [PASSED] drm_test_cmdline_name_option
[12:34:33] [PASSED] drm_test_cmdline_name_bpp_option
[12:34:33] [PASSED] drm_test_cmdline_rotate_0
[12:34:33] [PASSED] drm_test_cmdline_rotate_90
[12:34:33] [PASSED] drm_test_cmdline_rotate_180
[12:34:33] [PASSED] drm_test_cmdline_rotate_270
[12:34:33] [PASSED] drm_test_cmdline_hmirror
[12:34:33] [PASSED] drm_test_cmdline_vmirror
[12:34:33] [PASSED] drm_test_cmdline_margin_options
[12:34:33] [PASSED] drm_test_cmdline_multiple_options
[12:34:33] [PASSED] drm_test_cmdline_bpp_extra_and_option
[12:34:33] [PASSED] drm_test_cmdline_extra_and_option
[12:34:33] [PASSED] drm_test_cmdline_freestanding_options
[12:34:33] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[12:34:33] [PASSED] drm_test_cmdline_panel_orientation
[12:34:33] ================ drm_test_cmdline_invalid =================
[12:34:33] [PASSED] margin_only
[12:34:33] [PASSED] interlace_only
[12:34:33] [PASSED] res_missing_x
[12:34:33] [PASSED] res_missing_y
[12:34:33] [PASSED] res_bad_y
[12:34:33] [PASSED] res_missing_y_bpp
[12:34:33] [PASSED] res_bad_bpp
[12:34:33] [PASSED] res_bad_refresh
[12:34:33] [PASSED] res_bpp_refresh_force_on_off
[12:34:33] [PASSED] res_invalid_mode
[12:34:33] [PASSED] res_bpp_wrong_place_mode
[12:34:33] [PASSED] name_bpp_refresh
[12:34:33] [PASSED] name_refresh
[12:34:33] [PASSED] name_refresh_wrong_mode
[12:34:33] [PASSED] name_refresh_invalid_mode
[12:34:33] [PASSED] rotate_multiple
[12:34:33] [PASSED] rotate_invalid_val
[12:34:33] [PASSED] rotate_truncated
[12:34:33] [PASSED] invalid_option
[12:34:33] [PASSED] invalid_tv_option
[12:34:33] [PASSED] truncated_tv_option
[12:34:33] ============ [PASSED] drm_test_cmdline_invalid =============
[12:34:33] =============== drm_test_cmdline_tv_options ===============
[12:34:33] [PASSED] NTSC
[12:34:33] [PASSED] NTSC_443
[12:34:33] [PASSED] NTSC_J
[12:34:33] [PASSED] PAL
[12:34:33] [PASSED] PAL_M
[12:34:33] [PASSED] PAL_N
[12:34:33] [PASSED] SECAM
[12:34:33] [PASSED] MONO_525
[12:34:33] [PASSED] MONO_625
[12:34:33] =========== [PASSED] drm_test_cmdline_tv_options ===========
[12:34:33] =============== [PASSED] drm_cmdline_parser ================
[12:34:33] ========== drmm_connector_hdmi_init (20 subtests) ==========
[12:34:33] [PASSED] drm_test_connector_hdmi_init_valid
[12:34:33] [PASSED] drm_test_connector_hdmi_init_bpc_8
[12:34:33] [PASSED] drm_test_connector_hdmi_init_bpc_10
[12:34:33] [PASSED] drm_test_connector_hdmi_init_bpc_12
[12:34:33] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[12:34:33] [PASSED] drm_test_connector_hdmi_init_bpc_null
[12:34:33] [PASSED] drm_test_connector_hdmi_init_formats_empty
[12:34:33] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[12:34:33] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:34:33] [PASSED] supported_formats=0x9 yuv420_allowed=1
[12:34:33] [PASSED] supported_formats=0x9 yuv420_allowed=0
[12:34:33] [PASSED] supported_formats=0x5 yuv420_allowed=1
[12:34:33] [PASSED] supported_formats=0x5 yuv420_allowed=0
[12:34:33] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[12:34:33] [PASSED] drm_test_connector_hdmi_init_null_ddc
[12:34:33] [PASSED] drm_test_connector_hdmi_init_null_product
[12:34:33] [PASSED] drm_test_connector_hdmi_init_null_vendor
[12:34:33] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[12:34:33] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[12:34:33] [PASSED] drm_test_connector_hdmi_init_product_valid
[12:34:33] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[12:34:33] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[12:34:33] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[12:34:33] ========= drm_test_connector_hdmi_init_type_valid =========
[12:34:33] [PASSED] HDMI-A
[12:34:33] [PASSED] HDMI-B
[12:34:33] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[12:34:33] ======== drm_test_connector_hdmi_init_type_invalid ========
[12:34:33] [PASSED] Unknown
[12:34:33] [PASSED] VGA
[12:34:33] [PASSED] DVI-I
[12:34:33] [PASSED] DVI-D
[12:34:33] [PASSED] DVI-A
[12:34:33] [PASSED] Composite
[12:34:33] [PASSED] SVIDEO
[12:34:33] [PASSED] LVDS
[12:34:33] [PASSED] Component
[12:34:33] [PASSED] DIN
[12:34:33] [PASSED] DP
[12:34:33] [PASSED] TV
[12:34:33] [PASSED] eDP
[12:34:33] [PASSED] Virtual
[12:34:33] [PASSED] DSI
[12:34:33] [PASSED] DPI
[12:34:33] [PASSED] Writeback
[12:34:33] [PASSED] SPI
[12:34:33] [PASSED] USB
[12:34:33] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[12:34:33] ============ [PASSED] drmm_connector_hdmi_init =============
[12:34:33] ============= drmm_connector_init (3 subtests) =============
[12:34:33] [PASSED] drm_test_drmm_connector_init
[12:34:33] [PASSED] drm_test_drmm_connector_init_null_ddc
[12:34:33] ========= drm_test_drmm_connector_init_type_valid =========
[12:34:33] [PASSED] Unknown
[12:34:33] [PASSED] VGA
[12:34:33] [PASSED] DVI-I
[12:34:33] [PASSED] DVI-D
[12:34:33] [PASSED] DVI-A
[12:34:33] [PASSED] Composite
[12:34:33] [PASSED] SVIDEO
[12:34:33] [PASSED] LVDS
[12:34:33] [PASSED] Component
[12:34:33] [PASSED] DIN
[12:34:33] [PASSED] DP
[12:34:33] [PASSED] HDMI-A
[12:34:33] [PASSED] HDMI-B
[12:34:33] [PASSED] TV
[12:34:33] [PASSED] eDP
[12:34:33] [PASSED] Virtual
[12:34:33] [PASSED] DSI
[12:34:33] [PASSED] DPI
[12:34:33] [PASSED] Writeback
[12:34:33] [PASSED] SPI
[12:34:33] [PASSED] USB
[12:34:33] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[12:34:33] =============== [PASSED] drmm_connector_init ===============
[12:34:33] ========= drm_connector_dynamic_init (6 subtests) ==========
[12:34:33] [PASSED] drm_test_drm_connector_dynamic_init
[12:34:33] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[12:34:33] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[12:34:33] [PASSED] drm_test_drm_connector_dynamic_init_properties
[12:34:33] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[12:34:33] [PASSED] Unknown
[12:34:33] [PASSED] VGA
[12:34:33] [PASSED] DVI-I
[12:34:33] [PASSED] DVI-D
[12:34:33] [PASSED] DVI-A
[12:34:33] [PASSED] Composite
[12:34:33] [PASSED] SVIDEO
[12:34:33] [PASSED] LVDS
[12:34:33] [PASSED] Component
[12:34:33] [PASSED] DIN
[12:34:33] [PASSED] DP
[12:34:33] [PASSED] HDMI-A
[12:34:33] [PASSED] HDMI-B
[12:34:33] [PASSED] TV
[12:34:33] [PASSED] eDP
[12:34:33] [PASSED] Virtual
[12:34:33] [PASSED] DSI
[12:34:33] [PASSED] DPI
[12:34:33] [PASSED] Writeback
[12:34:33] [PASSED] SPI
[12:34:33] [PASSED] USB
[12:34:33] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[12:34:33] ======== drm_test_drm_connector_dynamic_init_name =========
[12:34:33] [PASSED] Unknown
[12:34:33] [PASSED] VGA
[12:34:33] [PASSED] DVI-I
[12:34:33] [PASSED] DVI-D
[12:34:33] [PASSED] DVI-A
[12:34:33] [PASSED] Composite
[12:34:33] [PASSED] SVIDEO
[12:34:33] [PASSED] LVDS
[12:34:33] [PASSED] Component
[12:34:33] [PASSED] DIN
[12:34:33] [PASSED] DP
[12:34:33] [PASSED] HDMI-A
[12:34:33] [PASSED] HDMI-B
[12:34:33] [PASSED] TV
[12:34:33] [PASSED] eDP
[12:34:33] [PASSED] Virtual
[12:34:33] [PASSED] DSI
[12:34:33] [PASSED] DPI
[12:34:33] [PASSED] Writeback
[12:34:33] [PASSED] SPI
[12:34:33] [PASSED] USB
[12:34:33] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[12:34:33] =========== [PASSED] drm_connector_dynamic_init ============
[12:34:33] ==== drm_connector_dynamic_register_early (4 subtests) =====
[12:34:33] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[12:34:33] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[12:34:33] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[12:34:33] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[12:34:33] ====== [PASSED] drm_connector_dynamic_register_early =======
[12:34:33] ======= drm_connector_dynamic_register (7 subtests) ========
[12:34:33] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[12:34:33] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[12:34:33] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[12:34:33] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[12:34:33] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[12:34:33] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[12:34:33] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[12:34:33] ========= [PASSED] drm_connector_dynamic_register ==========
[12:34:33] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[12:34:33] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[12:34:33] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[12:34:33] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[12:34:33] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[12:34:33] ========== drm_test_get_tv_mode_from_name_valid ===========
[12:34:33] [PASSED] NTSC
[12:34:33] [PASSED] NTSC-443
[12:34:33] [PASSED] NTSC-J
[12:34:33] [PASSED] PAL
[12:34:33] [PASSED] PAL-M
[12:34:33] [PASSED] PAL-N
[12:34:33] [PASSED] SECAM
[12:34:33] [PASSED] Mono
[12:34:33] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[12:34:33] [PASSED] drm_test_get_tv_mode_from_name_truncated
[12:34:33] ============ [PASSED] drm_get_tv_mode_from_name ============
[12:34:33] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[12:34:33] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[12:34:33] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[12:34:33] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[12:34:33] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[12:34:33] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[12:34:33] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[12:34:33] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[12:34:33] [PASSED] VIC 96
[12:34:33] [PASSED] VIC 97
[12:34:33] [PASSED] VIC 101
[12:34:33] [PASSED] VIC 102
[12:34:33] [PASSED] VIC 106
[12:34:33] [PASSED] VIC 107
[12:34:33] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[12:34:33] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[12:34:33] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[12:34:33] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[12:34:33] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[12:34:33] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[12:34:33] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[12:34:33] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[12:34:33] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[12:34:33] [PASSED] Automatic
[12:34:33] [PASSED] Full
[12:34:33] [PASSED] Limited 16:235
[12:34:33] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[12:34:33] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[12:34:33] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[12:34:33] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[12:34:33] === drm_test_drm_hdmi_connector_get_output_format_name ====
[12:34:33] [PASSED] RGB
[12:34:33] [PASSED] YUV 4:2:0
[12:34:33] [PASSED] YUV 4:2:2
[12:34:33] [PASSED] YUV 4:4:4
[12:34:33] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[12:34:33] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[12:34:33] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[12:34:33] ============= drm_damage_helper (21 subtests) ==============
[12:34:33] [PASSED] drm_test_damage_iter_no_damage
[12:34:33] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[12:34:33] [PASSED] drm_test_damage_iter_no_damage_src_moved
[12:34:33] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[12:34:33] [PASSED] drm_test_damage_iter_no_damage_not_visible
[12:34:33] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[12:34:33] [PASSED] drm_test_damage_iter_no_damage_no_fb
[12:34:33] [PASSED] drm_test_damage_iter_simple_damage
[12:34:33] [PASSED] drm_test_damage_iter_single_damage
[12:34:33] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[12:34:33] [PASSED] drm_test_damage_iter_single_damage_outside_src
[12:34:33] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[12:34:33] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[12:34:33] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[12:34:33] [PASSED] drm_test_damage_iter_single_damage_src_moved
[12:34:33] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[12:34:33] [PASSED] drm_test_damage_iter_damage
[12:34:33] [PASSED] drm_test_damage_iter_damage_one_intersect
[12:34:33] [PASSED] drm_test_damage_iter_damage_one_outside
[12:34:33] [PASSED] drm_test_damage_iter_damage_src_moved
[12:34:33] [PASSED] drm_test_damage_iter_damage_not_visible
[12:34:33] ================ [PASSED] drm_damage_helper ================
[12:34:33] ============== drm_dp_mst_helper (3 subtests) ==============
[12:34:33] ============== drm_test_dp_mst_calc_pbn_mode ==============
[12:34:33] [PASSED] Clock 154000 BPP 30 DSC disabled
[12:34:33] [PASSED] Clock 234000 BPP 30 DSC disabled
[12:34:33] [PASSED] Clock 297000 BPP 24 DSC disabled
[12:34:33] [PASSED] Clock 332880 BPP 24 DSC enabled
[12:34:33] [PASSED] Clock 324540 BPP 24 DSC enabled
[12:34:33] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[12:34:33] ============== drm_test_dp_mst_calc_pbn_div ===============
[12:34:33] [PASSED] Link rate 2000000 lane count 4
[12:34:33] [PASSED] Link rate 2000000 lane count 2
[12:34:33] [PASSED] Link rate 2000000 lane count 1
[12:34:33] [PASSED] Link rate 1350000 lane count 4
[12:34:33] [PASSED] Link rate 1350000 lane count 2
[12:34:33] [PASSED] Link rate 1350000 lane count 1
[12:34:33] [PASSED] Link rate 1000000 lane count 4
[12:34:33] [PASSED] Link rate 1000000 lane count 2
[12:34:33] [PASSED] Link rate 1000000 lane count 1
[12:34:33] [PASSED] Link rate 810000 lane count 4
[12:34:33] [PASSED] Link rate 810000 lane count 2
[12:34:33] [PASSED] Link rate 810000 lane count 1
[12:34:33] [PASSED] Link rate 540000 lane count 4
[12:34:33] [PASSED] Link rate 540000 lane count 2
[12:34:33] [PASSED] Link rate 540000 lane count 1
[12:34:33] [PASSED] Link rate 270000 lane count 4
[12:34:33] [PASSED] Link rate 270000 lane count 2
[12:34:33] [PASSED] Link rate 270000 lane count 1
[12:34:33] [PASSED] Link rate 162000 lane count 4
[12:34:33] [PASSED] Link rate 162000 lane count 2
[12:34:33] [PASSED] Link rate 162000 lane count 1
[12:34:33] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[12:34:33] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[12:34:33] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[12:34:33] [PASSED] DP_POWER_UP_PHY with port number
[12:34:33] [PASSED] DP_POWER_DOWN_PHY with port number
[12:34:33] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[12:34:33] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[12:34:33] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[12:34:33] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[12:34:33] [PASSED] DP_QUERY_PAYLOAD with port number
[12:34:33] [PASSED] DP_QUERY_PAYLOAD with VCPI
[12:34:33] [PASSED] DP_REMOTE_DPCD_READ with port number
[12:34:33] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[12:34:33] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[12:34:33] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[12:34:33] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[12:34:33] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[12:34:33] [PASSED] DP_REMOTE_I2C_READ with port number
[12:34:33] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[12:34:33] [PASSED] DP_REMOTE_I2C_READ with transactions array
[12:34:33] [PASSED] DP_REMOTE_I2C_WRITE with port number
[12:34:33] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[12:34:33] [PASSED] DP_REMOTE_I2C_WRITE with data array
[12:34:33] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[12:34:33] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[12:34:33] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[12:34:33] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[12:34:33] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[12:34:33] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[12:34:33] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[12:34:33] ================ [PASSED] drm_dp_mst_helper ================
[12:34:33] ================== drm_exec (7 subtests) ===================
[12:34:33] [PASSED] sanitycheck
[12:34:33] [PASSED] test_lock
[12:34:33] [PASSED] test_lock_unlock
[12:34:33] [PASSED] test_duplicates
[12:34:33] [PASSED] test_prepare
[12:34:33] [PASSED] test_prepare_array
[12:34:33] [PASSED] test_multiple_loops
[12:34:33] ==================== [PASSED] drm_exec =====================
[12:34:33] =========== drm_format_helper_test (17 subtests) ===========
[12:34:33] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[12:34:33] [PASSED] single_pixel_source_buffer
[12:34:33] [PASSED] single_pixel_clip_rectangle
[12:34:33] [PASSED] well_known_colors
[12:34:33] [PASSED] destination_pitch
[12:34:33] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[12:34:33] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[12:34:33] [PASSED] single_pixel_source_buffer
[12:34:33] [PASSED] single_pixel_clip_rectangle
[12:34:33] [PASSED] well_known_colors
[12:34:33] [PASSED] destination_pitch
[12:34:33] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[12:34:33] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[12:34:33] [PASSED] single_pixel_source_buffer
[12:34:33] [PASSED] single_pixel_clip_rectangle
[12:34:33] [PASSED] well_known_colors
[12:34:33] [PASSED] destination_pitch
[12:34:33] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[12:34:33] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[12:34:33] [PASSED] single_pixel_source_buffer
[12:34:33] [PASSED] single_pixel_clip_rectangle
[12:34:33] [PASSED] well_known_colors
[12:34:33] [PASSED] destination_pitch
[12:34:33] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[12:34:33] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[12:34:33] [PASSED] single_pixel_source_buffer
[12:34:33] [PASSED] single_pixel_clip_rectangle
[12:34:33] [PASSED] well_known_colors
[12:34:33] [PASSED] destination_pitch
[12:34:33] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[12:34:33] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[12:34:33] [PASSED] single_pixel_source_buffer
[12:34:33] [PASSED] single_pixel_clip_rectangle
[12:34:33] [PASSED] well_known_colors
[12:34:33] [PASSED] destination_pitch
[12:34:33] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[12:34:33] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[12:34:33] [PASSED] single_pixel_source_buffer
[12:34:33] [PASSED] single_pixel_clip_rectangle
[12:34:33] [PASSED] well_known_colors
[12:34:33] [PASSED] destination_pitch
[12:34:33] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[12:34:33] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[12:34:33] [PASSED] single_pixel_source_buffer
[12:34:33] [PASSED] single_pixel_clip_rectangle
[12:34:33] [PASSED] well_known_colors
[12:34:33] [PASSED] destination_pitch
[12:34:33] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[12:34:33] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[12:34:33] [PASSED] single_pixel_source_buffer
[12:34:33] [PASSED] single_pixel_clip_rectangle
[12:34:33] [PASSED] well_known_colors
[12:34:33] [PASSED] destination_pitch
[12:34:33] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[12:34:33] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[12:34:33] [PASSED] single_pixel_source_buffer
[12:34:33] [PASSED] single_pixel_clip_rectangle
[12:34:33] [PASSED] well_known_colors
[12:34:33] [PASSED] destination_pitch
[12:34:33] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[12:34:33] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[12:34:33] [PASSED] single_pixel_source_buffer
[12:34:33] [PASSED] single_pixel_clip_rectangle
[12:34:33] [PASSED] well_known_colors
[12:34:33] [PASSED] destination_pitch
[12:34:33] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[12:34:33] ============== drm_test_fb_xrgb8888_to_mono ===============
[12:34:33] [PASSED] single_pixel_source_buffer
[12:34:33] [PASSED] single_pixel_clip_rectangle
[12:34:33] [PASSED] well_known_colors
[12:34:33] [PASSED] destination_pitch
[12:34:33] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[12:34:33] ==================== drm_test_fb_swab =====================
[12:34:33] [PASSED] single_pixel_source_buffer
[12:34:33] [PASSED] single_pixel_clip_rectangle
[12:34:33] [PASSED] well_known_colors
[12:34:33] [PASSED] destination_pitch
[12:34:33] ================ [PASSED] drm_test_fb_swab =================
[12:34:33] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[12:34:33] [PASSED] single_pixel_source_buffer
[12:34:33] [PASSED] single_pixel_clip_rectangle
[12:34:33] [PASSED] well_known_colors
[12:34:33] [PASSED] destination_pitch
[12:34:33] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[12:34:33] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[12:34:33] [PASSED] single_pixel_source_buffer
[12:34:33] [PASSED] single_pixel_clip_rectangle
[12:34:33] [PASSED] well_known_colors
[12:34:33] [PASSED] destination_pitch
[12:34:33] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[12:34:33] ================= drm_test_fb_clip_offset =================
[12:34:33] [PASSED] pass through
[12:34:33] [PASSED] horizontal offset
[12:34:33] [PASSED] vertical offset
[12:34:33] [PASSED] horizontal and vertical offset
[12:34:33] [PASSED] horizontal offset (custom pitch)
[12:34:33] [PASSED] vertical offset (custom pitch)
[12:34:33] [PASSED] horizontal and vertical offset (custom pitch)
[12:34:33] ============= [PASSED] drm_test_fb_clip_offset =============
[12:34:33] =================== drm_test_fb_memcpy ====================
[12:34:33] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[12:34:33] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[12:34:33] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[12:34:33] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[12:34:33] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[12:34:33] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[12:34:33] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[12:34:33] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[12:34:33] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[12:34:33] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[12:34:33] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[12:34:33] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[12:34:33] =============== [PASSED] drm_test_fb_memcpy ================
[12:34:33] ============= [PASSED] drm_format_helper_test ==============
[12:34:33] ================= drm_format (18 subtests) =================
[12:34:33] [PASSED] drm_test_format_block_width_invalid
[12:34:33] [PASSED] drm_test_format_block_width_one_plane
[12:34:33] [PASSED] drm_test_format_block_width_two_plane
[12:34:33] [PASSED] drm_test_format_block_width_three_plane
[12:34:33] [PASSED] drm_test_format_block_width_tiled
[12:34:33] [PASSED] drm_test_format_block_height_invalid
[12:34:33] [PASSED] drm_test_format_block_height_one_plane
[12:34:33] [PASSED] drm_test_format_block_height_two_plane
[12:34:33] [PASSED] drm_test_format_block_height_three_plane
[12:34:33] [PASSED] drm_test_format_block_height_tiled
[12:34:33] [PASSED] drm_test_format_min_pitch_invalid
[12:34:33] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[12:34:33] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[12:34:33] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[12:34:33] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[12:34:33] [PASSED] drm_test_format_min_pitch_two_plane
[12:34:33] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[12:34:33] [PASSED] drm_test_format_min_pitch_tiled
[12:34:33] =================== [PASSED] drm_format ====================
[12:34:33] ============== drm_framebuffer (10 subtests) ===============
[12:34:33] ========== drm_test_framebuffer_check_src_coords ==========
[12:34:33] [PASSED] Success: source fits into fb
[12:34:33] [PASSED] Fail: overflowing fb with x-axis coordinate
[12:34:33] [PASSED] Fail: overflowing fb with y-axis coordinate
[12:34:33] [PASSED] Fail: overflowing fb with source width
[12:34:33] [PASSED] Fail: overflowing fb with source height
[12:34:33] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[12:34:33] [PASSED] drm_test_framebuffer_cleanup
[12:34:33] =============== drm_test_framebuffer_create ===============
[12:34:33] [PASSED] ABGR8888 normal sizes
[12:34:33] [PASSED] ABGR8888 max sizes
[12:34:33] [PASSED] ABGR8888 pitch greater than min required
[12:34:33] [PASSED] ABGR8888 pitch less than min required
[12:34:33] [PASSED] ABGR8888 Invalid width
[12:34:33] [PASSED] ABGR8888 Invalid buffer handle
[12:34:33] [PASSED] No pixel format
[12:34:33] [PASSED] ABGR8888 Width 0
[12:34:33] [PASSED] ABGR8888 Height 0
[12:34:33] [PASSED] ABGR8888 Out of bound height * pitch combination
[12:34:33] [PASSED] ABGR8888 Large buffer offset
[12:34:33] [PASSED] ABGR8888 Buffer offset for inexistent plane
[12:34:33] [PASSED] ABGR8888 Invalid flag
[12:34:33] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[12:34:33] [PASSED] ABGR8888 Valid buffer modifier
[12:34:33] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[12:34:33] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[12:34:33] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[12:34:33] [PASSED] NV12 Normal sizes
[12:34:33] [PASSED] NV12 Max sizes
[12:34:33] [PASSED] NV12 Invalid pitch
[12:34:33] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[12:34:33] [PASSED] NV12 different modifier per-plane
[12:34:33] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[12:34:33] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[12:34:33] [PASSED] NV12 Modifier for inexistent plane
[12:34:33] [PASSED] NV12 Handle for inexistent plane
[12:34:33] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[12:34:33] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[12:34:33] [PASSED] YVU420 Normal sizes
[12:34:33] [PASSED] YVU420 Max sizes
[12:34:33] [PASSED] YVU420 Invalid pitch
[12:34:33] [PASSED] YVU420 Different pitches
[12:34:33] [PASSED] YVU420 Different buffer offsets/pitches
[12:34:33] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[12:34:33] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[12:34:33] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[12:34:33] [PASSED] YVU420 Valid modifier
[12:34:33] [PASSED] YVU420 Different modifiers per plane
[12:34:33] [PASSED] YVU420 Modifier for inexistent plane
[12:34:33] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[12:34:33] [PASSED] X0L2 Normal sizes
[12:34:33] [PASSED] X0L2 Max sizes
[12:34:33] [PASSED] X0L2 Invalid pitch
[12:34:33] [PASSED] X0L2 Pitch greater than minimum required
[12:34:33] [PASSED] X0L2 Handle for inexistent plane
[12:34:33] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[12:34:33] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[12:34:33] [PASSED] X0L2 Valid modifier
[12:34:33] [PASSED] X0L2 Modifier for inexistent plane
[12:34:33] =========== [PASSED] drm_test_framebuffer_create ===========
[12:34:33] [PASSED] drm_test_framebuffer_free
[12:34:33] [PASSED] drm_test_framebuffer_init
[12:34:33] [PASSED] drm_test_framebuffer_init_bad_format
[12:34:33] [PASSED] drm_test_framebuffer_init_dev_mismatch
[12:34:33] [PASSED] drm_test_framebuffer_lookup
[12:34:33] [PASSED] drm_test_framebuffer_lookup_inexistent
[12:34:33] [PASSED] drm_test_framebuffer_modifiers_not_supported
[12:34:33] ================= [PASSED] drm_framebuffer =================
[12:34:33] ================ drm_gem_shmem (8 subtests) ================
[12:34:33] [PASSED] drm_gem_shmem_test_obj_create
[12:34:33] [PASSED] drm_gem_shmem_test_obj_create_private
[12:34:33] [PASSED] drm_gem_shmem_test_pin_pages
[12:34:33] [PASSED] drm_gem_shmem_test_vmap
[12:34:33] [PASSED] drm_gem_shmem_test_get_sg_table
[12:34:33] [PASSED] drm_gem_shmem_test_get_pages_sgt
[12:34:33] [PASSED] drm_gem_shmem_test_madvise
[12:34:33] [PASSED] drm_gem_shmem_test_purge
[12:34:33] ================== [PASSED] drm_gem_shmem ==================
[12:34:33] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[12:34:33] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[12:34:33] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[12:34:33] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[12:34:33] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[12:34:33] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[12:34:33] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[12:34:33] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[12:34:33] [PASSED] Automatic
[12:34:33] [PASSED] Full
[12:34:33] [PASSED] Limited 16:235
[12:34:33] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[12:34:33] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[12:34:33] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[12:34:33] [PASSED] drm_test_check_disable_connector
[12:34:33] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[12:34:33] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[12:34:33] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[12:34:33] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[12:34:33] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[12:34:33] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[12:34:33] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[12:34:33] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[12:34:33] [PASSED] drm_test_check_output_bpc_dvi
[12:34:33] [PASSED] drm_test_check_output_bpc_format_vic_1
[12:34:33] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[12:34:33] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[12:34:33] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[12:34:33] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[12:34:33] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[12:34:33] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[12:34:33] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[12:34:33] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[12:34:33] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[12:34:33] [PASSED] drm_test_check_broadcast_rgb_value
[12:34:33] [PASSED] drm_test_check_bpc_8_value
[12:34:33] [PASSED] drm_test_check_bpc_10_value
[12:34:33] [PASSED] drm_test_check_bpc_12_value
[12:34:33] [PASSED] drm_test_check_format_value
[12:34:33] [PASSED] drm_test_check_tmds_char_value
[12:34:33] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[12:34:33] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[12:34:33] [PASSED] drm_test_check_mode_valid
[12:34:33] [PASSED] drm_test_check_mode_valid_reject
[12:34:33] [PASSED] drm_test_check_mode_valid_reject_rate
[12:34:33] [PASSED] drm_test_check_mode_valid_reject_max_clock
[12:34:33] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[12:34:33] = drm_atomic_helper_connector_hdmi_infoframes (5 subtests) =
[12:34:33] [PASSED] drm_test_check_infoframes
[12:34:33] [PASSED] drm_test_check_reject_avi_infoframe
[12:34:33] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_8
[12:34:33] [PASSED] drm_test_check_reject_hdr_infoframe_bpc_10
[12:34:33] [PASSED] drm_test_check_reject_audio_infoframe
[12:34:33] === [PASSED] drm_atomic_helper_connector_hdmi_infoframes ===
[12:34:33] ================= drm_managed (2 subtests) =================
[12:34:33] [PASSED] drm_test_managed_release_action
[12:34:33] [PASSED] drm_test_managed_run_action
[12:34:33] =================== [PASSED] drm_managed ===================
[12:34:33] =================== drm_mm (6 subtests) ====================
[12:34:33] [PASSED] drm_test_mm_init
[12:34:33] [PASSED] drm_test_mm_debug
[12:34:33] [PASSED] drm_test_mm_align32
[12:34:33] [PASSED] drm_test_mm_align64
[12:34:33] [PASSED] drm_test_mm_lowest
[12:34:33] [PASSED] drm_test_mm_highest
[12:34:33] ===================== [PASSED] drm_mm ======================
[12:34:33] ============= drm_modes_analog_tv (5 subtests) =============
[12:34:33] [PASSED] drm_test_modes_analog_tv_mono_576i
[12:34:33] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[12:34:33] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[12:34:33] [PASSED] drm_test_modes_analog_tv_pal_576i
[12:34:33] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[12:34:33] =============== [PASSED] drm_modes_analog_tv ===============
[12:34:33] ============== drm_plane_helper (2 subtests) ===============
[12:34:33] =============== drm_test_check_plane_state ================
[12:34:33] [PASSED] clipping_simple
[12:34:33] [PASSED] clipping_rotate_reflect
[12:34:33] [PASSED] positioning_simple
[12:34:33] [PASSED] upscaling
[12:34:33] [PASSED] downscaling
[12:34:33] [PASSED] rounding1
[12:34:33] [PASSED] rounding2
[12:34:33] [PASSED] rounding3
[12:34:33] [PASSED] rounding4
[12:34:33] =========== [PASSED] drm_test_check_plane_state ============
[12:34:33] =========== drm_test_check_invalid_plane_state ============
[12:34:33] [PASSED] positioning_invalid
[12:34:33] [PASSED] upscaling_invalid
[12:34:33] [PASSED] downscaling_invalid
[12:34:33] ======= [PASSED] drm_test_check_invalid_plane_state ========
[12:34:33] ================ [PASSED] drm_plane_helper =================
[12:34:33] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[12:34:33] ====== drm_test_connector_helper_tv_get_modes_check =======
[12:34:33] [PASSED] None
[12:34:33] [PASSED] PAL
[12:34:33] [PASSED] NTSC
[12:34:33] [PASSED] Both, NTSC Default
[12:34:33] [PASSED] Both, PAL Default
[12:34:33] [PASSED] Both, NTSC Default, with PAL on command-line
[12:34:33] [PASSED] Both, PAL Default, with NTSC on command-line
[12:34:33] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[12:34:33] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[12:34:33] ================== drm_rect (9 subtests) ===================
[12:34:33] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[12:34:33] [PASSED] drm_test_rect_clip_scaled_not_clipped
[12:34:33] [PASSED] drm_test_rect_clip_scaled_clipped
[12:34:33] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[12:34:33] ================= drm_test_rect_intersect =================
[12:34:33] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[12:34:33] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[12:34:33] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[12:34:33] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[12:34:33] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[12:34:33] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[12:34:33] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[12:34:33] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[12:34:33] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[12:34:33] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[12:34:33] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[12:34:33] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[12:34:33] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[12:34:33] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[12:34:33] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[12:34:33] ============= [PASSED] drm_test_rect_intersect =============
[12:34:33] ================ drm_test_rect_calc_hscale ================
[12:34:33] [PASSED] normal use
[12:34:33] [PASSED] out of max range
[12:34:33] [PASSED] out of min range
[12:34:33] [PASSED] zero dst
[12:34:33] [PASSED] negative src
[12:34:33] [PASSED] negative dst
[12:34:33] ============ [PASSED] drm_test_rect_calc_hscale ============
[12:34:33] ================ drm_test_rect_calc_vscale ================
[12:34:33] [PASSED] normal use
[12:34:33] [PASSED] out of max range
[12:34:33] [PASSED] out of min range
[12:34:33] [PASSED] zero dst
[12:34:33] [PASSED] negative src
[12:34:33] [PASSED] negative dst
[12:34:33] ============ [PASSED] drm_test_rect_calc_vscale ============
[12:34:33] ================== drm_test_rect_rotate ===================
[12:34:33] [PASSED] reflect-x
[12:34:33] [PASSED] reflect-y
[12:34:33] [PASSED] rotate-0
[12:34:33] [PASSED] rotate-90
[12:34:33] [PASSED] rotate-180
[12:34:33] [PASSED] rotate-270
[12:34:33] ============== [PASSED] drm_test_rect_rotate ===============
[12:34:33] ================ drm_test_rect_rotate_inv =================
[12:34:33] [PASSED] reflect-x
[12:34:33] [PASSED] reflect-y
[12:34:33] [PASSED] rotate-0
[12:34:33] [PASSED] rotate-90
[12:34:33] [PASSED] rotate-180
[12:34:33] [PASSED] rotate-270
[12:34:33] ============ [PASSED] drm_test_rect_rotate_inv =============
[12:34:33] ==================== [PASSED] drm_rect =====================
[12:34:33] ============ drm_sysfb_modeset_test (1 subtest) ============
[12:34:33] ============ drm_test_sysfb_build_fourcc_list =============
[12:34:33] [PASSED] no native formats
[12:34:33] [PASSED] XRGB8888 as native format
[12:34:33] [PASSED] remove duplicates
[12:34:33] [PASSED] convert alpha formats
[12:34:33] [PASSED] random formats
[12:34:33] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[12:34:33] ============= [PASSED] drm_sysfb_modeset_test ==============
[12:34:33] ================== drm_fixp (2 subtests) ===================
[12:34:33] [PASSED] drm_test_int2fixp
[12:34:33] [PASSED] drm_test_sm2fixp
[12:34:33] ==================== [PASSED] drm_fixp =====================
[12:34:33] ============================================================
[12:34:33] Testing complete. Ran 621 tests: passed: 621
[12:34:33] Elapsed time: 26.004s total, 1.691s configuring, 24.146s building, 0.134s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[12:34:33] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[12:34:35] 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
[12:34:44] Starting KUnit Kernel (1/1)...
[12:34:44] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[12:34:44] ================= ttm_device (5 subtests) ==================
[12:34:44] [PASSED] ttm_device_init_basic
[12:34:44] [PASSED] ttm_device_init_multiple
[12:34:44] [PASSED] ttm_device_fini_basic
[12:34:44] [PASSED] ttm_device_init_no_vma_man
[12:34:44] ================== ttm_device_init_pools ==================
[12:34:44] [PASSED] No DMA allocations, no DMA32 required
[12:34:44] [PASSED] DMA allocations, DMA32 required
[12:34:44] [PASSED] No DMA allocations, DMA32 required
[12:34:44] [PASSED] DMA allocations, no DMA32 required
[12:34:44] ============== [PASSED] ttm_device_init_pools ==============
[12:34:44] =================== [PASSED] ttm_device ====================
[12:34:44] ================== ttm_pool (8 subtests) ===================
[12:34:44] ================== ttm_pool_alloc_basic ===================
[12:34:44] [PASSED] One page
[12:34:44] [PASSED] More than one page
[12:34:44] [PASSED] Above the allocation limit
[12:34:44] [PASSED] One page, with coherent DMA mappings enabled
[12:34:44] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:34:44] ============== [PASSED] ttm_pool_alloc_basic ===============
[12:34:44] ============== ttm_pool_alloc_basic_dma_addr ==============
[12:34:44] [PASSED] One page
[12:34:44] [PASSED] More than one page
[12:34:44] [PASSED] Above the allocation limit
[12:34:44] [PASSED] One page, with coherent DMA mappings enabled
[12:34:44] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[12:34:44] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[12:34:44] [PASSED] ttm_pool_alloc_order_caching_match
[12:34:44] [PASSED] ttm_pool_alloc_caching_mismatch
[12:34:44] [PASSED] ttm_pool_alloc_order_mismatch
[12:34:44] [PASSED] ttm_pool_free_dma_alloc
[12:34:44] [PASSED] ttm_pool_free_no_dma_alloc
[12:34:44] [PASSED] ttm_pool_fini_basic
[12:34:44] ==================== [PASSED] ttm_pool =====================
[12:34:44] ================ ttm_resource (8 subtests) =================
[12:34:44] ================= ttm_resource_init_basic =================
[12:34:44] [PASSED] Init resource in TTM_PL_SYSTEM
[12:34:44] [PASSED] Init resource in TTM_PL_VRAM
[12:34:44] [PASSED] Init resource in a private placement
[12:34:44] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[12:34:44] ============= [PASSED] ttm_resource_init_basic =============
[12:34:44] [PASSED] ttm_resource_init_pinned
[12:34:44] [PASSED] ttm_resource_fini_basic
[12:34:44] [PASSED] ttm_resource_manager_init_basic
[12:34:44] [PASSED] ttm_resource_manager_usage_basic
[12:34:44] [PASSED] ttm_resource_manager_set_used_basic
[12:34:44] [PASSED] ttm_sys_man_alloc_basic
[12:34:44] [PASSED] ttm_sys_man_free_basic
[12:34:44] ================== [PASSED] ttm_resource ===================
[12:34:44] =================== ttm_tt (15 subtests) ===================
[12:34:44] ==================== ttm_tt_init_basic ====================
[12:34:44] [PASSED] Page-aligned size
[12:34:44] [PASSED] Extra pages requested
[12:34:44] ================ [PASSED] ttm_tt_init_basic ================
[12:34:44] [PASSED] ttm_tt_init_misaligned
[12:34:44] [PASSED] ttm_tt_fini_basic
[12:34:44] [PASSED] ttm_tt_fini_sg
[12:34:44] [PASSED] ttm_tt_fini_shmem
[12:34:44] [PASSED] ttm_tt_create_basic
[12:34:44] [PASSED] ttm_tt_create_invalid_bo_type
[12:34:44] [PASSED] ttm_tt_create_ttm_exists
[12:34:44] [PASSED] ttm_tt_create_failed
[12:34:44] [PASSED] ttm_tt_destroy_basic
[12:34:44] [PASSED] ttm_tt_populate_null_ttm
[12:34:44] [PASSED] ttm_tt_populate_populated_ttm
[12:34:44] [PASSED] ttm_tt_unpopulate_basic
[12:34:44] [PASSED] ttm_tt_unpopulate_empty_ttm
[12:34:44] [PASSED] ttm_tt_swapin_basic
[12:34:44] ===================== [PASSED] ttm_tt ======================
[12:34:44] =================== ttm_bo (14 subtests) ===================
[12:34:44] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[12:34:44] [PASSED] Cannot be interrupted and sleeps
[12:34:44] [PASSED] Cannot be interrupted, locks straight away
[12:34:44] [PASSED] Can be interrupted, sleeps
[12:34:44] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[12:34:44] [PASSED] ttm_bo_reserve_locked_no_sleep
[12:34:44] [PASSED] ttm_bo_reserve_no_wait_ticket
[12:34:44] [PASSED] ttm_bo_reserve_double_resv
[12:34:44] [PASSED] ttm_bo_reserve_interrupted
[12:34:44] [PASSED] ttm_bo_reserve_deadlock
[12:34:44] [PASSED] ttm_bo_unreserve_basic
[12:34:44] [PASSED] ttm_bo_unreserve_pinned
[12:34:44] [PASSED] ttm_bo_unreserve_bulk
[12:34:44] [PASSED] ttm_bo_fini_basic
[12:34:44] [PASSED] ttm_bo_fini_shared_resv
[12:34:44] [PASSED] ttm_bo_pin_basic
[12:34:44] [PASSED] ttm_bo_pin_unpin_resource
[12:34:44] [PASSED] ttm_bo_multiple_pin_one_unpin
[12:34:44] ===================== [PASSED] ttm_bo ======================
[12:34:44] ============== ttm_bo_validate (22 subtests) ===============
[12:34:44] ============== ttm_bo_init_reserved_sys_man ===============
[12:34:44] [PASSED] Buffer object for userspace
[12:34:44] [PASSED] Kernel buffer object
[12:34:44] [PASSED] Shared buffer object
[12:34:44] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[12:34:44] ============== ttm_bo_init_reserved_mock_man ==============
[12:34:44] [PASSED] Buffer object for userspace
[12:34:44] [PASSED] Kernel buffer object
[12:34:44] [PASSED] Shared buffer object
[12:34:44] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[12:34:44] [PASSED] ttm_bo_init_reserved_resv
[12:34:44] ================== ttm_bo_validate_basic ==================
[12:34:44] [PASSED] Buffer object for userspace
[12:34:44] [PASSED] Kernel buffer object
[12:34:44] [PASSED] Shared buffer object
[12:34:44] ============== [PASSED] ttm_bo_validate_basic ==============
[12:34:44] [PASSED] ttm_bo_validate_invalid_placement
[12:34:44] ============= ttm_bo_validate_same_placement ==============
[12:34:44] [PASSED] System manager
[12:34:44] [PASSED] VRAM manager
[12:34:44] ========= [PASSED] ttm_bo_validate_same_placement ==========
[12:34:44] [PASSED] ttm_bo_validate_failed_alloc
[12:34:44] [PASSED] ttm_bo_validate_pinned
[12:34:44] [PASSED] ttm_bo_validate_busy_placement
[12:34:44] ================ ttm_bo_validate_multihop =================
[12:34:44] [PASSED] Buffer object for userspace
[12:34:44] [PASSED] Kernel buffer object
[12:34:44] [PASSED] Shared buffer object
[12:34:44] ============ [PASSED] ttm_bo_validate_multihop =============
[12:34:44] ========== ttm_bo_validate_no_placement_signaled ==========
[12:34:44] [PASSED] Buffer object in system domain, no page vector
[12:34:44] [PASSED] Buffer object in system domain with an existing page vector
[12:34:44] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[12:34:44] ======== ttm_bo_validate_no_placement_not_signaled ========
[12:34:44] [PASSED] Buffer object for userspace
[12:34:44] [PASSED] Kernel buffer object
[12:34:44] [PASSED] Shared buffer object
[12:34:44] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[12:34:44] [PASSED] ttm_bo_validate_move_fence_signaled
[12:34:44] ========= ttm_bo_validate_move_fence_not_signaled =========
[12:34:44] [PASSED] Waits for GPU
[12:34:44] [PASSED] Tries to lock straight away
[12:34:44] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[12:34:44] [PASSED] ttm_bo_validate_swapout
[12:34:44] [PASSED] ttm_bo_validate_happy_evict
[12:34:44] [PASSED] ttm_bo_validate_all_pinned_evict
[12:34:44] [PASSED] ttm_bo_validate_allowed_only_evict
[12:34:44] [PASSED] ttm_bo_validate_deleted_evict
[12:34:44] [PASSED] ttm_bo_validate_busy_domain_evict
[12:34:44] [PASSED] ttm_bo_validate_evict_gutting
[12:34:44] [PASSED] ttm_bo_validate_recrusive_evict
[12:34:44] ================= [PASSED] ttm_bo_validate =================
[12:34:44] ============================================================
[12:34:44] Testing complete. Ran 102 tests: passed: 102
[12:34:45] Elapsed time: 11.572s total, 1.744s configuring, 9.613s building, 0.187s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ Xe.CI.BAT: success for gpu/buddy: Per-order free and used block scoreboards (rev3)
2026-05-11 16:41 [PATCH v2 0/3] gpu/buddy: Per-order free and used block scoreboards Francois Dugast
` (8 preceding siblings ...)
2026-05-12 12:34 ` ✓ CI.KUnit: success " Patchwork
@ 2026-05-12 13:57 ` Patchwork
2026-05-13 0:43 ` ✗ Xe.CI.FULL: failure " Patchwork
10 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-05-12 13:57 UTC (permalink / raw)
To: Francois Dugast; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1111 bytes --]
== Series Details ==
Series: gpu/buddy: Per-order free and used block scoreboards (rev3)
URL : https://patchwork.freedesktop.org/series/165914/
State : success
== Summary ==
CI Bug Log - changes from xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4_BAT -> xe-pw-165914v3_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8903 -> IGT_8904
* Linux: xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4 -> xe-pw-165914v3
IGT_8903: 6f88532e2fe22529195cc2f8cabff93d994688f8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8904: 07cadbb0bf25b18ac37467c4505f87eb50d4e435 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4: b83102e9c06357b09f2cfbe944269786cb6985c4
xe-pw-165914v3: 165914v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/index.html
[-- Attachment #2: Type: text/html, Size: 1673 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.FULL: failure for gpu/buddy: Per-order free and used block scoreboards (rev3)
2026-05-11 16:41 [PATCH v2 0/3] gpu/buddy: Per-order free and used block scoreboards Francois Dugast
` (9 preceding siblings ...)
2026-05-12 13:57 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-05-13 0:43 ` Patchwork
10 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2026-05-13 0:43 UTC (permalink / raw)
To: Francois Dugast; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 32734 bytes --]
== Series Details ==
Series: gpu/buddy: Per-order free and used block scoreboards (rev3)
URL : https://patchwork.freedesktop.org/series/165914/
State : failure
== Summary ==
CI Bug Log - changes from xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4_FULL -> xe-pw-165914v3_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-165914v3_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-165914v3_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-165914v3_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_reset@long-spin-many-preempt-gt0-threads:
- shard-lnl: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-lnl-2/igt@xe_exec_reset@long-spin-many-preempt-gt0-threads.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-lnl-5/igt@xe_exec_reset@long-spin-many-preempt-gt0-threads.html
* igt@xe_exec_system_allocator@once-new-busy:
- shard-lnl: [PASS][3] -> [ABORT][4] +1 other test abort
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-lnl-8/igt@xe_exec_system_allocator@once-new-busy.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-lnl-1/igt@xe_exec_system_allocator@once-new-busy.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [PASS][5] -> [ABORT][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-1/igt@xe_module_load@reload-no-display.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-8/igt@xe_module_load@reload-no-display.html
Known issues
------------
Here are the changes found in xe-pw-165914v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1407])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-lnl-3/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2327])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-8/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +4 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-5/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-1-displays-target-2560x1440p:
- shard-bmg: [PASS][10] -> [INCOMPLETE][11] ([Intel XE#6652] / [Intel XE#6819])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-3/igt@kms_bw@connected-linear-tiling-1-displays-target-2560x1440p.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-2/igt@kms_bw@connected-linear-tiling-1-displays-target-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-target-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#367])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-9/igt@kms_bw@linear-tiling-2-displays-target-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +7 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#2887]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-lnl-1/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#3432])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2652]) +8 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_edid@dp-edid-change-during-hibernate:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2252]) +5 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#373])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-lnl-1/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#7642]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-9/igt@kms_content_protection@content-type-change.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2320]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-9/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2244]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-1/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#4422] / [Intel XE#7442])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-10/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#6126] / [Intel XE#776])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: NOTRUN -> [FAIL][25] ([Intel XE#301]) +1 other test fail
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2311]) +28 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-10/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-spr-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#6312]) +2 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-lnl-1/igt@kms_frontbuffer_tracking@drrshdr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#4141]) +8 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#656] / [Intel XE#7905]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-lnl-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#7905]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-lnl-1/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2313]) +28 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7061] / [Intel XE#7356])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@hdr-abgr161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7061]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-9/igt@kms_frontbuffer_tracking@hdr-abgr161616f-draw-blt.html
* igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#7865])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-lnl-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010:
- shard-bmg: [PASS][36] -> [SKIP][37] ([Intel XE#7915]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-10/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-1/igt@kms_hdr@static-swap@pipe-a-hdmi-a-3-xrgb2101010.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#6911] / [Intel XE#7466])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#7283])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#7283])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-lnl-3/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#5021] / [Intel XE#7377])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#3309] / [Intel XE#7368])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-8/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@deep-pkgc:
- shard-lnl: [PASS][44] -> [FAIL][45] ([Intel XE#2029] / [Intel XE#7395])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-lnl-4/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2499])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-6/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#1489]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-10/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-pr-suspend:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-3/igt@kms_psr@fbc-pr-suspend.html
* igt@kms_psr@psr2-primary-render:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2234])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-5/igt@kms_psr@psr2-primary-render.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#7795])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-10/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2330] / [Intel XE#5813])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_sharpness_filter@filter-suspend:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#6503])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-3/igt@kms_sharpness_filter@filter-suspend.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#1499]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-5/igt@kms_vrr@max-min.html
* igt@xe_compute@eu-busy-10s:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#6599])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-6/igt@xe_compute@eu-busy-10s.html
* igt@xe_eudebug_online@resume-one:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#7636]) +5 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-1/igt@xe_eudebug_online@resume-one.html
* igt@xe_evict@evict-mixed-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#6540] / [Intel XE#688])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-lnl-4/igt@xe_evict@evict-mixed-threads-small-multi-vm.html
* igt@xe_evict@evict-small-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#7140])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-3/igt@xe_evict@evict-small-multi-queue-cm.html
* igt@xe_exec_balancer@many-virtual-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#7482]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-lnl-8/igt@xe_exec_balancer@many-virtual-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2322] / [Intel XE#7372]) +4 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html
* igt@xe_exec_fault_mode@twice-multi-queue-imm:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#7136]) +8 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-8/igt@xe_exec_fault_mode@twice-multi-queue-imm.html
* igt@xe_exec_multi_queue@many-execs-preempt-mode-close-fd:
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#6874]) +12 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-5/igt@xe_exec_multi_queue@many-execs-preempt-mode-close-fd.html
* igt@xe_exec_reset@long-spin-many-preempt-threads:
- shard-bmg: [PASS][63] -> [FAIL][64] ([Intel XE#7956])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-3/igt@xe_exec_reset@long-spin-many-preempt-threads.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-9/igt@xe_exec_reset@long-spin-many-preempt-threads.html
* igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#7138]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-mixed-userptr-rebind.html
* igt@xe_multigpu_svm@mgpu-latency-copy-basic:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#6964]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-5/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html
* igt@xe_pat@l2-flush-opt-svm-pat-restrict:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#7590])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-9/igt@xe_pat@l2-flush-opt-svm-pat-restrict.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2245] / [Intel XE#7590])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-3/igt@xe_pat@pat-index-xelp.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#5694] / [Intel XE#7370])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-4/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3cold-mmap-system:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2284] / [Intel XE#7370]) +2 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-4/igt@xe_pm@d3cold-mmap-system.html
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#2284] / [Intel XE#366] / [Intel XE#7370])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-lnl-1/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#4733] / [Intel XE#7417])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-4/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html
* igt@xe_query@multigpu-query-gt-list:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#944])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-4/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-bmg: NOTRUN -> [ABORT][74] ([Intel XE#7914])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-5/igt@xe_wedged@wedged-mode-toggle.html
#### Possible fixes ####
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [FAIL][75] ([Intel XE#7445]) -> [PASS][76]
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-3/igt@intel_hwmon@hwmon-write.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-5/igt@intel_hwmon@hwmon-write.html
* igt@kms_color@ctm-0-75:
- shard-bmg: [INCOMPLETE][77] -> [PASS][78] +1 other test pass
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-2/igt@kms_color@ctm-0-75.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-4/igt@kms_color@ctm-0-75.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][79] ([Intel XE#7571]) -> [PASS][80]
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f:
- shard-bmg: [SKIP][81] ([Intel XE#7915]) -> [PASS][82] +1 other test pass
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-1/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-6/igt@kms_hdr@static-toggle@pipe-a-hdmi-a-3-xrgb16161616f.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-lnl: [SKIP][83] ([Intel XE#4692] / [Intel XE#7508]) -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-lnl-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-lnl-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_vrr@max-min:
- shard-lnl: [FAIL][85] ([Intel XE#4227]) -> [PASS][86] +1 other test pass
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-lnl-5/igt@kms_vrr@max-min.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-lnl-1/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [FAIL][87] ([Intel XE#2142]) -> [PASS][88] +1 other test pass
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-lnl-7/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][89] ([Intel XE#6321]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-free-nomemset:
- shard-bmg: [INCOMPLETE][91] ([Intel XE#2594]) -> [PASS][92]
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-6/igt@xe_exec_system_allocator@threads-shared-vm-many-free-nomemset.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-free-nomemset.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random:
- shard-bmg: [FAIL][93] ([Intel XE#5937]) -> [PASS][94] +1 other test pass
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-4/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-9/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: [FAIL][95] ([Intel XE#6569]) -> [PASS][96]
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-3/igt@xe_sriov_flr@flr-each-isolation.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-9/igt@xe_sriov_flr@flr-each-isolation.html
#### Warnings ####
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][97] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][98] ([Intel XE#2426] / [Intel XE#5848])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[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#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[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#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[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#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7368]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7368
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7395
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
[Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7508
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795
[Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865
[Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905
[Intel XE#7914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7914
[Intel XE#7915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7915
[Intel XE#7956]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7956
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8903 -> IGT_8904
* Linux: xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4 -> xe-pw-165914v3
IGT_8903: 6f88532e2fe22529195cc2f8cabff93d994688f8 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8904: 07cadbb0bf25b18ac37467c4505f87eb50d4e435 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-5047-b83102e9c06357b09f2cfbe944269786cb6985c4: b83102e9c06357b09f2cfbe944269786cb6985c4
xe-pw-165914v3: 165914v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-165914v3/index.html
[-- Attachment #2: Type: text/html, Size: 35577 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH v2 2/3] gpu/buddy: Track per-order free blocks with a scoreboard
2026-05-11 16:41 ` [PATCH v2 2/3] gpu/buddy: Track per-order free blocks with a scoreboard Francois Dugast
@ 2026-05-15 15:50 ` Matthew Auld
0 siblings, 0 replies; 13+ messages in thread
From: Matthew Auld @ 2026-05-15 15:50 UTC (permalink / raw)
To: Francois Dugast, intel-xe; +Cc: dri-devel
On 11/05/2026 17:41, Francois Dugast wrote:
> Reporting per-order free block counts in drm_buddy_print() currently
> requires walking all rbtrees, which is O(n) over the total number of
> free blocks and holds the allocator lock for the duration. This becomes
> expensive on large VRAM heaps with many small free fragments.
>
> Maintain a free_scoreboard[] array indexed by order instead, so that
> the count for any order is always available in O(1). The scoreboard is
> kept accurate by hooking into the four places where a block's free state
> changes: mark_free(), mark_allocated(), mark_split(), and the sites in
> __gpu_buddy_free(), __force_merge(), and the four err_undo paths that
> call rbtree_remove() directly on free blocks without going through
> mark_*().
>
> The print functions are simplified as a result: the rbtree traversal
> is replaced by a direct array lookup.
>
> v2: Update after fix for use-after-free in split_block() call sites
>
> Signed-off-by: Francois Dugast <francois.dugast@intel.com>
> Assisted-by: GitHub Copilot:claude-sonnet-4.6
> ---
> drivers/gpu/buddy.c | 39 +++++++++++++++++++++++--------------
> drivers/gpu/drm/drm_buddy.c | 16 ++-------------
> include/linux/gpu_buddy.h | 7 +++++++
> 3 files changed, 33 insertions(+), 29 deletions(-)
>
> diff --git a/drivers/gpu/buddy.c b/drivers/gpu/buddy.c
> index dac2027bb64a..01247e3201fb 100644
> --- a/drivers/gpu/buddy.c
> +++ b/drivers/gpu/buddy.c
> @@ -193,6 +193,8 @@ static void mark_allocated(struct gpu_buddy *mm,
> block->header &= ~GPU_BUDDY_HEADER_STATE;
> block->header |= GPU_BUDDY_ALLOCATED;
>
> + mm->free_scoreboard[gpu_buddy_block_order(block)]--;
> +
> rbtree_remove(mm, block);
> }
>
> @@ -204,6 +206,8 @@ static void mark_free(struct gpu_buddy *mm,
> block->header &= ~GPU_BUDDY_HEADER_STATE;
> block->header |= GPU_BUDDY_FREE;
>
> + mm->free_scoreboard[gpu_buddy_block_order(block)]++;
> +
> tree = get_block_tree(block);
> rbtree_insert(mm, block, tree);
> }
> @@ -214,6 +218,8 @@ static void mark_split(struct gpu_buddy *mm,
> block->header &= ~GPU_BUDDY_HEADER_STATE;
> block->header |= GPU_BUDDY_SPLIT;
>
> + mm->free_scoreboard[gpu_buddy_block_order(block)]--;
> +
> rbtree_remove(mm, block);
> }
>
> @@ -271,6 +277,7 @@ static unsigned int __gpu_buddy_free(struct gpu_buddy *mm,
> }
>
> rbtree_remove(mm, buddy);
> + mm->free_scoreboard[gpu_buddy_block_order(buddy)]--;
> if (force_merge && gpu_buddy_block_is_clear(buddy))
> mm->clear_avail -= gpu_buddy_block_size(mm, buddy);
>
> @@ -335,6 +342,7 @@ static int __force_merge(struct gpu_buddy *mm,
> iter = rb_prev(iter);
>
> rbtree_remove(mm, block);
> + mm->free_scoreboard[gpu_buddy_block_order(block)]--;
> if (gpu_buddy_block_is_clear(block))
> mm->clear_avail -= gpu_buddy_block_size(mm, block);
>
> @@ -384,11 +392,17 @@ int gpu_buddy_init(struct gpu_buddy *mm, u64 size, u64 chunk_size)
>
> BUG_ON(mm->max_order > GPU_BUDDY_MAX_ORDER);
>
> + mm->free_scoreboard = kcalloc(mm->max_order + 1,
> + sizeof(*mm->free_scoreboard),
> + GFP_KERNEL);
> + if (!mm->free_scoreboard)
> + return -ENOMEM;
> +
> mm->free_trees = kmalloc_array(GPU_BUDDY_MAX_FREE_TREES,
> sizeof(*mm->free_trees),
> GFP_KERNEL);
> if (!mm->free_trees)
> - return -ENOMEM;
> + goto out_free_scoreboard;
>
> for_each_free_tree(i) {
> mm->free_trees[i] = kmalloc_array(mm->max_order + 1,
> @@ -450,6 +464,8 @@ int gpu_buddy_init(struct gpu_buddy *mm, u64 size, u64 chunk_size)
> while (i--)
> kfree(mm->free_trees[i]);
> kfree(mm->free_trees);
> +out_free_scoreboard:
> + kfree(mm->free_scoreboard);
> return -ENOMEM;
> }
> EXPORT_SYMBOL(gpu_buddy_init);
> @@ -488,6 +504,7 @@ void gpu_buddy_fini(struct gpu_buddy *mm)
> kfree(mm->free_trees[i]);
> kfree(mm->free_trees);
> kfree(mm->roots);
> + kfree(mm->free_scoreboard);
> }
> EXPORT_SYMBOL(gpu_buddy_fini);
>
> @@ -739,6 +756,7 @@ __alloc_range_bias(struct gpu_buddy *mm,
> (gpu_buddy_block_is_free(block) &&
> gpu_buddy_block_is_free(buddy))) {
> rbtree_remove(mm, block);
> + mm->free_scoreboard[gpu_buddy_block_order(block)]--;
> __gpu_buddy_free(mm, block, false);
Wondering if it now makes sense to refactor this and consolidate in one
place? Maybe something like:
__gpu_buddy_undo_splits()
{
if (is_free(block) && is_free(buddy) {
rbtree_remove(mm, block);
mm->free_scoreboard[gpu_buddy_block_order(block)]--;
__gpu_buddy_free(mm, block, false);
}
}
> }
> return ERR_PTR(err);
> @@ -851,6 +869,7 @@ alloc_from_freetree(struct gpu_buddy *mm,
> err_undo:
> if (tmp != order) {
> rbtree_remove(mm, block);
> + mm->free_scoreboard[gpu_buddy_block_order(block)]--;
> __gpu_buddy_free(mm, block, false);
> }
> return ERR_PTR(err);
> @@ -974,6 +993,7 @@ gpu_buddy_offset_aligned_allocation(struct gpu_buddy *mm,
> (gpu_buddy_block_is_free(block) &&
> gpu_buddy_block_is_free(buddy))) {
> rbtree_remove(mm, block);
> + mm->free_scoreboard[gpu_buddy_block_order(block)]--;
> __gpu_buddy_free(mm, block, false);
> }
> return ERR_PTR(err);
> @@ -1062,6 +1082,7 @@ static int __alloc_range(struct gpu_buddy *mm,
> (gpu_buddy_block_is_free(block) &&
> gpu_buddy_block_is_free(buddy))) {
> rbtree_remove(mm, block);
> + mm->free_scoreboard[gpu_buddy_block_order(block)]--;
> __gpu_buddy_free(mm, block, false);
> }
>
> @@ -1498,21 +1519,9 @@ void gpu_buddy_print(struct gpu_buddy *mm)
> mm->chunk_size >> 10, mm->size >> 20, mm->avail >> 20, mm->clear_avail >> 20);
>
> for (order = mm->max_order; order >= 0; order--) {
> - struct gpu_buddy_block *block, *tmp;
> - struct rb_root *root;
> - u64 count = 0, free;
> - unsigned int tree;
> -
> - for_each_free_tree(tree) {
> - root = &mm->free_trees[tree][order];
> -
> - rbtree_postorder_for_each_entry_safe(block, tmp, root, rb) {
> - BUG_ON(!gpu_buddy_block_is_free(block));
> - count++;
> - }
> - }
> + u64 count = mm->free_scoreboard[order];
> + u64 free = count * (mm->chunk_size << order);
>
> - free = count * (mm->chunk_size << order);
> if (free < SZ_1M)
> pr_info("order-%2d free: %8llu KiB, blocks: %llu\n",
> order, free >> 10, count);
> diff --git a/drivers/gpu/drm/drm_buddy.c b/drivers/gpu/drm/drm_buddy.c
> index faa025498de4..eef995e08a37 100644
> --- a/drivers/gpu/drm/drm_buddy.c
> +++ b/drivers/gpu/drm/drm_buddy.c
> @@ -47,23 +47,11 @@ void drm_buddy_print(struct gpu_buddy *mm, struct drm_printer *p)
> mm->chunk_size >> 10, mm->size >> 20, mm->avail >> 20, mm->clear_avail >> 20);
>
> for (order = mm->max_order; order >= 0; order--) {
> - struct gpu_buddy_block *block, *tmp;
> - struct rb_root *root;
> - u64 count = 0, free;
> - unsigned int tree;
> -
> - for_each_free_tree(tree) {
> - root = &mm->free_trees[tree][order];
> -
> - rbtree_postorder_for_each_entry_safe(block, tmp, root, rb) {
> - BUG_ON(!gpu_buddy_block_is_free(block));
> - count++;
> - }
> - }
> + u64 count = mm->free_scoreboard[order];
> + u64 free = count * (mm->chunk_size << order);
>
> drm_printf(p, "order-%2d ", order);
>
> - free = count * (mm->chunk_size << order);
> if (free < SZ_1M)
> drm_printf(p, "free: %8llu KiB", free >> 10);
> else
> diff --git a/include/linux/gpu_buddy.h b/include/linux/gpu_buddy.h
> index 71941a039648..a28f7d7637ca 100644
> --- a/include/linux/gpu_buddy.h
> +++ b/include/linux/gpu_buddy.h
> @@ -173,6 +173,13 @@ struct gpu_buddy {
> * that fits in the remaining space.
> */
> struct gpu_buddy_block **roots;
> + /*
> + * Per-order free block scoreboard: free_scoreboard[order] holds the
> + * number of blocks of that order currently in the free state.
> + * Incremented in mark_free(), decremented wherever rbtree_remove() is
> + * called on a free block.
> + */
> + u64 *free_scoreboard;
> /* public: */
> unsigned int n_roots;
> unsigned int max_order;
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2026-05-15 15:50 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-11 16:41 [PATCH v2 0/3] gpu/buddy: Per-order free and used block scoreboards Francois Dugast
2026-05-11 16:41 ` [PATCH v2 1/3] gpu/buddy: Fix use-after-free in split_block() call sites Francois Dugast
2026-05-11 16:41 ` [PATCH v2 2/3] gpu/buddy: Track per-order free blocks with a scoreboard Francois Dugast
2026-05-15 15:50 ` Matthew Auld
2026-05-11 16:41 ` [PATCH v2 3/3] gpu/buddy: Track per-order used " Francois Dugast
2026-05-11 23:29 ` ✗ CI.checkpatch: warning for gpu/buddy: Per-order free and used block scoreboards (rev2) Patchwork
2026-05-11 23:30 ` ✓ CI.KUnit: success " Patchwork
2026-05-12 1:05 ` ✗ Xe.CI.BAT: failure " Patchwork
2026-05-12 4:13 ` ✗ Xe.CI.FULL: " Patchwork
2026-05-12 12:33 ` ✗ CI.checkpatch: warning for gpu/buddy: Per-order free and used block scoreboards (rev3) Patchwork
2026-05-12 12:34 ` ✓ CI.KUnit: success " Patchwork
2026-05-12 13:57 ` ✓ Xe.CI.BAT: " Patchwork
2026-05-13 0:43 ` ✗ Xe.CI.FULL: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox