* [PATCH v3 0/2] Fix serialization on burst of unbinds - v2
@ 2025-10-24 22:20 Matthew Brost
2025-10-24 22:20 ` [PATCH v3 1/2] drm/xe: Add last fence attachment to TLB invalidation job queues Matthew Brost
` (6 more replies)
0 siblings, 7 replies; 8+ messages in thread
From: Matthew Brost @ 2025-10-24 22:20 UTC (permalink / raw)
To: intel-xe; +Cc: thomas.hellstrom
Attempting to resolve part of [1]; this solution differs than v1 [2] by
changing last fence semantics detailed in the patches.
Overview of issue in [1]:
When a burst of unbind jobs is issued, a dependency chain can form
between the TLB invalidation of a previous unbind job and the current
one. This leads to undesirable serialization, causing current jobs to
wait unnecessarily for prior TLB invalidations, execute on the GPU when
not needed, and significantly slow down the unbind burst—resulting in up
to a 4× slowdown.
Matt
[1] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6047
[2] https://patchwork.freedesktop.org/series/156144/
Matthew Brost (2):
drm/xe: Add last fence attachment to TLB invalidation job queues
drm/xe: Decouple bind queue last fence from TLB invalidations
drivers/gpu/drm/xe/xe_exec_queue.c | 105 ++++++++++++++++++++++-
drivers/gpu/drm/xe/xe_exec_queue.h | 18 ++++
drivers/gpu/drm/xe/xe_exec_queue_types.h | 5 ++
drivers/gpu/drm/xe/xe_pt.c | 64 +++++---------
drivers/gpu/drm/xe/xe_sync.c | 58 +++++++++++--
drivers/gpu/drm/xe/xe_vm.c | 60 +++++++------
6 files changed, 234 insertions(+), 76 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v3 1/2] drm/xe: Add last fence attachment to TLB invalidation job queues
2025-10-24 22:20 [PATCH v3 0/2] Fix serialization on burst of unbinds - v2 Matthew Brost
@ 2025-10-24 22:20 ` Matthew Brost
2025-10-24 22:20 ` [PATCH v3 2/2] drm/xe: Decouple bind queue last fence from TLB invalidations Matthew Brost
` (5 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Matthew Brost @ 2025-10-24 22:20 UTC (permalink / raw)
To: intel-xe; +Cc: thomas.hellstrom
To address serialization issues with bursts of unbind jobs, this patch
adds support for attaching the last fence to TLB invalidation job
queues. The idea is that user fence signaling for a bind job reflects
both the bind job itself and the last fences of all related TLB
invalidations. The submission order of bind jobs and TLB invalidations
depends solely on the state of their respective queues.
This patch only introduces support functions for last fence attachment
to TLB invalidation queues.
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
---
v3:
- Fix assert in xe_exec_queue_tlb_inval_last_fence_set (CI)
---
drivers/gpu/drm/xe/xe_exec_queue.c | 102 +++++++++++++++++++++++
drivers/gpu/drm/xe/xe_exec_queue.h | 18 ++++
drivers/gpu/drm/xe/xe_exec_queue_types.h | 5 ++
drivers/gpu/drm/xe/xe_vm.c | 7 +-
4 files changed, 131 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c
index 90cbc95f8e2e..036640916f97 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue.c
+++ b/drivers/gpu/drm/xe/xe_exec_queue.c
@@ -376,11 +376,15 @@ void xe_exec_queue_destroy(struct kref *ref)
{
struct xe_exec_queue *q = container_of(ref, struct xe_exec_queue, refcount);
struct xe_exec_queue *eq, *next;
+ int i;
if (xe_exec_queue_uses_pxp(q))
xe_pxp_exec_queue_remove(gt_to_xe(q->gt)->pxp, q);
xe_exec_queue_last_fence_put_unlocked(q);
+ for_each_tlb_inval(i)
+ xe_exec_queue_tlb_inval_last_fence_put_unlocked(q, i);
+
if (!(q->flags & EXEC_QUEUE_FLAG_BIND_ENGINE_CHILD)) {
list_for_each_entry_safe(eq, next, &q->multi_gt_list,
multi_gt_link)
@@ -1125,6 +1129,104 @@ int xe_exec_queue_last_fence_test_dep(struct xe_exec_queue *q, struct xe_vm *vm)
return err;
}
+/**
+ * xe_exec_queue_tlb_inval_last_fence_put() - Drop ref to last TLB invalidation fence
+ * @q: The exec queue
+ * @vm: The VM the engine does a bind for
+ * @type: Either primary or media GT
+ */
+void xe_exec_queue_tlb_inval_last_fence_put(struct xe_exec_queue *q,
+ struct xe_vm *vm,
+ unsigned int type)
+{
+ xe_exec_queue_last_fence_lockdep_assert(q, vm);
+ xe_assert(vm->xe, type == XE_EXEC_QUEUE_TLB_INVAL_MEDIA_GT ||
+ type == XE_EXEC_QUEUE_TLB_INVAL_PRIMARY_GT);
+
+ xe_exec_queue_tlb_inval_last_fence_put_unlocked(q, type);
+}
+
+/**
+ * xe_exec_queue_tlb_inval_last_fence_put_unlocked() - Drop ref to last TLB
+ * invalidation fence unlocked
+ * @q: The exec queue
+ * @type: Either primary or media GT
+ *
+ * Only safe to be called from xe_exec_queue_destroy().
+ */
+void xe_exec_queue_tlb_inval_last_fence_put_unlocked(struct xe_exec_queue *q,
+ unsigned int type)
+{
+ xe_assert(q->vm->xe, type == XE_EXEC_QUEUE_TLB_INVAL_MEDIA_GT ||
+ type == XE_EXEC_QUEUE_TLB_INVAL_PRIMARY_GT);
+
+ if (q->tlb_inval[type].last_fence) {
+ dma_fence_put(q->tlb_inval[type].last_fence);
+ q->tlb_inval[type].last_fence = NULL;
+ }
+}
+
+/**
+ * xe_exec_queue_tlb_inval_last_fence_get() - Get last fence for TLB invalidation
+ * @q: The exec queue
+ * @vm: The VM the engine does a bind for
+ * @type: Either primary or media GT
+ *
+ * Get last fence, takes a ref
+ *
+ * Returns: last fence if not signaled, dma fence stub if signaled
+ */
+struct dma_fence *xe_exec_queue_tlb_inval_last_fence_get(struct xe_exec_queue *q,
+ struct xe_vm *vm,
+ unsigned int type)
+{
+ struct dma_fence *fence;
+
+ xe_exec_queue_last_fence_lockdep_assert(q, vm);
+ xe_assert(vm->xe, type == XE_EXEC_QUEUE_TLB_INVAL_MEDIA_GT ||
+ type == XE_EXEC_QUEUE_TLB_INVAL_PRIMARY_GT);
+ xe_assert(vm->xe, q->flags & (EXEC_QUEUE_FLAG_VM |
+ EXEC_QUEUE_FLAG_MIGRATE));
+
+ if (q->tlb_inval[type].last_fence &&
+ test_bit(DMA_FENCE_FLAG_SIGNALED_BIT,
+ &q->tlb_inval[type].last_fence->flags))
+ xe_exec_queue_tlb_inval_last_fence_put(q, vm, type);
+
+ fence = q->tlb_inval[type].last_fence ?: dma_fence_get_stub();
+ dma_fence_get(fence);
+ return fence;
+}
+
+/**
+ * xe_exec_queue_tlb_inval_last_fence_set() - Set last fence for TLB invalidation
+ * @q: The exec queue
+ * @vm: The VM the engine does a bind for
+ * @fence: The fence
+ * @type: Either primary or media GT
+ *
+ * Set the last fence for the tlb invalidation type on the queue. Increases
+ * reference count for fence, when closing queue
+ * xe_exec_queue_tlb_inval_last_fence_put should be called.
+ */
+void xe_exec_queue_tlb_inval_last_fence_set(struct xe_exec_queue *q,
+ struct xe_vm *vm,
+ struct dma_fence *fence,
+ unsigned int type)
+{
+ xe_exec_queue_last_fence_lockdep_assert(q, vm);
+ xe_assert(vm->xe, type == XE_EXEC_QUEUE_TLB_INVAL_MEDIA_GT ||
+ type == XE_EXEC_QUEUE_TLB_INVAL_PRIMARY_GT);
+ xe_assert(vm->xe, q->flags & (EXEC_QUEUE_FLAG_VM |
+ EXEC_QUEUE_FLAG_MIGRATE));
+
+ if (!fence)
+ return;
+
+ xe_exec_queue_tlb_inval_last_fence_put(q, vm, type);
+ q->tlb_inval[type].last_fence = dma_fence_get(fence);
+}
+
/**
* xe_exec_queue_contexts_hwsp_rebase - Re-compute GGTT references
* within all LRCs of a queue.
diff --git a/drivers/gpu/drm/xe/xe_exec_queue.h b/drivers/gpu/drm/xe/xe_exec_queue.h
index a4dfbe858bda..c4b95fad93f1 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue.h
+++ b/drivers/gpu/drm/xe/xe_exec_queue.h
@@ -14,6 +14,10 @@ struct drm_file;
struct xe_device;
struct xe_file;
+#define for_each_tlb_inval(__i) \
+ for (__i = XE_EXEC_QUEUE_TLB_INVAL_PRIMARY_GT; \
+ __i <= XE_EXEC_QUEUE_TLB_INVAL_MEDIA_GT; ++__i)
+
struct xe_exec_queue *xe_exec_queue_create(struct xe_device *xe, struct xe_vm *vm,
u32 logical_mask, u16 width,
struct xe_hw_engine *hw_engine, u32 flags,
@@ -86,6 +90,20 @@ void xe_exec_queue_last_fence_set(struct xe_exec_queue *e, struct xe_vm *vm,
struct dma_fence *fence);
int xe_exec_queue_last_fence_test_dep(struct xe_exec_queue *q,
struct xe_vm *vm);
+
+void xe_exec_queue_tlb_inval_last_fence_put(struct xe_exec_queue *q,
+ struct xe_vm *vm,
+ unsigned int type);
+void xe_exec_queue_tlb_inval_last_fence_put_unlocked(struct xe_exec_queue *q,
+ unsigned int type);
+struct dma_fence *xe_exec_queue_tlb_inval_last_fence_get(struct xe_exec_queue *q,
+ struct xe_vm *vm,
+ unsigned int type);
+void xe_exec_queue_tlb_inval_last_fence_set(struct xe_exec_queue *q,
+ struct xe_vm *vm,
+ struct dma_fence *fence,
+ unsigned int type);
+
void xe_exec_queue_update_run_ticks(struct xe_exec_queue *q);
int xe_exec_queue_contexts_hwsp_rebase(struct xe_exec_queue *q, void *scratch);
diff --git a/drivers/gpu/drm/xe/xe_exec_queue_types.h b/drivers/gpu/drm/xe/xe_exec_queue_types.h
index 282505fa1377..b4185fee54e1 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue_types.h
+++ b/drivers/gpu/drm/xe/xe_exec_queue_types.h
@@ -145,6 +145,11 @@ struct xe_exec_queue {
* dependency scheduler
*/
struct xe_dep_scheduler *dep_scheduler;
+ /**
+ * @last_fence: last fence for tlb invalidation, protected by
+ * vm->lock in write mode
+ */
+ struct dma_fence *last_fence;
} tlb_inval[XE_EXEC_QUEUE_TLB_INVAL_COUNT];
/** @pxp: PXP info tracking */
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 10d77666a425..d2a2f823f1b3 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -1731,8 +1731,13 @@ void xe_vm_close_and_put(struct xe_vm *vm)
down_write(&vm->lock);
for_each_tile(tile, xe, id) {
- if (vm->q[id])
+ if (vm->q[id]) {
+ int i;
+
xe_exec_queue_last_fence_put(vm->q[id], vm);
+ for_each_tlb_inval(i)
+ xe_exec_queue_tlb_inval_last_fence_put(vm->q[id], vm, i);
+ }
}
up_write(&vm->lock);
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH v3 2/2] drm/xe: Decouple bind queue last fence from TLB invalidations
2025-10-24 22:20 [PATCH v3 0/2] Fix serialization on burst of unbinds - v2 Matthew Brost
2025-10-24 22:20 ` [PATCH v3 1/2] drm/xe: Add last fence attachment to TLB invalidation job queues Matthew Brost
@ 2025-10-24 22:20 ` Matthew Brost
2025-10-24 22:27 ` ✗ CI.checkpatch: warning for Fix serialization on burst of unbinds - v2 Patchwork
` (4 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Matthew Brost @ 2025-10-24 22:20 UTC (permalink / raw)
To: intel-xe; +Cc: thomas.hellstrom
Separate the bind queue's last fence to apply only to the bind job,
rather than combining it with associated TLB invalidation jobs. This
avoids unnecessary serialization of bind jobs on prior TLB
invalidations.
Since user fence signaling depends on the completion of both bind and
TLB invalidation jobs, their fences are merged later in the bind
pipeline to preserve correct signaling order.
Link: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6047
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
---
v3:
- Fix lockdep assert for migrate queues (CI)
---
drivers/gpu/drm/xe/xe_exec_queue.c | 3 +-
drivers/gpu/drm/xe/xe_pt.c | 64 ++++++++++--------------------
drivers/gpu/drm/xe/xe_sync.c | 58 +++++++++++++++++++++++----
drivers/gpu/drm/xe/xe_vm.c | 53 +++++++++++++------------
4 files changed, 103 insertions(+), 75 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c
index 036640916f97..36ddf98ff537 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue.c
+++ b/drivers/gpu/drm/xe/xe_exec_queue.c
@@ -1006,7 +1006,8 @@ static void xe_exec_queue_last_fence_lockdep_assert(struct xe_exec_queue *q,
lockdep_assert_held(&vm->lock);
} else {
xe_vm_assert_held(vm);
- lockdep_assert_held(&q->hwe->hw_engine_group->mode_sem);
+ if (!(q->flags & EXEC_QUEUE_FLAG_MIGRATE))
+ lockdep_assert_held(&q->hwe->hw_engine_group->mode_sem);
}
}
diff --git a/drivers/gpu/drm/xe/xe_pt.c b/drivers/gpu/drm/xe/xe_pt.c
index d22fd1ccc0ba..7637757ca0dc 100644
--- a/drivers/gpu/drm/xe/xe_pt.c
+++ b/drivers/gpu/drm/xe/xe_pt.c
@@ -3,8 +3,6 @@
* Copyright © 2022 Intel Corporation
*/
-#include <linux/dma-fence-array.h>
-
#include "xe_pt.h"
#include "regs/xe_gtt_defs.h"
@@ -2359,10 +2357,9 @@ xe_pt_update_ops_run(struct xe_tile *tile, struct xe_vma_ops *vops)
struct xe_vm *vm = vops->vm;
struct xe_vm_pgtable_update_ops *pt_update_ops =
&vops->pt_update_ops[tile->id];
- struct dma_fence *fence, *ifence, *mfence;
+ struct xe_exec_queue *q = pt_update_ops->q;
+ struct dma_fence *fence, *ifence = NULL, *mfence = NULL;
struct xe_tlb_inval_job *ijob = NULL, *mjob = NULL;
- struct dma_fence **fences = NULL;
- struct dma_fence_array *cf = NULL;
struct xe_range_fence *rfence;
struct xe_vma_op *op;
int err = 0, i;
@@ -2390,7 +2387,6 @@ xe_pt_update_ops_run(struct xe_tile *tile, struct xe_vma_ops *vops)
#endif
if (pt_update_ops->needs_invalidation) {
- struct xe_exec_queue *q = pt_update_ops->q;
struct xe_dep_scheduler *dep_scheduler =
to_dep_scheduler(q, tile->primary_gt);
@@ -2419,17 +2415,6 @@ xe_pt_update_ops_run(struct xe_tile *tile, struct xe_vma_ops *vops)
goto free_ijob;
}
update.mjob = mjob;
-
- fences = kmalloc_array(2, sizeof(*fences), GFP_KERNEL);
- if (!fences) {
- err = -ENOMEM;
- goto free_ijob;
- }
- cf = dma_fence_array_alloc(2);
- if (!cf) {
- err = -ENOMEM;
- goto free_ijob;
- }
}
}
@@ -2460,31 +2445,12 @@ xe_pt_update_ops_run(struct xe_tile *tile, struct xe_vma_ops *vops)
pt_update_ops->last, fence))
dma_fence_wait(fence, false);
- /* tlb invalidation must be done before signaling unbind/rebind */
- if (ijob) {
- struct dma_fence *__fence;
-
+ if (ijob)
ifence = xe_tlb_inval_job_push(ijob, tile->migrate, fence);
- __fence = ifence;
-
- if (mjob) {
- fences[0] = ifence;
- mfence = xe_tlb_inval_job_push(mjob, tile->migrate,
- fence);
- fences[1] = mfence;
-
- dma_fence_array_init(cf, 2, fences,
- vm->composite_fence_ctx,
- vm->composite_fence_seqno++,
- false);
- __fence = &cf->base;
- }
+ if (mjob)
+ mfence = xe_tlb_inval_job_push(mjob, tile->migrate, fence);
- dma_fence_put(fence);
- fence = __fence;
- }
-
- if (!mjob) {
+ if (!mjob && !ijob) {
dma_resv_add_fence(xe_vm_resv(vm), fence,
pt_update_ops->wait_vm_bookkeep ?
DMA_RESV_USAGE_KERNEL :
@@ -2492,6 +2458,14 @@ xe_pt_update_ops_run(struct xe_tile *tile, struct xe_vma_ops *vops)
list_for_each_entry(op, &vops->list, link)
op_commit(vops->vm, tile, pt_update_ops, op, fence, NULL);
+ } else if (ijob && !mjob) {
+ dma_resv_add_fence(xe_vm_resv(vm), ifence,
+ pt_update_ops->wait_vm_bookkeep ?
+ DMA_RESV_USAGE_KERNEL :
+ DMA_RESV_USAGE_BOOKKEEP);
+
+ list_for_each_entry(op, &vops->list, link)
+ op_commit(vops->vm, tile, pt_update_ops, op, ifence, NULL);
} else {
dma_resv_add_fence(xe_vm_resv(vm), ifence,
pt_update_ops->wait_vm_bookkeep ?
@@ -2511,16 +2485,22 @@ xe_pt_update_ops_run(struct xe_tile *tile, struct xe_vma_ops *vops)
if (pt_update_ops->needs_svm_lock)
xe_svm_notifier_unlock(vm);
+ xe_exec_queue_last_fence_set(q, vm, fence);
+ xe_exec_queue_tlb_inval_last_fence_set(q, vm, ifence,
+ XE_EXEC_QUEUE_TLB_INVAL_PRIMARY_GT);
+ xe_exec_queue_tlb_inval_last_fence_set(q, vm, mfence,
+ XE_EXEC_QUEUE_TLB_INVAL_MEDIA_GT);
+
xe_tlb_inval_job_put(mjob);
xe_tlb_inval_job_put(ijob);
+ dma_fence_put(ifence);
+ dma_fence_put(mfence);
return fence;
free_rfence:
kfree(rfence);
free_ijob:
- kfree(cf);
- kfree(fences);
xe_tlb_inval_job_put(mjob);
xe_tlb_inval_job_put(ijob);
kill_vm_tile1:
diff --git a/drivers/gpu/drm/xe/xe_sync.c b/drivers/gpu/drm/xe/xe_sync.c
index 82872a51f098..a5c073100b48 100644
--- a/drivers/gpu/drm/xe/xe_sync.c
+++ b/drivers/gpu/drm/xe/xe_sync.c
@@ -14,7 +14,7 @@
#include <drm/drm_syncobj.h>
#include <uapi/drm/xe_drm.h>
-#include "xe_device_types.h"
+#include "xe_device.h"
#include "xe_exec_queue.h"
#include "xe_macros.h"
#include "xe_sched_job_types.h"
@@ -284,26 +284,70 @@ xe_sync_in_fence_get(struct xe_sync_entry *sync, int num_sync,
struct dma_fence **fences = NULL;
struct dma_fence_array *cf = NULL;
struct dma_fence *fence;
- int i, num_in_fence = 0, current_fence = 0;
+ int i, num_fence = 0, current_fence = 0;
lockdep_assert_held(&vm->lock);
/* Count in-fences */
for (i = 0; i < num_sync; ++i) {
if (sync[i].fence) {
- ++num_in_fence;
+ ++num_fence;
fence = sync[i].fence;
}
}
/* Easy case... */
- if (!num_in_fence) {
+ if (!num_fence) {
+ if (q->flags & EXEC_QUEUE_FLAG_VM) {
+ struct xe_exec_queue *__q;
+ struct xe_tile *tile;
+ u8 id;
+
+ for_each_tile(tile, vm->xe, id)
+ num_fence += (1 + XE_MAX_GT_PER_TILE);
+
+ fences = kmalloc_array(num_fence, sizeof(*fences),
+ GFP_KERNEL);
+ if (!fences)
+ return ERR_PTR(-ENOMEM);
+
+ fences[current_fence++] =
+ xe_exec_queue_last_fence_get(q, vm);
+ for_each_tlb_inval(i)
+ fences[current_fence++] =
+ xe_exec_queue_tlb_inval_last_fence_get(q, vm, i);
+ list_for_each_entry(__q, &q->multi_gt_list,
+ multi_gt_link) {
+ fences[current_fence++] =
+ xe_exec_queue_last_fence_get(__q, vm);
+ for_each_tlb_inval(i)
+ fences[current_fence++] =
+ xe_exec_queue_tlb_inval_last_fence_get(__q, vm, i);
+ }
+
+ xe_assert(vm->xe, current_fence == num_fence);
+ cf = dma_fence_array_create(num_fence, fences,
+ vm->composite_fence_ctx,
+ vm->composite_fence_seqno++,
+ false);
+ if (!cf) {
+ --vm->composite_fence_seqno;
+ goto err_out;
+ }
+
+ return &cf->base;
+ }
+
fence = xe_exec_queue_last_fence_get(q, vm);
return fence;
}
- /* Create composite fence */
- fences = kmalloc_array(num_in_fence + 1, sizeof(*fences), GFP_KERNEL);
+ /*
+ * Create composite fence - FIXME - the below code doesn't work. This is
+ * unused in Mesa so we are ok for the moment. Perhaps we just disable
+ * this entire code path if number of in fences != 0.
+ */
+ fences = kmalloc_array(num_fence + 1, sizeof(*fences), GFP_KERNEL);
if (!fences)
return ERR_PTR(-ENOMEM);
for (i = 0; i < num_sync; ++i) {
@@ -313,7 +357,7 @@ xe_sync_in_fence_get(struct xe_sync_entry *sync, int num_sync,
}
}
fences[current_fence++] = xe_exec_queue_last_fence_get(q, vm);
- cf = dma_fence_array_create(num_in_fence, fences,
+ cf = dma_fence_array_create(num_fence, fences,
vm->composite_fence_ctx,
vm->composite_fence_seqno++,
false);
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index d2a2f823f1b3..f6fda1dd8f9d 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -3107,20 +3107,26 @@ static struct dma_fence *ops_execute(struct xe_vm *vm,
struct dma_fence *fence = NULL;
struct dma_fence **fences = NULL;
struct dma_fence_array *cf = NULL;
- int number_tiles = 0, current_fence = 0, err;
+ int number_tiles = 0, current_fence = 0, n_fence = 0, err;
u8 id;
number_tiles = vm_ops_setup_tile_args(vm, vops);
if (number_tiles == 0)
return ERR_PTR(-ENODATA);
- if (number_tiles > 1) {
- fences = kmalloc_array(number_tiles, sizeof(*fences),
- GFP_KERNEL);
- if (!fences) {
- fence = ERR_PTR(-ENOMEM);
- goto err_trace;
- }
+ for_each_tile(tile, vm->xe, id)
+ n_fence += (1 + XE_MAX_GT_PER_TILE);
+
+ fences = kmalloc_array(n_fence, sizeof(*fences), GFP_KERNEL);
+ if (!fences) {
+ fence = ERR_PTR(-ENOMEM);
+ goto err_trace;
+ }
+
+ cf = dma_fence_array_alloc(n_fence);
+ if (!cf) {
+ fence = ERR_PTR(-ENOMEM);
+ goto err_out;
}
for_each_tile(tile, vm->xe, id) {
@@ -3137,29 +3143,28 @@ static struct dma_fence *ops_execute(struct xe_vm *vm,
trace_xe_vm_ops_execute(vops);
for_each_tile(tile, vm->xe, id) {
+ struct xe_exec_queue *q = vops->pt_update_ops[tile->id].q;
+ int i;
+
+ fence = NULL;
if (!vops->pt_update_ops[id].num_ops)
- continue;
+ goto collect_fences;
fence = xe_pt_update_ops_run(tile, vops);
if (IS_ERR(fence))
goto err_out;
- if (fences)
- fences[current_fence++] = fence;
+collect_fences:
+ fences[current_fence++] = fence ?: dma_fence_get_stub();
+ for_each_tlb_inval(i)
+ fences[current_fence++] =
+ xe_exec_queue_tlb_inval_last_fence_get(q, vm, i);
}
- if (fences) {
- cf = dma_fence_array_create(number_tiles, fences,
- vm->composite_fence_ctx,
- vm->composite_fence_seqno++,
- false);
- if (!cf) {
- --vm->composite_fence_seqno;
- fence = ERR_PTR(-ENOMEM);
- goto err_out;
- }
- fence = &cf->base;
- }
+ xe_assert(vm->xe, current_fence == n_fence);
+ dma_fence_array_init(cf, n_fence, fences, vm->composite_fence_ctx,
+ vm->composite_fence_seqno++, false);
+ fence = &cf->base;
for_each_tile(tile, vm->xe, id) {
if (!vops->pt_update_ops[id].num_ops)
@@ -3220,7 +3225,6 @@ static void op_add_ufence(struct xe_vm *vm, struct xe_vma_op *op,
static void vm_bind_ioctl_ops_fini(struct xe_vm *vm, struct xe_vma_ops *vops,
struct dma_fence *fence)
{
- struct xe_exec_queue *wait_exec_queue = to_wait_exec_queue(vm, vops->q);
struct xe_user_fence *ufence;
struct xe_vma_op *op;
int i;
@@ -3241,7 +3245,6 @@ static void vm_bind_ioctl_ops_fini(struct xe_vm *vm, struct xe_vma_ops *vops,
if (fence) {
for (i = 0; i < vops->num_syncs; i++)
xe_sync_entry_signal(vops->syncs + i, fence);
- xe_exec_queue_last_fence_set(wait_exec_queue, vm, fence);
}
}
--
2.34.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* ✗ CI.checkpatch: warning for Fix serialization on burst of unbinds - v2
2025-10-24 22:20 [PATCH v3 0/2] Fix serialization on burst of unbinds - v2 Matthew Brost
2025-10-24 22:20 ` [PATCH v3 1/2] drm/xe: Add last fence attachment to TLB invalidation job queues Matthew Brost
2025-10-24 22:20 ` [PATCH v3 2/2] drm/xe: Decouple bind queue last fence from TLB invalidations Matthew Brost
@ 2025-10-24 22:27 ` Patchwork
2025-10-24 22:28 ` ✓ CI.KUnit: success " Patchwork
` (3 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-10-24 22:27 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
== Series Details ==
Series: Fix serialization on burst of unbinds - v2
URL : https://patchwork.freedesktop.org/series/156517/
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
f867e605613af1770f90c4b0afd4a8f06424d1f0
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 37d4dcdf92255232641a0b6f6d6bda1baba598ad
Author: Matthew Brost <matthew.brost@intel.com>
Date: Fri Oct 24 15:20:47 2025 -0700
drm/xe: Decouple bind queue last fence from TLB invalidations
Separate the bind queue's last fence to apply only to the bind job,
rather than combining it with associated TLB invalidation jobs. This
avoids unnecessary serialization of bind jobs on prior TLB
invalidations.
Since user fence signaling depends on the completion of both bind and
TLB invalidation jobs, their fences are merged later in the bind
pipeline to preserve correct signaling order.
Link: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6047
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
+ /mt/dim checkpatch d827507f9c3c65785556819d50eb5131b2bf6a3a drm-intel
a2148260232b drm/xe: Add last fence attachment to TLB invalidation job queues
-:152: CHECK:MACRO_ARG_REUSE: Macro argument reuse '__i' - possible side-effects?
#152: FILE: drivers/gpu/drm/xe/xe_exec_queue.h:17:
+#define for_each_tlb_inval(__i) \
+ for (__i = XE_EXEC_QUEUE_TLB_INVAL_PRIMARY_GT; \
+ __i <= XE_EXEC_QUEUE_TLB_INVAL_MEDIA_GT; ++__i)
total: 0 errors, 0 warnings, 1 checks, 174 lines checked
37d4dcdf9225 drm/xe: Decouple bind queue last fence from TLB invalidations
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ CI.KUnit: success for Fix serialization on burst of unbinds - v2
2025-10-24 22:20 [PATCH v3 0/2] Fix serialization on burst of unbinds - v2 Matthew Brost
` (2 preceding siblings ...)
2025-10-24 22:27 ` ✗ CI.checkpatch: warning for Fix serialization on burst of unbinds - v2 Patchwork
@ 2025-10-24 22:28 ` Patchwork
2025-10-24 23:15 ` ✗ Xe.CI.BAT: failure " Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-10-24 22:28 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
== Series Details ==
Series: Fix serialization on burst of unbinds - v2
URL : https://patchwork.freedesktop.org/series/156517/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[22:27:17] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:27:21] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[22:27:54] Starting KUnit Kernel (1/1)...
[22:27:54] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:27:54] ================== guc_buf (11 subtests) ===================
[22:27:54] [PASSED] test_smallest
[22:27:54] [PASSED] test_largest
[22:27:54] [PASSED] test_granular
[22:27:54] [PASSED] test_unique
[22:27:54] [PASSED] test_overlap
[22:27:54] [PASSED] test_reusable
[22:27:54] [PASSED] test_too_big
[22:27:54] [PASSED] test_flush
[22:27:54] [PASSED] test_lookup
[22:27:54] [PASSED] test_data
[22:27:54] [PASSED] test_class
[22:27:54] ===================== [PASSED] guc_buf =====================
[22:27:54] =================== guc_dbm (7 subtests) ===================
[22:27:54] [PASSED] test_empty
[22:27:54] [PASSED] test_default
[22:27:54] ======================== test_size ========================
[22:27:54] [PASSED] 4
[22:27:54] [PASSED] 8
[22:27:54] [PASSED] 32
[22:27:54] [PASSED] 256
[22:27:54] ==================== [PASSED] test_size ====================
[22:27:54] ======================= test_reuse ========================
[22:27:54] [PASSED] 4
[22:27:54] [PASSED] 8
[22:27:54] [PASSED] 32
[22:27:54] [PASSED] 256
[22:27:54] =================== [PASSED] test_reuse ====================
[22:27:54] =================== test_range_overlap ====================
[22:27:54] [PASSED] 4
[22:27:54] [PASSED] 8
[22:27:54] [PASSED] 32
[22:27:54] [PASSED] 256
[22:27:54] =============== [PASSED] test_range_overlap ================
[22:27:54] =================== test_range_compact ====================
[22:27:54] [PASSED] 4
[22:27:54] [PASSED] 8
[22:27:54] [PASSED] 32
[22:27:54] [PASSED] 256
[22:27:54] =============== [PASSED] test_range_compact ================
[22:27:54] ==================== test_range_spare =====================
[22:27:54] [PASSED] 4
[22:27:54] [PASSED] 8
[22:27:54] [PASSED] 32
[22:27:54] [PASSED] 256
[22:27:54] ================ [PASSED] test_range_spare =================
[22:27:54] ===================== [PASSED] guc_dbm =====================
[22:27:54] =================== guc_idm (6 subtests) ===================
[22:27:54] [PASSED] bad_init
[22:27:54] [PASSED] no_init
[22:27:54] [PASSED] init_fini
[22:27:54] [PASSED] check_used
[22:27:54] [PASSED] check_quota
[22:27:54] [PASSED] check_all
[22:27:54] ===================== [PASSED] guc_idm =====================
[22:27:54] ================== no_relay (3 subtests) ===================
[22:27:54] [PASSED] xe_drops_guc2pf_if_not_ready
[22:27:54] [PASSED] xe_drops_guc2vf_if_not_ready
[22:27:54] [PASSED] xe_rejects_send_if_not_ready
[22:27:54] ==================== [PASSED] no_relay =====================
[22:27:54] ================== pf_relay (14 subtests) ==================
[22:27:54] [PASSED] pf_rejects_guc2pf_too_short
[22:27:54] [PASSED] pf_rejects_guc2pf_too_long
[22:27:54] [PASSED] pf_rejects_guc2pf_no_payload
[22:27:54] [PASSED] pf_fails_no_payload
[22:27:54] [PASSED] pf_fails_bad_origin
[22:27:54] [PASSED] pf_fails_bad_type
[22:27:54] [PASSED] pf_txn_reports_error
[22:27:54] [PASSED] pf_txn_sends_pf2guc
[22:27:54] [PASSED] pf_sends_pf2guc
[22:27:54] [SKIPPED] pf_loopback_nop
[22:27:54] [SKIPPED] pf_loopback_echo
[22:27:54] [SKIPPED] pf_loopback_fail
[22:27:54] [SKIPPED] pf_loopback_busy
[22:27:54] [SKIPPED] pf_loopback_retry
[22:27:54] ==================== [PASSED] pf_relay =====================
[22:27:54] ================== vf_relay (3 subtests) ===================
[22:27:54] [PASSED] vf_rejects_guc2vf_too_short
[22:27:54] [PASSED] vf_rejects_guc2vf_too_long
[22:27:54] [PASSED] vf_rejects_guc2vf_no_payload
[22:27:54] ==================== [PASSED] vf_relay =====================
[22:27:54] ===================== lmtt (1 subtest) =====================
[22:27:54] ======================== test_ops =========================
[22:27:54] [PASSED] 2-level
[22:27:54] [PASSED] multi-level
[22:27:54] ==================== [PASSED] test_ops =====================
[22:27:54] ====================== [PASSED] lmtt =======================
[22:27:54] ================= pf_service (11 subtests) =================
[22:27:54] [PASSED] pf_negotiate_any
[22:27:54] [PASSED] pf_negotiate_base_match
[22:27:54] [PASSED] pf_negotiate_base_newer
[22:27:54] [PASSED] pf_negotiate_base_next
[22:27:54] [SKIPPED] pf_negotiate_base_older
[22:27:54] [PASSED] pf_negotiate_base_prev
[22:27:54] [PASSED] pf_negotiate_latest_match
[22:27:54] [PASSED] pf_negotiate_latest_newer
[22:27:54] [PASSED] pf_negotiate_latest_next
[22:27:54] [SKIPPED] pf_negotiate_latest_older
[22:27:54] [SKIPPED] pf_negotiate_latest_prev
[22:27:54] =================== [PASSED] pf_service ====================
[22:27:54] ================= xe_guc_g2g (2 subtests) ==================
[22:27:54] ============== xe_live_guc_g2g_kunit_default ==============
[22:27:54] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[22:27:54] ============== xe_live_guc_g2g_kunit_allmem ===============
[22:27:54] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[22:27:54] =================== [SKIPPED] xe_guc_g2g ===================
[22:27:54] =================== xe_mocs (2 subtests) ===================
[22:27:54] ================ xe_live_mocs_kernel_kunit ================
[22:27:54] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[22:27:54] ================ xe_live_mocs_reset_kunit =================
[22:27:54] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[22:27:54] ==================== [SKIPPED] xe_mocs =====================
[22:27:54] ================= xe_migrate (2 subtests) ==================
[22:27:54] ================= xe_migrate_sanity_kunit =================
[22:27:54] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[22:27:54] ================== xe_validate_ccs_kunit ==================
[22:27:54] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[22:27:54] =================== [SKIPPED] xe_migrate ===================
[22:27:54] ================== xe_dma_buf (1 subtest) ==================
[22:27:54] ==================== xe_dma_buf_kunit =====================
[22:27:54] ================ [SKIPPED] xe_dma_buf_kunit ================
[22:27:54] =================== [SKIPPED] xe_dma_buf ===================
[22:27:54] ================= xe_bo_shrink (1 subtest) =================
[22:27:54] =================== xe_bo_shrink_kunit ====================
[22:27:54] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[22:27:54] ================== [SKIPPED] xe_bo_shrink ==================
[22:27:54] ==================== xe_bo (2 subtests) ====================
[22:27:54] ================== xe_ccs_migrate_kunit ===================
[22:27:54] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[22:27:54] ==================== xe_bo_evict_kunit ====================
[22:27:54] =============== [SKIPPED] xe_bo_evict_kunit ================
[22:27:54] ===================== [SKIPPED] xe_bo ======================
[22:27:54] ==================== args (11 subtests) ====================
[22:27:54] [PASSED] count_args_test
[22:27:54] [PASSED] call_args_example
[22:27:54] [PASSED] call_args_test
[22:27:54] [PASSED] drop_first_arg_example
[22:27:54] [PASSED] drop_first_arg_test
[22:27:54] [PASSED] first_arg_example
[22:27:54] [PASSED] first_arg_test
[22:27:54] [PASSED] last_arg_example
[22:27:54] [PASSED] last_arg_test
[22:27:54] [PASSED] pick_arg_example
[22:27:54] [PASSED] sep_comma_example
[22:27:54] ====================== [PASSED] args =======================
[22:27:54] =================== xe_pci (3 subtests) ====================
[22:27:54] ==================== check_graphics_ip ====================
[22:27:54] [PASSED] 12.00 Xe_LP
[22:27:54] [PASSED] 12.10 Xe_LP+
[22:27:54] [PASSED] 12.55 Xe_HPG
[22:27:54] [PASSED] 12.60 Xe_HPC
[22:27:54] [PASSED] 12.70 Xe_LPG
[22:27:54] [PASSED] 12.71 Xe_LPG
[22:27:54] [PASSED] 12.74 Xe_LPG+
[22:27:54] [PASSED] 20.01 Xe2_HPG
[22:27:54] [PASSED] 20.02 Xe2_HPG
[22:27:54] [PASSED] 20.04 Xe2_LPG
[22:27:54] [PASSED] 30.00 Xe3_LPG
[22:27:54] [PASSED] 30.01 Xe3_LPG
[22:27:54] [PASSED] 30.03 Xe3_LPG
[22:27:54] [PASSED] 30.04 Xe3_LPG
[22:27:54] [PASSED] 30.05 Xe3_LPG
[22:27:54] [PASSED] 35.11 Xe3p_XPC
[22:27:54] ================ [PASSED] check_graphics_ip ================
[22:27:54] ===================== check_media_ip ======================
[22:27:54] [PASSED] 12.00 Xe_M
[22:27:54] [PASSED] 12.55 Xe_HPM
[22:27:54] [PASSED] 13.00 Xe_LPM+
[22:27:54] [PASSED] 13.01 Xe2_HPM
[22:27:54] [PASSED] 20.00 Xe2_LPM
[22:27:54] [PASSED] 30.00 Xe3_LPM
[22:27:54] [PASSED] 30.02 Xe3_LPM
[22:27:54] [PASSED] 35.00 Xe3p_LPM
[22:27:54] [PASSED] 35.03 Xe3p_HPM
[22:27:54] ================= [PASSED] check_media_ip ==================
[22:27:54] =================== check_platform_desc ===================
[22:27:54] [PASSED] 0x9A60 (TIGERLAKE)
[22:27:54] [PASSED] 0x9A68 (TIGERLAKE)
[22:27:54] [PASSED] 0x9A70 (TIGERLAKE)
[22:27:54] [PASSED] 0x9A40 (TIGERLAKE)
[22:27:54] [PASSED] 0x9A49 (TIGERLAKE)
[22:27:54] [PASSED] 0x9A59 (TIGERLAKE)
[22:27:54] [PASSED] 0x9A78 (TIGERLAKE)
[22:27:54] [PASSED] 0x9AC0 (TIGERLAKE)
[22:27:54] [PASSED] 0x9AC9 (TIGERLAKE)
[22:27:54] [PASSED] 0x9AD9 (TIGERLAKE)
[22:27:54] [PASSED] 0x9AF8 (TIGERLAKE)
[22:27:54] [PASSED] 0x4C80 (ROCKETLAKE)
[22:27:54] [PASSED] 0x4C8A (ROCKETLAKE)
[22:27:54] [PASSED] 0x4C8B (ROCKETLAKE)
[22:27:54] [PASSED] 0x4C8C (ROCKETLAKE)
[22:27:54] [PASSED] 0x4C90 (ROCKETLAKE)
[22:27:54] [PASSED] 0x4C9A (ROCKETLAKE)
[22:27:54] [PASSED] 0x4680 (ALDERLAKE_S)
[22:27:54] [PASSED] 0x4682 (ALDERLAKE_S)
[22:27:54] [PASSED] 0x4688 (ALDERLAKE_S)
[22:27:54] [PASSED] 0x468A (ALDERLAKE_S)
[22:27:54] [PASSED] 0x468B (ALDERLAKE_S)
[22:27:54] [PASSED] 0x4690 (ALDERLAKE_S)
[22:27:54] [PASSED] 0x4692 (ALDERLAKE_S)
[22:27:54] [PASSED] 0x4693 (ALDERLAKE_S)
[22:27:54] [PASSED] 0x46A0 (ALDERLAKE_P)
[22:27:54] [PASSED] 0x46A1 (ALDERLAKE_P)
[22:27:54] [PASSED] 0x46A2 (ALDERLAKE_P)
[22:27:54] [PASSED] 0x46A3 (ALDERLAKE_P)
[22:27:54] [PASSED] 0x46A6 (ALDERLAKE_P)
[22:27:54] [PASSED] 0x46A8 (ALDERLAKE_P)
[22:27:54] [PASSED] 0x46AA (ALDERLAKE_P)
[22:27:54] [PASSED] 0x462A (ALDERLAKE_P)
[22:27:54] [PASSED] 0x4626 (ALDERLAKE_P)
[22:27:54] [PASSED] 0x4628 (ALDERLAKE_P)
[22:27:54] [PASSED] 0x46B0 (ALDERLAKE_P)
[22:27:54] [PASSED] 0x46B1 (ALDERLAKE_P)
[22:27:54] [PASSED] 0x46B2 (ALDERLAKE_P)
[22:27:54] [PASSED] 0x46B3 (ALDERLAKE_P)
[22:27:54] [PASSED] 0x46C0 (ALDERLAKE_P)
[22:27:54] [PASSED] 0x46C1 (ALDERLAKE_P)
[22:27:54] [PASSED] 0x46C2 (ALDERLAKE_P)
[22:27:54] [PASSED] 0x46C3 (ALDERLAKE_P)
[22:27:54] [PASSED] 0x46D0 (ALDERLAKE_N)
[22:27:54] [PASSED] 0x46D1 (ALDERLAKE_N)
[22:27:54] [PASSED] 0x46D2 (ALDERLAKE_N)
[22:27:54] [PASSED] 0x46D3 (ALDERLAKE_N)
[22:27:54] [PASSED] 0x46D4 (ALDERLAKE_N)
[22:27:54] [PASSED] 0xA721 (ALDERLAKE_P)
[22:27:54] [PASSED] 0xA7A1 (ALDERLAKE_P)
[22:27:54] [PASSED] 0xA7A9 (ALDERLAKE_P)
[22:27:54] [PASSED] 0xA7AC (ALDERLAKE_P)
[22:27:54] [PASSED] 0xA7AD (ALDERLAKE_P)
[22:27:54] [PASSED] 0xA720 (ALDERLAKE_P)
[22:27:54] [PASSED] 0xA7A0 (ALDERLAKE_P)
[22:27:54] [PASSED] 0xA7A8 (ALDERLAKE_P)
[22:27:54] [PASSED] 0xA7AA (ALDERLAKE_P)
[22:27:54] [PASSED] 0xA7AB (ALDERLAKE_P)
[22:27:54] [PASSED] 0xA780 (ALDERLAKE_S)
[22:27:54] [PASSED] 0xA781 (ALDERLAKE_S)
[22:27:54] [PASSED] 0xA782 (ALDERLAKE_S)
[22:27:54] [PASSED] 0xA783 (ALDERLAKE_S)
[22:27:54] [PASSED] 0xA788 (ALDERLAKE_S)
[22:27:54] [PASSED] 0xA789 (ALDERLAKE_S)
[22:27:54] [PASSED] 0xA78A (ALDERLAKE_S)
[22:27:54] [PASSED] 0xA78B (ALDERLAKE_S)
[22:27:54] [PASSED] 0x4905 (DG1)
[22:27:54] [PASSED] 0x4906 (DG1)
[22:27:54] [PASSED] 0x4907 (DG1)
[22:27:54] [PASSED] 0x4908 (DG1)
[22:27:54] [PASSED] 0x4909 (DG1)
[22:27:54] [PASSED] 0x56C0 (DG2)
[22:27:54] [PASSED] 0x56C2 (DG2)
[22:27:54] [PASSED] 0x56C1 (DG2)
[22:27:54] [PASSED] 0x7D51 (METEORLAKE)
[22:27:54] [PASSED] 0x7DD1 (METEORLAKE)
[22:27:54] [PASSED] 0x7D41 (METEORLAKE)
[22:27:54] [PASSED] 0x7D67 (METEORLAKE)
[22:27:54] [PASSED] 0xB640 (METEORLAKE)
[22:27:54] [PASSED] 0x56A0 (DG2)
[22:27:54] [PASSED] 0x56A1 (DG2)
[22:27:54] [PASSED] 0x56A2 (DG2)
[22:27:54] [PASSED] 0x56BE (DG2)
[22:27:54] [PASSED] 0x56BF (DG2)
[22:27:54] [PASSED] 0x5690 (DG2)
[22:27:54] [PASSED] 0x5691 (DG2)
[22:27:54] [PASSED] 0x5692 (DG2)
[22:27:54] [PASSED] 0x56A5 (DG2)
[22:27:54] [PASSED] 0x56A6 (DG2)
[22:27:54] [PASSED] 0x56B0 (DG2)
[22:27:54] [PASSED] 0x56B1 (DG2)
[22:27:54] [PASSED] 0x56BA (DG2)
[22:27:54] [PASSED] 0x56BB (DG2)
[22:27:54] [PASSED] 0x56BC (DG2)
[22:27:54] [PASSED] 0x56BD (DG2)
[22:27:54] [PASSED] 0x5693 (DG2)
[22:27:54] [PASSED] 0x5694 (DG2)
[22:27:54] [PASSED] 0x5695 (DG2)
[22:27:54] [PASSED] 0x56A3 (DG2)
[22:27:54] [PASSED] 0x56A4 (DG2)
[22:27:54] [PASSED] 0x56B2 (DG2)
[22:27:54] [PASSED] 0x56B3 (DG2)
[22:27:54] [PASSED] 0x5696 (DG2)
[22:27:54] [PASSED] 0x5697 (DG2)
[22:27:54] [PASSED] 0xB69 (PVC)
[22:27:54] [PASSED] 0xB6E (PVC)
[22:27:54] [PASSED] 0xBD4 (PVC)
[22:27:54] [PASSED] 0xBD5 (PVC)
[22:27:54] [PASSED] 0xBD6 (PVC)
[22:27:54] [PASSED] 0xBD7 (PVC)
[22:27:54] [PASSED] 0xBD8 (PVC)
[22:27:54] [PASSED] 0xBD9 (PVC)
[22:27:54] [PASSED] 0xBDA (PVC)
[22:27:54] [PASSED] 0xBDB (PVC)
[22:27:54] [PASSED] 0xBE0 (PVC)
[22:27:54] [PASSED] 0xBE1 (PVC)
[22:27:54] [PASSED] 0xBE5 (PVC)
[22:27:54] [PASSED] 0x7D40 (METEORLAKE)
[22:27:54] [PASSED] 0x7D45 (METEORLAKE)
[22:27:54] [PASSED] 0x7D55 (METEORLAKE)
[22:27:54] [PASSED] 0x7D60 (METEORLAKE)
[22:27:54] [PASSED] 0x7DD5 (METEORLAKE)
[22:27:54] [PASSED] 0x6420 (LUNARLAKE)
[22:27:54] [PASSED] 0x64A0 (LUNARLAKE)
[22:27:54] [PASSED] 0x64B0 (LUNARLAKE)
[22:27:54] [PASSED] 0xE202 (BATTLEMAGE)
[22:27:54] [PASSED] 0xE209 (BATTLEMAGE)
[22:27:54] [PASSED] 0xE20B (BATTLEMAGE)
[22:27:54] [PASSED] 0xE20C (BATTLEMAGE)
[22:27:54] [PASSED] 0xE20D (BATTLEMAGE)
[22:27:54] [PASSED] 0xE210 (BATTLEMAGE)
[22:27:54] [PASSED] 0xE211 (BATTLEMAGE)
[22:27:54] [PASSED] 0xE212 (BATTLEMAGE)
[22:27:54] [PASSED] 0xE216 (BATTLEMAGE)
[22:27:54] [PASSED] 0xE220 (BATTLEMAGE)
[22:27:54] [PASSED] 0xE221 (BATTLEMAGE)
[22:27:54] [PASSED] 0xE222 (BATTLEMAGE)
[22:27:54] [PASSED] 0xE223 (BATTLEMAGE)
[22:27:54] [PASSED] 0xB080 (PANTHERLAKE)
[22:27:54] [PASSED] 0xB081 (PANTHERLAKE)
[22:27:54] [PASSED] 0xB082 (PANTHERLAKE)
[22:27:54] [PASSED] 0xB083 (PANTHERLAKE)
[22:27:54] [PASSED] 0xB084 (PANTHERLAKE)
[22:27:54] [PASSED] 0xB085 (PANTHERLAKE)
[22:27:54] [PASSED] 0xB086 (PANTHERLAKE)
[22:27:54] [PASSED] 0xB087 (PANTHERLAKE)
[22:27:54] [PASSED] 0xB08F (PANTHERLAKE)
[22:27:54] [PASSED] 0xB090 (PANTHERLAKE)
[22:27:54] [PASSED] 0xB0A0 (PANTHERLAKE)
[22:27:54] [PASSED] 0xB0B0 (PANTHERLAKE)
[22:27:54] [PASSED] 0xFD80 (PANTHERLAKE)
[22:27:54] [PASSED] 0xFD81 (PANTHERLAKE)
[22:27:54] [PASSED] 0xD740 (NOVALAKE_S)
[22:27:54] [PASSED] 0xD741 (NOVALAKE_S)
[22:27:54] [PASSED] 0xD742 (NOVALAKE_S)
[22:27:54] [PASSED] 0xD743 (NOVALAKE_S)
[22:27:54] [PASSED] 0xD744 (NOVALAKE_S)
[22:27:54] [PASSED] 0xD745 (NOVALAKE_S)
[22:27:54] [PASSED] 0x674C (CRESCENTISLAND)
[22:27:54] =============== [PASSED] check_platform_desc ===============
[22:27:54] ===================== [PASSED] xe_pci ======================
[22:27:54] =================== xe_rtp (2 subtests) ====================
[22:27:54] =============== xe_rtp_process_to_sr_tests ================
[22:27:54] [PASSED] coalesce-same-reg
[22:27:54] [PASSED] no-match-no-add
[22:27:54] [PASSED] match-or
[22:27:54] [PASSED] match-or-xfail
[22:27:54] [PASSED] no-match-no-add-multiple-rules
[22:27:54] [PASSED] two-regs-two-entries
[22:27:54] [PASSED] clr-one-set-other
[22:27:54] [PASSED] set-field
[22:27:54] [PASSED] conflict-duplicate
[22:27:54] [PASSED] conflict-not-disjoint
[22:27:54] [PASSED] conflict-reg-type
[22:27:54] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[22:27:54] ================== xe_rtp_process_tests ===================
[22:27:54] [PASSED] active1
[22:27:54] [PASSED] active2
[22:27:54] [PASSED] active-inactive
[22:27:54] [PASSED] inactive-active
[22:27:54] [PASSED] inactive-1st_or_active-inactive
[22:27:54] [PASSED] inactive-2nd_or_active-inactive
[22:27:54] [PASSED] inactive-last_or_active-inactive
stty: 'standard input': Inappropriate ioctl for device
[22:27:54] [PASSED] inactive-no_or_active-inactive
[22:27:54] ============== [PASSED] xe_rtp_process_tests ===============
[22:27:54] ===================== [PASSED] xe_rtp ======================
[22:27:54] ==================== xe_wa (1 subtest) =====================
[22:27:54] ======================== xe_wa_gt =========================
[22:27:54] [PASSED] TIGERLAKE B0
[22:27:54] [PASSED] DG1 A0
[22:27:54] [PASSED] DG1 B0
[22:27:54] [PASSED] ALDERLAKE_S A0
[22:27:54] [PASSED] ALDERLAKE_S B0
[22:27:54] [PASSED] ALDERLAKE_S C0
[22:27:54] [PASSED] ALDERLAKE_S D0
[22:27:54] [PASSED] ALDERLAKE_P A0
[22:27:54] [PASSED] ALDERLAKE_P B0
[22:27:54] [PASSED] ALDERLAKE_P C0
[22:27:54] [PASSED] ALDERLAKE_S RPLS D0
[22:27:54] [PASSED] ALDERLAKE_P RPLU E0
[22:27:54] [PASSED] DG2 G10 C0
[22:27:54] [PASSED] DG2 G11 B1
[22:27:54] [PASSED] DG2 G12 A1
[22:27:54] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[22:27:54] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[22:27:54] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[22:27:54] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[22:27:54] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[22:27:54] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[22:27:54] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[22:27:54] ==================== [PASSED] xe_wa_gt =====================
[22:27:54] ====================== [PASSED] xe_wa ======================
[22:27:54] ============================================================
[22:27:54] Testing complete. Ran 318 tests: passed: 300, skipped: 18
[22:27:55] Elapsed time: 37.663s total, 4.242s configuring, 33.054s building, 0.336s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[22:27:55] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:27:56] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[22:28:23] Starting KUnit Kernel (1/1)...
[22:28:23] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:28:23] ============ drm_test_pick_cmdline (2 subtests) ============
[22:28:23] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[22:28:23] =============== drm_test_pick_cmdline_named ===============
[22:28:23] [PASSED] NTSC
[22:28:23] [PASSED] NTSC-J
[22:28:23] [PASSED] PAL
[22:28:23] [PASSED] PAL-M
[22:28:23] =========== [PASSED] drm_test_pick_cmdline_named ===========
[22:28:23] ============== [PASSED] drm_test_pick_cmdline ==============
[22:28:23] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[22:28:23] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[22:28:23] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[22:28:23] =========== drm_validate_clone_mode (2 subtests) ===========
[22:28:23] ============== drm_test_check_in_clone_mode ===============
[22:28:23] [PASSED] in_clone_mode
[22:28:23] [PASSED] not_in_clone_mode
[22:28:23] ========== [PASSED] drm_test_check_in_clone_mode ===========
[22:28:23] =============== drm_test_check_valid_clones ===============
[22:28:23] [PASSED] not_in_clone_mode
[22:28:23] [PASSED] valid_clone
[22:28:23] [PASSED] invalid_clone
[22:28:23] =========== [PASSED] drm_test_check_valid_clones ===========
[22:28:23] ============= [PASSED] drm_validate_clone_mode =============
[22:28:23] ============= drm_validate_modeset (1 subtest) =============
[22:28:23] [PASSED] drm_test_check_connector_changed_modeset
[22:28:23] ============== [PASSED] drm_validate_modeset ===============
[22:28:23] ====== drm_test_bridge_get_current_state (2 subtests) ======
[22:28:23] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[22:28:23] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[22:28:23] ======== [PASSED] drm_test_bridge_get_current_state ========
[22:28:23] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[22:28:23] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[22:28:23] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[22:28:23] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[22:28:23] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[22:28:23] ============== drm_bridge_alloc (2 subtests) ===============
[22:28:23] [PASSED] drm_test_drm_bridge_alloc_basic
[22:28:23] [PASSED] drm_test_drm_bridge_alloc_get_put
[22:28:23] ================ [PASSED] drm_bridge_alloc =================
[22:28:23] ================== drm_buddy (8 subtests) ==================
[22:28:23] [PASSED] drm_test_buddy_alloc_limit
[22:28:23] [PASSED] drm_test_buddy_alloc_optimistic
[22:28:23] [PASSED] drm_test_buddy_alloc_pessimistic
[22:28:23] [PASSED] drm_test_buddy_alloc_pathological
[22:28:23] [PASSED] drm_test_buddy_alloc_contiguous
[22:28:23] [PASSED] drm_test_buddy_alloc_clear
[22:28:24] [PASSED] drm_test_buddy_alloc_range_bias
[22:28:24] [PASSED] drm_test_buddy_fragmentation_performance
[22:28:24] ==================== [PASSED] drm_buddy ====================
[22:28:24] ============= drm_cmdline_parser (40 subtests) =============
[22:28:24] [PASSED] drm_test_cmdline_force_d_only
[22:28:24] [PASSED] drm_test_cmdline_force_D_only_dvi
[22:28:24] [PASSED] drm_test_cmdline_force_D_only_hdmi
[22:28:24] [PASSED] drm_test_cmdline_force_D_only_not_digital
[22:28:24] [PASSED] drm_test_cmdline_force_e_only
[22:28:24] [PASSED] drm_test_cmdline_res
[22:28:24] [PASSED] drm_test_cmdline_res_vesa
[22:28:24] [PASSED] drm_test_cmdline_res_vesa_rblank
[22:28:24] [PASSED] drm_test_cmdline_res_rblank
[22:28:24] [PASSED] drm_test_cmdline_res_bpp
[22:28:24] [PASSED] drm_test_cmdline_res_refresh
[22:28:24] [PASSED] drm_test_cmdline_res_bpp_refresh
[22:28:24] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[22:28:24] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[22:28:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[22:28:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[22:28:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[22:28:24] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[22:28:24] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[22:28:24] [PASSED] drm_test_cmdline_res_margins_force_on
[22:28:24] [PASSED] drm_test_cmdline_res_vesa_margins
[22:28:24] [PASSED] drm_test_cmdline_name
[22:28:24] [PASSED] drm_test_cmdline_name_bpp
[22:28:24] [PASSED] drm_test_cmdline_name_option
[22:28:24] [PASSED] drm_test_cmdline_name_bpp_option
[22:28:24] [PASSED] drm_test_cmdline_rotate_0
[22:28:24] [PASSED] drm_test_cmdline_rotate_90
[22:28:24] [PASSED] drm_test_cmdline_rotate_180
[22:28:24] [PASSED] drm_test_cmdline_rotate_270
[22:28:24] [PASSED] drm_test_cmdline_hmirror
[22:28:24] [PASSED] drm_test_cmdline_vmirror
[22:28:24] [PASSED] drm_test_cmdline_margin_options
[22:28:24] [PASSED] drm_test_cmdline_multiple_options
[22:28:24] [PASSED] drm_test_cmdline_bpp_extra_and_option
[22:28:24] [PASSED] drm_test_cmdline_extra_and_option
[22:28:24] [PASSED] drm_test_cmdline_freestanding_options
[22:28:24] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[22:28:24] [PASSED] drm_test_cmdline_panel_orientation
[22:28:24] ================ drm_test_cmdline_invalid =================
[22:28:24] [PASSED] margin_only
[22:28:24] [PASSED] interlace_only
[22:28:24] [PASSED] res_missing_x
[22:28:24] [PASSED] res_missing_y
[22:28:24] [PASSED] res_bad_y
[22:28:24] [PASSED] res_missing_y_bpp
[22:28:24] [PASSED] res_bad_bpp
[22:28:24] [PASSED] res_bad_refresh
[22:28:24] [PASSED] res_bpp_refresh_force_on_off
[22:28:24] [PASSED] res_invalid_mode
[22:28:24] [PASSED] res_bpp_wrong_place_mode
[22:28:24] [PASSED] name_bpp_refresh
[22:28:24] [PASSED] name_refresh
[22:28:24] [PASSED] name_refresh_wrong_mode
[22:28:24] [PASSED] name_refresh_invalid_mode
[22:28:24] [PASSED] rotate_multiple
[22:28:24] [PASSED] rotate_invalid_val
[22:28:24] [PASSED] rotate_truncated
[22:28:24] [PASSED] invalid_option
[22:28:24] [PASSED] invalid_tv_option
[22:28:24] [PASSED] truncated_tv_option
[22:28:24] ============ [PASSED] drm_test_cmdline_invalid =============
[22:28:24] =============== drm_test_cmdline_tv_options ===============
[22:28:24] [PASSED] NTSC
[22:28:24] [PASSED] NTSC_443
[22:28:24] [PASSED] NTSC_J
[22:28:24] [PASSED] PAL
[22:28:24] [PASSED] PAL_M
[22:28:24] [PASSED] PAL_N
[22:28:24] [PASSED] SECAM
[22:28:24] [PASSED] MONO_525
[22:28:24] [PASSED] MONO_625
[22:28:24] =========== [PASSED] drm_test_cmdline_tv_options ===========
[22:28:24] =============== [PASSED] drm_cmdline_parser ================
[22:28:24] ========== drmm_connector_hdmi_init (20 subtests) ==========
[22:28:24] [PASSED] drm_test_connector_hdmi_init_valid
[22:28:24] [PASSED] drm_test_connector_hdmi_init_bpc_8
[22:28:24] [PASSED] drm_test_connector_hdmi_init_bpc_10
[22:28:24] [PASSED] drm_test_connector_hdmi_init_bpc_12
[22:28:24] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[22:28:24] [PASSED] drm_test_connector_hdmi_init_bpc_null
[22:28:24] [PASSED] drm_test_connector_hdmi_init_formats_empty
[22:28:24] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[22:28:24] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[22:28:24] [PASSED] supported_formats=0x9 yuv420_allowed=1
[22:28:24] [PASSED] supported_formats=0x9 yuv420_allowed=0
[22:28:24] [PASSED] supported_formats=0x3 yuv420_allowed=1
[22:28:24] [PASSED] supported_formats=0x3 yuv420_allowed=0
[22:28:24] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[22:28:24] [PASSED] drm_test_connector_hdmi_init_null_ddc
[22:28:24] [PASSED] drm_test_connector_hdmi_init_null_product
[22:28:24] [PASSED] drm_test_connector_hdmi_init_null_vendor
[22:28:24] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[22:28:24] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[22:28:24] [PASSED] drm_test_connector_hdmi_init_product_valid
[22:28:24] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[22:28:24] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[22:28:24] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[22:28:24] ========= drm_test_connector_hdmi_init_type_valid =========
[22:28:24] [PASSED] HDMI-A
[22:28:24] [PASSED] HDMI-B
[22:28:24] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[22:28:24] ======== drm_test_connector_hdmi_init_type_invalid ========
[22:28:24] [PASSED] Unknown
[22:28:24] [PASSED] VGA
[22:28:24] [PASSED] DVI-I
[22:28:24] [PASSED] DVI-D
[22:28:24] [PASSED] DVI-A
[22:28:24] [PASSED] Composite
[22:28:24] [PASSED] SVIDEO
[22:28:24] [PASSED] LVDS
[22:28:24] [PASSED] Component
[22:28:24] [PASSED] DIN
[22:28:24] [PASSED] DP
[22:28:24] [PASSED] TV
[22:28:24] [PASSED] eDP
[22:28:24] [PASSED] Virtual
[22:28:24] [PASSED] DSI
[22:28:24] [PASSED] DPI
[22:28:24] [PASSED] Writeback
[22:28:24] [PASSED] SPI
[22:28:24] [PASSED] USB
[22:28:24] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[22:28:24] ============ [PASSED] drmm_connector_hdmi_init =============
[22:28:24] ============= drmm_connector_init (3 subtests) =============
[22:28:24] [PASSED] drm_test_drmm_connector_init
[22:28:24] [PASSED] drm_test_drmm_connector_init_null_ddc
[22:28:24] ========= drm_test_drmm_connector_init_type_valid =========
[22:28:24] [PASSED] Unknown
[22:28:24] [PASSED] VGA
[22:28:24] [PASSED] DVI-I
[22:28:24] [PASSED] DVI-D
[22:28:24] [PASSED] DVI-A
[22:28:24] [PASSED] Composite
[22:28:24] [PASSED] SVIDEO
[22:28:24] [PASSED] LVDS
[22:28:24] [PASSED] Component
[22:28:24] [PASSED] DIN
[22:28:24] [PASSED] DP
[22:28:24] [PASSED] HDMI-A
[22:28:24] [PASSED] HDMI-B
[22:28:24] [PASSED] TV
[22:28:24] [PASSED] eDP
[22:28:24] [PASSED] Virtual
[22:28:24] [PASSED] DSI
[22:28:24] [PASSED] DPI
[22:28:24] [PASSED] Writeback
[22:28:24] [PASSED] SPI
[22:28:24] [PASSED] USB
[22:28:24] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[22:28:24] =============== [PASSED] drmm_connector_init ===============
[22:28:24] ========= drm_connector_dynamic_init (6 subtests) ==========
[22:28:24] [PASSED] drm_test_drm_connector_dynamic_init
[22:28:24] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[22:28:24] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[22:28:24] [PASSED] drm_test_drm_connector_dynamic_init_properties
[22:28:24] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[22:28:24] [PASSED] Unknown
[22:28:24] [PASSED] VGA
[22:28:24] [PASSED] DVI-I
[22:28:24] [PASSED] DVI-D
[22:28:24] [PASSED] DVI-A
[22:28:24] [PASSED] Composite
[22:28:24] [PASSED] SVIDEO
[22:28:24] [PASSED] LVDS
[22:28:24] [PASSED] Component
[22:28:24] [PASSED] DIN
[22:28:24] [PASSED] DP
[22:28:24] [PASSED] HDMI-A
[22:28:24] [PASSED] HDMI-B
[22:28:24] [PASSED] TV
[22:28:24] [PASSED] eDP
[22:28:24] [PASSED] Virtual
[22:28:24] [PASSED] DSI
[22:28:24] [PASSED] DPI
[22:28:24] [PASSED] Writeback
[22:28:24] [PASSED] SPI
[22:28:24] [PASSED] USB
[22:28:24] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[22:28:24] ======== drm_test_drm_connector_dynamic_init_name =========
[22:28:24] [PASSED] Unknown
[22:28:24] [PASSED] VGA
[22:28:24] [PASSED] DVI-I
[22:28:24] [PASSED] DVI-D
[22:28:24] [PASSED] DVI-A
[22:28:24] [PASSED] Composite
[22:28:24] [PASSED] SVIDEO
[22:28:24] [PASSED] LVDS
[22:28:24] [PASSED] Component
[22:28:24] [PASSED] DIN
[22:28:24] [PASSED] DP
[22:28:24] [PASSED] HDMI-A
[22:28:24] [PASSED] HDMI-B
[22:28:24] [PASSED] TV
[22:28:24] [PASSED] eDP
[22:28:24] [PASSED] Virtual
[22:28:24] [PASSED] DSI
[22:28:24] [PASSED] DPI
[22:28:24] [PASSED] Writeback
[22:28:24] [PASSED] SPI
[22:28:24] [PASSED] USB
[22:28:24] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[22:28:24] =========== [PASSED] drm_connector_dynamic_init ============
[22:28:24] ==== drm_connector_dynamic_register_early (4 subtests) =====
[22:28:24] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[22:28:24] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[22:28:24] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[22:28:24] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[22:28:24] ====== [PASSED] drm_connector_dynamic_register_early =======
[22:28:24] ======= drm_connector_dynamic_register (7 subtests) ========
[22:28:24] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[22:28:24] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[22:28:24] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[22:28:24] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[22:28:24] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[22:28:24] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[22:28:24] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[22:28:24] ========= [PASSED] drm_connector_dynamic_register ==========
[22:28:24] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[22:28:24] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[22:28:24] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[22:28:24] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[22:28:24] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[22:28:24] ========== drm_test_get_tv_mode_from_name_valid ===========
[22:28:24] [PASSED] NTSC
[22:28:24] [PASSED] NTSC-443
[22:28:24] [PASSED] NTSC-J
[22:28:24] [PASSED] PAL
[22:28:24] [PASSED] PAL-M
[22:28:24] [PASSED] PAL-N
[22:28:24] [PASSED] SECAM
[22:28:24] [PASSED] Mono
[22:28:24] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[22:28:24] [PASSED] drm_test_get_tv_mode_from_name_truncated
[22:28:24] ============ [PASSED] drm_get_tv_mode_from_name ============
[22:28:24] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[22:28:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[22:28:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[22:28:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[22:28:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[22:28:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[22:28:24] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[22:28:24] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[22:28:24] [PASSED] VIC 96
[22:28:24] [PASSED] VIC 97
[22:28:24] [PASSED] VIC 101
[22:28:24] [PASSED] VIC 102
[22:28:24] [PASSED] VIC 106
[22:28:24] [PASSED] VIC 107
[22:28:24] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[22:28:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[22:28:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[22:28:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[22:28:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[22:28:24] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[22:28:24] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[22:28:24] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[22:28:24] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[22:28:24] [PASSED] Automatic
[22:28:24] [PASSED] Full
[22:28:24] [PASSED] Limited 16:235
[22:28:24] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[22:28:24] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[22:28:24] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[22:28:24] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[22:28:24] === drm_test_drm_hdmi_connector_get_output_format_name ====
[22:28:24] [PASSED] RGB
[22:28:24] [PASSED] YUV 4:2:0
[22:28:24] [PASSED] YUV 4:2:2
[22:28:24] [PASSED] YUV 4:4:4
[22:28:24] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[22:28:24] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[22:28:24] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[22:28:24] ============= drm_damage_helper (21 subtests) ==============
[22:28:24] [PASSED] drm_test_damage_iter_no_damage
[22:28:24] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[22:28:24] [PASSED] drm_test_damage_iter_no_damage_src_moved
[22:28:24] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[22:28:24] [PASSED] drm_test_damage_iter_no_damage_not_visible
[22:28:24] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[22:28:24] [PASSED] drm_test_damage_iter_no_damage_no_fb
[22:28:24] [PASSED] drm_test_damage_iter_simple_damage
[22:28:24] [PASSED] drm_test_damage_iter_single_damage
[22:28:24] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[22:28:24] [PASSED] drm_test_damage_iter_single_damage_outside_src
[22:28:24] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[22:28:24] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[22:28:24] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[22:28:24] [PASSED] drm_test_damage_iter_single_damage_src_moved
[22:28:24] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[22:28:24] [PASSED] drm_test_damage_iter_damage
[22:28:24] [PASSED] drm_test_damage_iter_damage_one_intersect
[22:28:24] [PASSED] drm_test_damage_iter_damage_one_outside
[22:28:24] [PASSED] drm_test_damage_iter_damage_src_moved
[22:28:24] [PASSED] drm_test_damage_iter_damage_not_visible
[22:28:24] ================ [PASSED] drm_damage_helper ================
[22:28:24] ============== drm_dp_mst_helper (3 subtests) ==============
[22:28:24] ============== drm_test_dp_mst_calc_pbn_mode ==============
[22:28:24] [PASSED] Clock 154000 BPP 30 DSC disabled
[22:28:24] [PASSED] Clock 234000 BPP 30 DSC disabled
[22:28:24] [PASSED] Clock 297000 BPP 24 DSC disabled
[22:28:24] [PASSED] Clock 332880 BPP 24 DSC enabled
[22:28:24] [PASSED] Clock 324540 BPP 24 DSC enabled
[22:28:24] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[22:28:24] ============== drm_test_dp_mst_calc_pbn_div ===============
[22:28:24] [PASSED] Link rate 2000000 lane count 4
[22:28:24] [PASSED] Link rate 2000000 lane count 2
[22:28:24] [PASSED] Link rate 2000000 lane count 1
[22:28:24] [PASSED] Link rate 1350000 lane count 4
[22:28:24] [PASSED] Link rate 1350000 lane count 2
[22:28:24] [PASSED] Link rate 1350000 lane count 1
[22:28:24] [PASSED] Link rate 1000000 lane count 4
[22:28:24] [PASSED] Link rate 1000000 lane count 2
[22:28:24] [PASSED] Link rate 1000000 lane count 1
[22:28:24] [PASSED] Link rate 810000 lane count 4
[22:28:24] [PASSED] Link rate 810000 lane count 2
[22:28:24] [PASSED] Link rate 810000 lane count 1
[22:28:24] [PASSED] Link rate 540000 lane count 4
[22:28:24] [PASSED] Link rate 540000 lane count 2
[22:28:24] [PASSED] Link rate 540000 lane count 1
[22:28:24] [PASSED] Link rate 270000 lane count 4
[22:28:24] [PASSED] Link rate 270000 lane count 2
[22:28:24] [PASSED] Link rate 270000 lane count 1
[22:28:24] [PASSED] Link rate 162000 lane count 4
[22:28:24] [PASSED] Link rate 162000 lane count 2
[22:28:24] [PASSED] Link rate 162000 lane count 1
[22:28:24] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[22:28:24] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[22:28:24] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[22:28:24] [PASSED] DP_POWER_UP_PHY with port number
[22:28:24] [PASSED] DP_POWER_DOWN_PHY with port number
[22:28:24] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[22:28:24] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[22:28:24] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[22:28:24] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[22:28:24] [PASSED] DP_QUERY_PAYLOAD with port number
[22:28:24] [PASSED] DP_QUERY_PAYLOAD with VCPI
[22:28:24] [PASSED] DP_REMOTE_DPCD_READ with port number
[22:28:24] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[22:28:24] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[22:28:24] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[22:28:24] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[22:28:24] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[22:28:24] [PASSED] DP_REMOTE_I2C_READ with port number
[22:28:24] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[22:28:24] [PASSED] DP_REMOTE_I2C_READ with transactions array
[22:28:24] [PASSED] DP_REMOTE_I2C_WRITE with port number
[22:28:24] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[22:28:24] [PASSED] DP_REMOTE_I2C_WRITE with data array
[22:28:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[22:28:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[22:28:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[22:28:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[22:28:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[22:28:24] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[22:28:24] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[22:28:24] ================ [PASSED] drm_dp_mst_helper ================
[22:28:24] ================== drm_exec (7 subtests) ===================
[22:28:24] [PASSED] sanitycheck
[22:28:24] [PASSED] test_lock
[22:28:24] [PASSED] test_lock_unlock
[22:28:24] [PASSED] test_duplicates
[22:28:24] [PASSED] test_prepare
[22:28:24] [PASSED] test_prepare_array
[22:28:24] [PASSED] test_multiple_loops
[22:28:24] ==================== [PASSED] drm_exec =====================
[22:28:24] =========== drm_format_helper_test (17 subtests) ===========
[22:28:24] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[22:28:24] [PASSED] single_pixel_source_buffer
[22:28:24] [PASSED] single_pixel_clip_rectangle
[22:28:24] [PASSED] well_known_colors
[22:28:24] [PASSED] destination_pitch
[22:28:24] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[22:28:24] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[22:28:24] [PASSED] single_pixel_source_buffer
[22:28:24] [PASSED] single_pixel_clip_rectangle
[22:28:24] [PASSED] well_known_colors
[22:28:24] [PASSED] destination_pitch
[22:28:24] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[22:28:24] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[22:28:24] [PASSED] single_pixel_source_buffer
[22:28:24] [PASSED] single_pixel_clip_rectangle
[22:28:24] [PASSED] well_known_colors
[22:28:24] [PASSED] destination_pitch
[22:28:24] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[22:28:24] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[22:28:24] [PASSED] single_pixel_source_buffer
[22:28:24] [PASSED] single_pixel_clip_rectangle
[22:28:24] [PASSED] well_known_colors
[22:28:24] [PASSED] destination_pitch
[22:28:24] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[22:28:24] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[22:28:24] [PASSED] single_pixel_source_buffer
[22:28:24] [PASSED] single_pixel_clip_rectangle
[22:28:24] [PASSED] well_known_colors
[22:28:24] [PASSED] destination_pitch
[22:28:24] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[22:28:24] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[22:28:24] [PASSED] single_pixel_source_buffer
[22:28:24] [PASSED] single_pixel_clip_rectangle
[22:28:24] [PASSED] well_known_colors
[22:28:24] [PASSED] destination_pitch
[22:28:24] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[22:28:24] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[22:28:24] [PASSED] single_pixel_source_buffer
[22:28:24] [PASSED] single_pixel_clip_rectangle
[22:28:24] [PASSED] well_known_colors
[22:28:24] [PASSED] destination_pitch
[22:28:24] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[22:28:24] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[22:28:24] [PASSED] single_pixel_source_buffer
[22:28:24] [PASSED] single_pixel_clip_rectangle
[22:28:24] [PASSED] well_known_colors
[22:28:24] [PASSED] destination_pitch
[22:28:24] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[22:28:24] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[22:28:24] [PASSED] single_pixel_source_buffer
[22:28:24] [PASSED] single_pixel_clip_rectangle
[22:28:24] [PASSED] well_known_colors
[22:28:24] [PASSED] destination_pitch
[22:28:24] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[22:28:24] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[22:28:24] [PASSED] single_pixel_source_buffer
[22:28:24] [PASSED] single_pixel_clip_rectangle
[22:28:24] [PASSED] well_known_colors
[22:28:24] [PASSED] destination_pitch
[22:28:24] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[22:28:24] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[22:28:24] [PASSED] single_pixel_source_buffer
[22:28:24] [PASSED] single_pixel_clip_rectangle
[22:28:24] [PASSED] well_known_colors
[22:28:24] [PASSED] destination_pitch
[22:28:24] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[22:28:24] ============== drm_test_fb_xrgb8888_to_mono ===============
[22:28:24] [PASSED] single_pixel_source_buffer
[22:28:24] [PASSED] single_pixel_clip_rectangle
[22:28:24] [PASSED] well_known_colors
[22:28:24] [PASSED] destination_pitch
[22:28:24] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[22:28:24] ==================== drm_test_fb_swab =====================
[22:28:24] [PASSED] single_pixel_source_buffer
[22:28:24] [PASSED] single_pixel_clip_rectangle
[22:28:24] [PASSED] well_known_colors
[22:28:24] [PASSED] destination_pitch
[22:28:24] ================ [PASSED] drm_test_fb_swab =================
[22:28:24] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[22:28:24] [PASSED] single_pixel_source_buffer
[22:28:24] [PASSED] single_pixel_clip_rectangle
[22:28:24] [PASSED] well_known_colors
[22:28:24] [PASSED] destination_pitch
[22:28:24] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[22:28:24] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[22:28:24] [PASSED] single_pixel_source_buffer
[22:28:24] [PASSED] single_pixel_clip_rectangle
[22:28:24] [PASSED] well_known_colors
[22:28:24] [PASSED] destination_pitch
[22:28:24] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[22:28:24] ================= drm_test_fb_clip_offset =================
[22:28:24] [PASSED] pass through
[22:28:24] [PASSED] horizontal offset
[22:28:24] [PASSED] vertical offset
[22:28:24] [PASSED] horizontal and vertical offset
[22:28:24] [PASSED] horizontal offset (custom pitch)
[22:28:24] [PASSED] vertical offset (custom pitch)
[22:28:24] [PASSED] horizontal and vertical offset (custom pitch)
[22:28:24] ============= [PASSED] drm_test_fb_clip_offset =============
[22:28:24] =================== drm_test_fb_memcpy ====================
[22:28:24] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[22:28:24] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[22:28:24] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[22:28:24] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[22:28:24] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[22:28:24] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[22:28:24] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[22:28:24] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[22:28:24] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[22:28:24] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[22:28:24] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[22:28:24] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[22:28:24] =============== [PASSED] drm_test_fb_memcpy ================
[22:28:24] ============= [PASSED] drm_format_helper_test ==============
[22:28:24] ================= drm_format (18 subtests) =================
[22:28:24] [PASSED] drm_test_format_block_width_invalid
[22:28:24] [PASSED] drm_test_format_block_width_one_plane
[22:28:24] [PASSED] drm_test_format_block_width_two_plane
[22:28:24] [PASSED] drm_test_format_block_width_three_plane
[22:28:24] [PASSED] drm_test_format_block_width_tiled
[22:28:24] [PASSED] drm_test_format_block_height_invalid
[22:28:24] [PASSED] drm_test_format_block_height_one_plane
[22:28:24] [PASSED] drm_test_format_block_height_two_plane
[22:28:24] [PASSED] drm_test_format_block_height_three_plane
[22:28:24] [PASSED] drm_test_format_block_height_tiled
[22:28:24] [PASSED] drm_test_format_min_pitch_invalid
[22:28:24] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[22:28:24] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[22:28:24] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[22:28:24] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[22:28:24] [PASSED] drm_test_format_min_pitch_two_plane
[22:28:24] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[22:28:24] [PASSED] drm_test_format_min_pitch_tiled
[22:28:24] =================== [PASSED] drm_format ====================
[22:28:24] ============== drm_framebuffer (10 subtests) ===============
[22:28:24] ========== drm_test_framebuffer_check_src_coords ==========
[22:28:24] [PASSED] Success: source fits into fb
[22:28:24] [PASSED] Fail: overflowing fb with x-axis coordinate
[22:28:24] [PASSED] Fail: overflowing fb with y-axis coordinate
[22:28:24] [PASSED] Fail: overflowing fb with source width
[22:28:24] [PASSED] Fail: overflowing fb with source height
[22:28:24] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[22:28:24] [PASSED] drm_test_framebuffer_cleanup
[22:28:24] =============== drm_test_framebuffer_create ===============
[22:28:24] [PASSED] ABGR8888 normal sizes
[22:28:24] [PASSED] ABGR8888 max sizes
[22:28:24] [PASSED] ABGR8888 pitch greater than min required
[22:28:24] [PASSED] ABGR8888 pitch less than min required
[22:28:24] [PASSED] ABGR8888 Invalid width
[22:28:24] [PASSED] ABGR8888 Invalid buffer handle
[22:28:24] [PASSED] No pixel format
[22:28:24] [PASSED] ABGR8888 Width 0
[22:28:24] [PASSED] ABGR8888 Height 0
[22:28:24] [PASSED] ABGR8888 Out of bound height * pitch combination
[22:28:24] [PASSED] ABGR8888 Large buffer offset
[22:28:24] [PASSED] ABGR8888 Buffer offset for inexistent plane
[22:28:24] [PASSED] ABGR8888 Invalid flag
[22:28:24] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[22:28:24] [PASSED] ABGR8888 Valid buffer modifier
[22:28:24] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[22:28:24] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[22:28:24] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[22:28:24] [PASSED] NV12 Normal sizes
[22:28:24] [PASSED] NV12 Max sizes
[22:28:24] [PASSED] NV12 Invalid pitch
[22:28:24] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[22:28:24] [PASSED] NV12 different modifier per-plane
[22:28:24] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[22:28:24] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[22:28:24] [PASSED] NV12 Modifier for inexistent plane
[22:28:24] [PASSED] NV12 Handle for inexistent plane
[22:28:24] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[22:28:24] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[22:28:24] [PASSED] YVU420 Normal sizes
[22:28:24] [PASSED] YVU420 Max sizes
[22:28:24] [PASSED] YVU420 Invalid pitch
[22:28:24] [PASSED] YVU420 Different pitches
[22:28:24] [PASSED] YVU420 Different buffer offsets/pitches
[22:28:24] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[22:28:24] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[22:28:24] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[22:28:24] [PASSED] YVU420 Valid modifier
[22:28:24] [PASSED] YVU420 Different modifiers per plane
[22:28:24] [PASSED] YVU420 Modifier for inexistent plane
[22:28:24] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[22:28:24] [PASSED] X0L2 Normal sizes
[22:28:24] [PASSED] X0L2 Max sizes
[22:28:24] [PASSED] X0L2 Invalid pitch
[22:28:24] [PASSED] X0L2 Pitch greater than minimum required
[22:28:24] [PASSED] X0L2 Handle for inexistent plane
[22:28:24] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[22:28:24] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[22:28:24] [PASSED] X0L2 Valid modifier
[22:28:24] [PASSED] X0L2 Modifier for inexistent plane
[22:28:24] =========== [PASSED] drm_test_framebuffer_create ===========
[22:28:24] [PASSED] drm_test_framebuffer_free
[22:28:24] [PASSED] drm_test_framebuffer_init
[22:28:24] [PASSED] drm_test_framebuffer_init_bad_format
[22:28:24] [PASSED] drm_test_framebuffer_init_dev_mismatch
[22:28:24] [PASSED] drm_test_framebuffer_lookup
[22:28:24] [PASSED] drm_test_framebuffer_lookup_inexistent
[22:28:24] [PASSED] drm_test_framebuffer_modifiers_not_supported
[22:28:24] ================= [PASSED] drm_framebuffer =================
[22:28:24] ================ drm_gem_shmem (8 subtests) ================
[22:28:24] [PASSED] drm_gem_shmem_test_obj_create
[22:28:24] [PASSED] drm_gem_shmem_test_obj_create_private
[22:28:24] [PASSED] drm_gem_shmem_test_pin_pages
[22:28:24] [PASSED] drm_gem_shmem_test_vmap
[22:28:24] [PASSED] drm_gem_shmem_test_get_pages_sgt
[22:28:24] [PASSED] drm_gem_shmem_test_get_sg_table
[22:28:24] [PASSED] drm_gem_shmem_test_madvise
[22:28:24] [PASSED] drm_gem_shmem_test_purge
[22:28:24] ================== [PASSED] drm_gem_shmem ==================
[22:28:24] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[22:28:24] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[22:28:24] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[22:28:24] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[22:28:24] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[22:28:24] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[22:28:24] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[22:28:24] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[22:28:24] [PASSED] Automatic
[22:28:24] [PASSED] Full
[22:28:24] [PASSED] Limited 16:235
[22:28:24] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[22:28:24] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[22:28:24] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[22:28:24] [PASSED] drm_test_check_disable_connector
[22:28:24] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[22:28:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[22:28:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[22:28:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[22:28:24] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[22:28:24] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[22:28:24] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[22:28:24] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[22:28:24] [PASSED] drm_test_check_output_bpc_dvi
[22:28:24] [PASSED] drm_test_check_output_bpc_format_vic_1
[22:28:24] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[22:28:24] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[22:28:24] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[22:28:24] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[22:28:24] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[22:28:24] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[22:28:24] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[22:28:24] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[22:28:24] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[22:28:24] [PASSED] drm_test_check_broadcast_rgb_value
[22:28:24] [PASSED] drm_test_check_bpc_8_value
[22:28:24] [PASSED] drm_test_check_bpc_10_value
[22:28:24] [PASSED] drm_test_check_bpc_12_value
[22:28:24] [PASSED] drm_test_check_format_value
[22:28:24] [PASSED] drm_test_check_tmds_char_value
[22:28:24] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[22:28:24] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[22:28:24] [PASSED] drm_test_check_mode_valid
[22:28:24] [PASSED] drm_test_check_mode_valid_reject
[22:28:24] [PASSED] drm_test_check_mode_valid_reject_rate
[22:28:24] [PASSED] drm_test_check_mode_valid_reject_max_clock
[22:28:24] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[22:28:24] ================= drm_managed (2 subtests) =================
[22:28:24] [PASSED] drm_test_managed_release_action
[22:28:24] [PASSED] drm_test_managed_run_action
[22:28:24] =================== [PASSED] drm_managed ===================
[22:28:24] =================== drm_mm (6 subtests) ====================
[22:28:24] [PASSED] drm_test_mm_init
[22:28:24] [PASSED] drm_test_mm_debug
[22:28:24] [PASSED] drm_test_mm_align32
[22:28:24] [PASSED] drm_test_mm_align64
[22:28:24] [PASSED] drm_test_mm_lowest
[22:28:24] [PASSED] drm_test_mm_highest
[22:28:24] ===================== [PASSED] drm_mm ======================
[22:28:24] ============= drm_modes_analog_tv (5 subtests) =============
[22:28:24] [PASSED] drm_test_modes_analog_tv_mono_576i
[22:28:24] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[22:28:24] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[22:28:24] [PASSED] drm_test_modes_analog_tv_pal_576i
[22:28:24] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[22:28:24] =============== [PASSED] drm_modes_analog_tv ===============
[22:28:24] ============== drm_plane_helper (2 subtests) ===============
[22:28:24] =============== drm_test_check_plane_state ================
[22:28:24] [PASSED] clipping_simple
[22:28:24] [PASSED] clipping_rotate_reflect
[22:28:24] [PASSED] positioning_simple
[22:28:24] [PASSED] upscaling
[22:28:24] [PASSED] downscaling
[22:28:24] [PASSED] rounding1
[22:28:24] [PASSED] rounding2
[22:28:24] [PASSED] rounding3
[22:28:24] [PASSED] rounding4
[22:28:24] =========== [PASSED] drm_test_check_plane_state ============
[22:28:24] =========== drm_test_check_invalid_plane_state ============
[22:28:24] [PASSED] positioning_invalid
[22:28:24] [PASSED] upscaling_invalid
[22:28:24] [PASSED] downscaling_invalid
[22:28:24] ======= [PASSED] drm_test_check_invalid_plane_state ========
[22:28:24] ================ [PASSED] drm_plane_helper =================
[22:28:24] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[22:28:24] ====== drm_test_connector_helper_tv_get_modes_check =======
[22:28:24] [PASSED] None
[22:28:24] [PASSED] PAL
[22:28:24] [PASSED] NTSC
[22:28:24] [PASSED] Both, NTSC Default
[22:28:24] [PASSED] Both, PAL Default
[22:28:24] [PASSED] Both, NTSC Default, with PAL on command-line
[22:28:24] [PASSED] Both, PAL Default, with NTSC on command-line
[22:28:24] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[22:28:24] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[22:28:24] ================== drm_rect (9 subtests) ===================
[22:28:24] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[22:28:24] [PASSED] drm_test_rect_clip_scaled_not_clipped
[22:28:24] [PASSED] drm_test_rect_clip_scaled_clipped
[22:28:24] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[22:28:24] ================= drm_test_rect_intersect =================
[22:28:24] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[22:28:24] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[22:28:24] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[22:28:24] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[22:28:24] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[22:28:24] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[22:28:24] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[22:28:24] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[22:28:24] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[22:28:24] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[22:28:24] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[22:28:24] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[22:28:24] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[22:28:24] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[22:28:24] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[22:28:24] ============= [PASSED] drm_test_rect_intersect =============
[22:28:24] ================ drm_test_rect_calc_hscale ================
[22:28:24] [PASSED] normal use
[22:28:24] [PASSED] out of max range
[22:28:24] [PASSED] out of min range
[22:28:24] [PASSED] zero dst
[22:28:24] [PASSED] negative src
[22:28:24] [PASSED] negative dst
[22:28:24] ============ [PASSED] drm_test_rect_calc_hscale ============
[22:28:24] ================ drm_test_rect_calc_vscale ================
[22:28:24] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[22:28:24] [PASSED] out of max range
[22:28:24] [PASSED] out of min range
[22:28:24] [PASSED] zero dst
[22:28:24] [PASSED] negative src
[22:28:24] [PASSED] negative dst
[22:28:24] ============ [PASSED] drm_test_rect_calc_vscale ============
[22:28:24] ================== drm_test_rect_rotate ===================
[22:28:24] [PASSED] reflect-x
[22:28:24] [PASSED] reflect-y
[22:28:24] [PASSED] rotate-0
[22:28:24] [PASSED] rotate-90
[22:28:24] [PASSED] rotate-180
[22:28:24] [PASSED] rotate-270
[22:28:24] ============== [PASSED] drm_test_rect_rotate ===============
[22:28:24] ================ drm_test_rect_rotate_inv =================
[22:28:24] [PASSED] reflect-x
[22:28:24] [PASSED] reflect-y
[22:28:24] [PASSED] rotate-0
[22:28:24] [PASSED] rotate-90
[22:28:24] [PASSED] rotate-180
[22:28:24] [PASSED] rotate-270
[22:28:24] ============ [PASSED] drm_test_rect_rotate_inv =============
[22:28:24] ==================== [PASSED] drm_rect =====================
[22:28:24] ============ drm_sysfb_modeset_test (1 subtest) ============
[22:28:24] ============ drm_test_sysfb_build_fourcc_list =============
[22:28:24] [PASSED] no native formats
[22:28:24] [PASSED] XRGB8888 as native format
[22:28:24] [PASSED] remove duplicates
[22:28:24] [PASSED] convert alpha formats
[22:28:24] [PASSED] random formats
[22:28:24] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[22:28:24] ============= [PASSED] drm_sysfb_modeset_test ==============
[22:28:24] ============================================================
[22:28:24] Testing complete. Ran 622 tests: passed: 622
[22:28:24] Elapsed time: 29.176s total, 1.558s configuring, 27.148s building, 0.436s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[22:28:24] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:28:25] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[22:28:35] Starting KUnit Kernel (1/1)...
[22:28:35] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:28:35] ================= ttm_device (5 subtests) ==================
[22:28:35] [PASSED] ttm_device_init_basic
[22:28:35] [PASSED] ttm_device_init_multiple
[22:28:35] [PASSED] ttm_device_fini_basic
[22:28:35] [PASSED] ttm_device_init_no_vma_man
[22:28:35] ================== ttm_device_init_pools ==================
[22:28:35] [PASSED] No DMA allocations, no DMA32 required
[22:28:35] [PASSED] DMA allocations, DMA32 required
[22:28:35] [PASSED] No DMA allocations, DMA32 required
[22:28:35] [PASSED] DMA allocations, no DMA32 required
[22:28:35] ============== [PASSED] ttm_device_init_pools ==============
[22:28:35] =================== [PASSED] ttm_device ====================
[22:28:35] ================== ttm_pool (8 subtests) ===================
[22:28:35] ================== ttm_pool_alloc_basic ===================
[22:28:35] [PASSED] One page
[22:28:35] [PASSED] More than one page
[22:28:35] [PASSED] Above the allocation limit
[22:28:35] [PASSED] One page, with coherent DMA mappings enabled
[22:28:35] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:28:35] ============== [PASSED] ttm_pool_alloc_basic ===============
[22:28:35] ============== ttm_pool_alloc_basic_dma_addr ==============
[22:28:35] [PASSED] One page
[22:28:35] [PASSED] More than one page
[22:28:35] [PASSED] Above the allocation limit
[22:28:35] [PASSED] One page, with coherent DMA mappings enabled
[22:28:35] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:28:35] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[22:28:35] [PASSED] ttm_pool_alloc_order_caching_match
[22:28:35] [PASSED] ttm_pool_alloc_caching_mismatch
[22:28:35] [PASSED] ttm_pool_alloc_order_mismatch
[22:28:35] [PASSED] ttm_pool_free_dma_alloc
[22:28:35] [PASSED] ttm_pool_free_no_dma_alloc
[22:28:35] [PASSED] ttm_pool_fini_basic
[22:28:35] ==================== [PASSED] ttm_pool =====================
[22:28:35] ================ ttm_resource (8 subtests) =================
[22:28:35] ================= ttm_resource_init_basic =================
[22:28:35] [PASSED] Init resource in TTM_PL_SYSTEM
[22:28:35] [PASSED] Init resource in TTM_PL_VRAM
[22:28:35] [PASSED] Init resource in a private placement
[22:28:35] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[22:28:35] ============= [PASSED] ttm_resource_init_basic =============
[22:28:35] [PASSED] ttm_resource_init_pinned
[22:28:35] [PASSED] ttm_resource_fini_basic
[22:28:35] [PASSED] ttm_resource_manager_init_basic
[22:28:35] [PASSED] ttm_resource_manager_usage_basic
[22:28:35] [PASSED] ttm_resource_manager_set_used_basic
[22:28:35] [PASSED] ttm_sys_man_alloc_basic
[22:28:35] [PASSED] ttm_sys_man_free_basic
[22:28:35] ================== [PASSED] ttm_resource ===================
[22:28:35] =================== ttm_tt (15 subtests) ===================
[22:28:35] ==================== ttm_tt_init_basic ====================
[22:28:35] [PASSED] Page-aligned size
[22:28:35] [PASSED] Extra pages requested
[22:28:35] ================ [PASSED] ttm_tt_init_basic ================
[22:28:35] [PASSED] ttm_tt_init_misaligned
[22:28:35] [PASSED] ttm_tt_fini_basic
[22:28:35] [PASSED] ttm_tt_fini_sg
[22:28:35] [PASSED] ttm_tt_fini_shmem
[22:28:35] [PASSED] ttm_tt_create_basic
[22:28:35] [PASSED] ttm_tt_create_invalid_bo_type
[22:28:35] [PASSED] ttm_tt_create_ttm_exists
[22:28:35] [PASSED] ttm_tt_create_failed
[22:28:35] [PASSED] ttm_tt_destroy_basic
[22:28:35] [PASSED] ttm_tt_populate_null_ttm
[22:28:35] [PASSED] ttm_tt_populate_populated_ttm
[22:28:35] [PASSED] ttm_tt_unpopulate_basic
[22:28:35] [PASSED] ttm_tt_unpopulate_empty_ttm
[22:28:35] [PASSED] ttm_tt_swapin_basic
[22:28:35] ===================== [PASSED] ttm_tt ======================
[22:28:35] =================== ttm_bo (14 subtests) ===================
[22:28:35] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[22:28:35] [PASSED] Cannot be interrupted and sleeps
[22:28:35] [PASSED] Cannot be interrupted, locks straight away
[22:28:35] [PASSED] Can be interrupted, sleeps
[22:28:35] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[22:28:35] [PASSED] ttm_bo_reserve_locked_no_sleep
[22:28:35] [PASSED] ttm_bo_reserve_no_wait_ticket
[22:28:35] [PASSED] ttm_bo_reserve_double_resv
[22:28:35] [PASSED] ttm_bo_reserve_interrupted
[22:28:35] [PASSED] ttm_bo_reserve_deadlock
[22:28:35] [PASSED] ttm_bo_unreserve_basic
[22:28:35] [PASSED] ttm_bo_unreserve_pinned
[22:28:35] [PASSED] ttm_bo_unreserve_bulk
[22:28:35] [PASSED] ttm_bo_fini_basic
[22:28:35] [PASSED] ttm_bo_fini_shared_resv
[22:28:35] [PASSED] ttm_bo_pin_basic
[22:28:35] [PASSED] ttm_bo_pin_unpin_resource
[22:28:35] [PASSED] ttm_bo_multiple_pin_one_unpin
[22:28:35] ===================== [PASSED] ttm_bo ======================
[22:28:35] ============== ttm_bo_validate (21 subtests) ===============
[22:28:35] ============== ttm_bo_init_reserved_sys_man ===============
[22:28:35] [PASSED] Buffer object for userspace
[22:28:35] [PASSED] Kernel buffer object
[22:28:35] [PASSED] Shared buffer object
[22:28:35] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[22:28:35] ============== ttm_bo_init_reserved_mock_man ==============
[22:28:35] [PASSED] Buffer object for userspace
[22:28:35] [PASSED] Kernel buffer object
[22:28:35] [PASSED] Shared buffer object
[22:28:35] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[22:28:35] [PASSED] ttm_bo_init_reserved_resv
[22:28:35] ================== ttm_bo_validate_basic ==================
[22:28:35] [PASSED] Buffer object for userspace
[22:28:35] [PASSED] Kernel buffer object
[22:28:35] [PASSED] Shared buffer object
[22:28:35] ============== [PASSED] ttm_bo_validate_basic ==============
[22:28:35] [PASSED] ttm_bo_validate_invalid_placement
[22:28:35] ============= ttm_bo_validate_same_placement ==============
[22:28:35] [PASSED] System manager
[22:28:35] [PASSED] VRAM manager
[22:28:35] ========= [PASSED] ttm_bo_validate_same_placement ==========
[22:28:35] [PASSED] ttm_bo_validate_failed_alloc
[22:28:35] [PASSED] ttm_bo_validate_pinned
[22:28:35] [PASSED] ttm_bo_validate_busy_placement
[22:28:35] ================ ttm_bo_validate_multihop =================
[22:28:35] [PASSED] Buffer object for userspace
[22:28:35] [PASSED] Kernel buffer object
[22:28:35] [PASSED] Shared buffer object
[22:28:35] ============ [PASSED] ttm_bo_validate_multihop =============
[22:28:35] ========== ttm_bo_validate_no_placement_signaled ==========
[22:28:35] [PASSED] Buffer object in system domain, no page vector
[22:28:35] [PASSED] Buffer object in system domain with an existing page vector
[22:28:35] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[22:28:35] ======== ttm_bo_validate_no_placement_not_signaled ========
[22:28:35] [PASSED] Buffer object for userspace
[22:28:35] [PASSED] Kernel buffer object
[22:28:35] [PASSED] Shared buffer object
[22:28:35] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[22:28:35] [PASSED] ttm_bo_validate_move_fence_signaled
[22:28:35] ========= ttm_bo_validate_move_fence_not_signaled =========
[22:28:35] [PASSED] Waits for GPU
[22:28:35] [PASSED] Tries to lock straight away
[22:28:35] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[22:28:35] [PASSED] ttm_bo_validate_happy_evict
[22:28:35] [PASSED] ttm_bo_validate_all_pinned_evict
[22:28:35] [PASSED] ttm_bo_validate_allowed_only_evict
[22:28:35] [PASSED] ttm_bo_validate_deleted_evict
[22:28:35] [PASSED] ttm_bo_validate_busy_domain_evict
[22:28:35] [PASSED] ttm_bo_validate_evict_gutting
[22:28:35] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[22:28:35] ================= [PASSED] ttm_bo_validate =================
[22:28:35] ============================================================
[22:28:35] Testing complete. Ran 101 tests: passed: 101
[22:28:35] Elapsed time: 11.114s total, 1.617s configuring, 9.280s building, 0.176s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.BAT: failure for Fix serialization on burst of unbinds - v2
2025-10-24 22:20 [PATCH v3 0/2] Fix serialization on burst of unbinds - v2 Matthew Brost
` (3 preceding siblings ...)
2025-10-24 22:28 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-24 23:15 ` Patchwork
2025-10-25 11:11 ` ✗ Xe.CI.Full: " Patchwork
2025-10-27 2:13 ` [PATCH v3 0/2] " Matthew Brost
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-10-24 23:15 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 3221 bytes --]
== Series Details ==
Series: Fix serialization on burst of unbinds - v2
URL : https://patchwork.freedesktop.org/series/156517/
State : failure
== Summary ==
CI Bug Log - changes from xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07_BAT -> xe-pw-156517v1_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-156517v1_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-156517v1_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-156517v1_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_waitfence@abstime:
- bat-bmg-1: [PASS][1] -> [TIMEOUT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/bat-bmg-1/igt@xe_waitfence@abstime.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/bat-bmg-1/igt@xe_waitfence@abstime.html
- bat-atsm-2: [PASS][3] -> [TIMEOUT][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/bat-atsm-2/igt@xe_waitfence@abstime.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/bat-atsm-2/igt@xe_waitfence@abstime.html
* igt@xe_waitfence@engine:
- bat-dg2-oem2: [PASS][5] -> [FAIL][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/bat-dg2-oem2/igt@xe_waitfence@engine.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/bat-dg2-oem2/igt@xe_waitfence@engine.html
- bat-bmg-2: [PASS][7] -> [FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/bat-bmg-2/igt@xe_waitfence@engine.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/bat-bmg-2/igt@xe_waitfence@engine.html
- bat-bmg-1: [PASS][9] -> [FAIL][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/bat-bmg-1/igt@xe_waitfence@engine.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/bat-bmg-1/igt@xe_waitfence@engine.html
* igt@xe_waitfence@reltime:
- bat-atsm-2: [PASS][11] -> [FAIL][12]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/bat-atsm-2/igt@xe_waitfence@reltime.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/bat-atsm-2/igt@xe_waitfence@reltime.html
Build changes
-------------
* Linux: xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07 -> xe-pw-156517v1
IGT_8596: 8596
xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07: d65117641c3f3fb403fc83e553bcb899bc1c9a07
xe-pw-156517v1: 156517v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/index.html
[-- Attachment #2: Type: text/html, Size: 3897 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.Full: failure for Fix serialization on burst of unbinds - v2
2025-10-24 22:20 [PATCH v3 0/2] Fix serialization on burst of unbinds - v2 Matthew Brost
` (4 preceding siblings ...)
2025-10-24 23:15 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2025-10-25 11:11 ` Patchwork
2025-10-27 2:13 ` [PATCH v3 0/2] " Matthew Brost
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-10-25 11:11 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 42956 bytes --]
== Series Details ==
Series: Fix serialization on burst of unbinds - v2
URL : https://patchwork.freedesktop.org/series/156517/
State : failure
== Summary ==
CI Bug Log - changes from xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07_FULL -> xe-pw-156517v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-156517v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-156517v1_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 (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-156517v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_color@ctm-signed@pipe-c-edp-1:
- shard-lnl: [PASS][1] -> [ABORT][2] +25 other tests abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-1/igt@kms_color@ctm-signed@pipe-c-edp-1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-4/igt@kms_color@ctm-signed@pipe-c-edp-1.html
* igt@xe_exec_system_allocator@processes-evict-malloc-mix-bo:
- shard-bmg: [PASS][3] -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-4/igt@xe_exec_system_allocator@processes-evict-malloc-mix-bo.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-6/igt@xe_exec_system_allocator@processes-evict-malloc-mix-bo.html
* igt@xe_exec_system_allocator@threads-many-execqueues-mmap:
- shard-bmg: [PASS][5] -> [ABORT][6] +21 other tests abort
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-6/igt@xe_exec_system_allocator@threads-many-execqueues-mmap.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-6/igt@xe_exec_system_allocator@threads-many-execqueues-mmap.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-madvise:
- shard-bmg: NOTRUN -> [ABORT][7] +1 other test abort
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-6/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-madvise.html
Known issues
------------
Here are the changes found in xe-pw-156517v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#623])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-435/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#316])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-466/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180:
- shard-adlp: [PASS][10] -> [DMESG-WARN][11] ([Intel XE#2953] / [Intel XE#4173]) +3 other tests dmesg-warn
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-adlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-1/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +3 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-adlp: NOTRUN -> [SKIP][13] ([Intel XE#607])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#2191])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#367])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-8/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html
* igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-435/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#787]) +27 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [PASS][18] -> [INCOMPLETE][19] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [PASS][20] -> [INCOMPLETE][21] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [PASS][22] -> [INCOMPLETE][23] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: [PASS][24] -> [INCOMPLETE][25] ([Intel XE#2705] / [Intel XE#4212])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [PASS][26] -> [INCOMPLETE][27] ([Intel XE#6168] / [i915#14968])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][28] -> [DMESG-WARN][29] ([Intel XE#1727] / [Intel XE#3113])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2887])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-8/igt@kms_ccs@random-ccs-data-y-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc:
- shard-adlp: NOTRUN -> [SKIP][31] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-8/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][32] ([Intel XE#787]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-8/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#4416]) +3 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-466/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-adlp: NOTRUN -> [SKIP][34] ([Intel XE#373]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-6/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#373]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-435/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-adlp: NOTRUN -> [SKIP][36] ([Intel XE#309])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#323])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-adlp: NOTRUN -> [SKIP][38] ([Intel XE#310])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1:
- shard-adlp: [PASS][39] -> [DMESG-WARN][40] ([Intel XE#4543]) +1 other test dmesg-warn
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-adlp-3/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-1/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: NOTRUN -> [DMESG-WARN][41] ([Intel XE#2953] / [Intel XE#4173]) +4 other tests dmesg-warn
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-6/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y:
- shard-adlp: [PASS][42] -> [DMESG-FAIL][43] ([Intel XE#4543])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-y-to-y.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y:
- shard-adlp: [PASS][44] -> [FAIL][45] ([Intel XE#1874])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-pgflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#651]) +5 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt:
- shard-adlp: NOTRUN -> [SKIP][47] ([Intel XE#653])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-adlp: NOTRUN -> [SKIP][48] ([Intel XE#656]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#653]) +7 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
* igt@kms_plane_multiple@tiling-4:
- shard-adlp: NOTRUN -> [SKIP][50] ([Intel XE#5020])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-8/igt@kms_plane_multiple@tiling-4.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1406] / [Intel XE#1489]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-435/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#1406] / [Intel XE#1489])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-8/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-adlp: NOTRUN -> [SKIP][53] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-6/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-435/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#3414])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-adlp: NOTRUN -> [SKIP][56] ([Intel XE#455])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-8/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_vrr@flipline:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#455]) +3 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-435/igt@kms_vrr@flipline.html
* igt@xe_copy_basic@mem-copy-linear-0x8fffe:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#5300])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x8fffe.html
* igt@xe_copy_basic@mem-page-copy-17:
- shard-adlp: NOTRUN -> [SKIP][59] ([Intel XE#5300])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-6/igt@xe_copy_basic@mem-page-copy-17.html
* igt@xe_copy_basic@mem-set-linear-0x369:
- shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#1126])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0x369.html
* igt@xe_eudebug@vm-bind-clear-faultable:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#4837]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-435/igt@xe_eudebug@vm-bind-clear-faultable.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
- shard-adlp: NOTRUN -> [SKIP][62] ([Intel XE#1392] / [Intel XE#5575])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-6/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#288]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-466/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-imm.html
* igt@xe_exec_fault_mode@twice-basic:
- shard-adlp: NOTRUN -> [SKIP][64] ([Intel XE#288] / [Intel XE#5561])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-8/igt@xe_exec_fault_mode@twice-basic.html
* igt@xe_exec_system_allocator@madvise-multi-vma:
- shard-adlp: NOTRUN -> [SKIP][65] ([Intel XE#4915]) +31 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-6/igt@xe_exec_system_allocator@madvise-multi-vma.html
* igt@xe_exec_system_allocator@twice-malloc-fork-read:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#4915]) +95 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-466/igt@xe_exec_system_allocator@twice-malloc-fork-read.html
* igt@xe_gt_freq@freq_fixed_idle:
- shard-dg2-set2: [PASS][67] -> [FAIL][68] ([Intel XE#6407])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-dg2-432/igt@xe_gt_freq@freq_fixed_idle.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-433/igt@xe_gt_freq@freq_fixed_idle.html
* igt@xe_oa@mmio-triggered-reports:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#3573]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-435/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_oa@oa-exponents:
- shard-adlp: NOTRUN -> [SKIP][70] ([Intel XE#3573])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-6/igt@xe_oa@oa-exponents.html
* igt@xe_pm@d3cold-mmap-system:
- shard-adlp: NOTRUN -> [SKIP][71] ([Intel XE#2284] / [Intel XE#366])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-6/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_pm@d3hot-i2c:
- shard-adlp: NOTRUN -> [SKIP][72] ([Intel XE#5742])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-8/igt@xe_pm@d3hot-i2c.html
* igt@xe_pmu@all-fn-engine-activity-load:
- shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#4650])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-466/igt@xe_pmu@all-fn-engine-activity-load.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#4733])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-435/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#944])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-466/igt@xe_query@multigpu-query-topology.html
* igt@xe_sriov_flr@flr-twice:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#4273])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-466/igt@xe_sriov_flr@flr-twice.html
* igt@xe_sriov_vram@vf-access-after-resize-up:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#6318])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-435/igt@xe_sriov_vram@vf-access-after-resize-up.html
#### Possible fixes ####
* igt@kms_addfb_basic@invalid-get-prop-any:
- shard-adlp: [DMESG-WARN][78] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][79] +3 other tests pass
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-adlp-6/igt@kms_addfb_basic@invalid-get-prop-any.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-2/igt@kms_addfb_basic@invalid-get-prop-any.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: [INCOMPLETE][80] ([Intel XE#3862]) -> [PASS][81] +1 other test pass
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html
* igt@kms_flip@basic-flip-vs-dpms@d-hdmi-a1:
- shard-adlp: [DMESG-WARN][82] ([Intel XE#4543]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-adlp-9/igt@kms_flip@basic-flip-vs-dpms@d-hdmi-a1.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-8/igt@kms_flip@basic-flip-vs-dpms@d-hdmi-a1.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y:
- shard-adlp: [DMESG-FAIL][84] ([Intel XE#4543]) -> [PASS][85]
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [SKIP][86] ([Intel XE#455]) -> [PASS][87]
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-dg2-436/igt@kms_hdr@invalid-hdr.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
* igt@xe_exec_basic@multigpu-once-basic:
- shard-dg2-set2: [INCOMPLETE][88] -> [PASS][89]
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-435/igt@xe_exec_basic@multigpu-once-basic.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: [DMESG-WARN][90] ([Intel XE#5893]) -> [PASS][91]
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-dg2-432/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-dg2-435/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [SKIP][115], [PASS][116], [PASS][117]) ([Intel XE#378]) -> ([PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-7/igt@xe_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-3/igt@xe_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-1/igt@xe_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-1/igt@xe_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-1/igt@xe_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-3/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-1/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-2/igt@xe_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-2/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-7/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-7/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-2/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-2/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-8/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-8/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-8/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-5/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-4/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-4/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-7/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-4/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-3/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-3/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-7/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-5/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-lnl-5/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-3/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-1/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-4/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-3/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-3/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-8/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-8/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-4/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-4/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-8/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-5/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-1/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-1/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-8/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-5/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-2/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-2/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-2/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-7/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-7/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-7/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-4/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-1/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-5/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-lnl-5/igt@xe_module_load@load.html
- shard-bmg: ([PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164], [SKIP][165], [PASS][166]) ([Intel XE#2457]) -> ([PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-8/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-8/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-4/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-5/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-4/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-4/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-5/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-2/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-2/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-2/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-7/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-5/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-7/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-7/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-8/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-8/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-3/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-3/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-3/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-6/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-6/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-1/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-1/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-bmg-1/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-5/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-5/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-2/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-6/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-7/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-3/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-3/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-3/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-4/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-4/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-5/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-4/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-6/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-5/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-2/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-6/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-8/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-8/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-8/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-1/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-1/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-1/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-7/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-7/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-bmg-2/igt@xe_module_load@load.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random:
- shard-adlp: [ABORT][192] ([Intel XE#4917]) -> [PASS][193] +1 other test pass
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-adlp-8/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-6/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
#### Warnings ####
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-adlp: [ABORT][194] ([Intel XE#5530]) -> [ABORT][195] ([Intel XE#2953] / [Intel XE#5530])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07/shard-adlp-1/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/shard-adlp-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[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#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[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#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#6318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6318
[Intel XE#6407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6407
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[i915#14968]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14968
Build changes
-------------
* Linux: xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07 -> xe-pw-156517v1
IGT_8596: 8596
xe-3985-d65117641c3f3fb403fc83e553bcb899bc1c9a07: d65117641c3f3fb403fc83e553bcb899bc1c9a07
xe-pw-156517v1: 156517v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156517v1/index.html
[-- Attachment #2: Type: text/html, Size: 48009 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v3 0/2] Fix serialization on burst of unbinds - v2
2025-10-24 22:20 [PATCH v3 0/2] Fix serialization on burst of unbinds - v2 Matthew Brost
` (5 preceding siblings ...)
2025-10-25 11:11 ` ✗ Xe.CI.Full: " Patchwork
@ 2025-10-27 2:13 ` Matthew Brost
6 siblings, 0 replies; 8+ messages in thread
From: Matthew Brost @ 2025-10-27 2:13 UTC (permalink / raw)
To: intel-xe; +Cc: thomas.hellstrom
On Fri, Oct 24, 2025 at 03:20:45PM -0700, Matthew Brost wrote:
> Attempting to resolve part of [1]; this solution differs than v1 [2] by
> changing last fence semantics detailed in the patches.
>
> Overview of issue in [1]:
>
> When a burst of unbind jobs is issued, a dependency chain can form
> between the TLB invalidation of a previous unbind job and the current
> one. This leads to undesirable serialization, causing current jobs to
> wait unnecessarily for prior TLB invalidations, execute on the GPU when
> not needed, and significantly slow down the unbind burst—resulting in up
> to a 4× slowdown.
>
> Matt
>
> [1] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6047
> [2] https://patchwork.freedesktop.org/series/156144/
>
Don't review this one, still issues here.
Matt
> Matthew Brost (2):
> drm/xe: Add last fence attachment to TLB invalidation job queues
> drm/xe: Decouple bind queue last fence from TLB invalidations
>
> drivers/gpu/drm/xe/xe_exec_queue.c | 105 ++++++++++++++++++++++-
> drivers/gpu/drm/xe/xe_exec_queue.h | 18 ++++
> drivers/gpu/drm/xe/xe_exec_queue_types.h | 5 ++
> drivers/gpu/drm/xe/xe_pt.c | 64 +++++---------
> drivers/gpu/drm/xe/xe_sync.c | 58 +++++++++++--
> drivers/gpu/drm/xe/xe_vm.c | 60 +++++++------
> 6 files changed, 234 insertions(+), 76 deletions(-)
>
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-10-27 2:13 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-24 22:20 [PATCH v3 0/2] Fix serialization on burst of unbinds - v2 Matthew Brost
2025-10-24 22:20 ` [PATCH v3 1/2] drm/xe: Add last fence attachment to TLB invalidation job queues Matthew Brost
2025-10-24 22:20 ` [PATCH v3 2/2] drm/xe: Decouple bind queue last fence from TLB invalidations Matthew Brost
2025-10-24 22:27 ` ✗ CI.checkpatch: warning for Fix serialization on burst of unbinds - v2 Patchwork
2025-10-24 22:28 ` ✓ CI.KUnit: success " Patchwork
2025-10-24 23:15 ` ✗ Xe.CI.BAT: failure " Patchwork
2025-10-25 11:11 ` ✗ Xe.CI.Full: " Patchwork
2025-10-27 2:13 ` [PATCH v3 0/2] " Matthew Brost
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox