Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v7 0/6] Fix serialization on burst of unbinds - v2
@ 2025-10-31 23:40 Matthew Brost
  2025-10-31 23:40 ` [PATCH v7 1/6] drm/xe: Enforce correct user fence signaling order using Matthew Brost
                   ` (9 more replies)
  0 siblings, 10 replies; 12+ messages in thread
From: Matthew Brost @ 2025-10-31 23:40 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× to 8× slowdown depending on platform.
 
Matt

[1] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6047
[2] https://patchwork.freedesktop.org/series/156144/

Matthew Brost (6):
  drm/xe: Enforce correct user fence signaling order using
  drm/xe: Attach last fence to TLB invalidation job queues
  drm/xe: Decouple bind queue last fence from TLB invalidations
  drm/xe: Skip TLB invalidation waits in page fault binds
  drm/xe: Disallow input fences on zero batch execs and zero binds
  drm/xe: Remove last fence dependency check from binds and execs

 drivers/gpu/drm/xe/xe_exec.c             |   7 +-
 drivers/gpu/drm/xe/xe_exec_queue.c       | 120 ++++++++++++++++++++---
 drivers/gpu/drm/xe/xe_exec_queue.h       |  23 ++++-
 drivers/gpu/drm/xe/xe_exec_queue_types.h |  12 +++
 drivers/gpu/drm/xe/xe_migrate.c          |  14 +++
 drivers/gpu/drm/xe/xe_migrate.h          |   8 ++
 drivers/gpu/drm/xe/xe_oa.c               |  45 ++++++---
 drivers/gpu/drm/xe/xe_oa_types.h         |   8 ++
 drivers/gpu/drm/xe/xe_pt.c               |  80 +++++----------
 drivers/gpu/drm/xe/xe_sched_job.c        |  17 ----
 drivers/gpu/drm/xe/xe_sched_job.h        |   1 -
 drivers/gpu/drm/xe/xe_sync.c             |  91 ++++++++++-------
 drivers/gpu/drm/xe/xe_sync.h             |   3 +
 drivers/gpu/drm/xe/xe_sync_types.h       |   3 +
 drivers/gpu/drm/xe/xe_tlb_inval_job.c    |  31 ++++--
 drivers/gpu/drm/xe/xe_tlb_inval_job.h    |   5 +-
 drivers/gpu/drm/xe/xe_vm.c               |  97 +++++++++++-------
 drivers/gpu/drm/xe/xe_vm_types.h         |   6 +-
 18 files changed, 377 insertions(+), 194 deletions(-)

-- 
2.34.1


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

* [PATCH v7 1/6] drm/xe: Enforce correct user fence signaling order using
  2025-10-31 23:40 [PATCH v7 0/6] Fix serialization on burst of unbinds - v2 Matthew Brost
@ 2025-10-31 23:40 ` Matthew Brost
  2025-10-31 23:40 ` [PATCH v7 2/6] drm/xe: Attach last fence to TLB invalidation job queues Matthew Brost
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 12+ messages in thread
From: Matthew Brost @ 2025-10-31 23:40 UTC (permalink / raw)
  To: intel-xe; +Cc: thomas.hellstrom

Prevent application hangs caused by out-of-order fence signaling when
user fences are attached. Use drm_syncobj (via dma-fence-chain) to
guarantee that each user fence signals in order, regardless of the
signaling order of the attached fences. Ensure user fence writebacks to
user space occur in the correct sequence.

v7:
 - Skip drm_syncbj create of error (CI)

Fixes: dd08ebf6c352 ("drm/xe: Introduce a new DRM driver for Intel GPUs")
Signed-of-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
 drivers/gpu/drm/xe/xe_exec.c             |  3 +-
 drivers/gpu/drm/xe/xe_exec_queue.c       | 14 ++++++++
 drivers/gpu/drm/xe/xe_exec_queue_types.h |  7 ++++
 drivers/gpu/drm/xe/xe_oa.c               | 45 ++++++++++++++++--------
 drivers/gpu/drm/xe/xe_oa_types.h         |  8 +++++
 drivers/gpu/drm/xe/xe_sync.c             | 17 +++++++--
 drivers/gpu/drm/xe/xe_sync.h             |  3 ++
 drivers/gpu/drm/xe/xe_sync_types.h       |  3 ++
 drivers/gpu/drm/xe/xe_vm.c               |  4 +++
 9 files changed, 86 insertions(+), 18 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_exec.c b/drivers/gpu/drm/xe/xe_exec.c
index f4d79b4b9396..bf71a2fe5351 100644
--- a/drivers/gpu/drm/xe/xe_exec.c
+++ b/drivers/gpu/drm/xe/xe_exec.c
@@ -173,7 +173,8 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
 
 	for (num_syncs = 0; num_syncs < args->num_syncs; num_syncs++) {
 		err = xe_sync_entry_parse(xe, xef, &syncs[num_syncs],
-					  &syncs_user[num_syncs], SYNC_PARSE_FLAG_EXEC |
+					  &syncs_user[num_syncs], NULL, 0,
+					  SYNC_PARSE_FLAG_EXEC |
 					  (xe_vm_in_lr_mode(vm) ?
 					   SYNC_PARSE_FLAG_LR_MODE : 0));
 		if (err)
diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c
index 1b57d7c2cc94..e3414b337569 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue.c
+++ b/drivers/gpu/drm/xe/xe_exec_queue.c
@@ -10,6 +10,7 @@
 #include <drm/drm_device.h>
 #include <drm/drm_drv.h>
 #include <drm/drm_file.h>
+#include <drm/drm_syncobj.h>
 #include <uapi/drm/xe_drm.h>
 
 #include "xe_dep_scheduler.h"
@@ -368,6 +369,16 @@ struct xe_exec_queue *xe_exec_queue_create_bind(struct xe_device *xe,
 	}
 	xe_vm_put(migrate_vm);
 
+	if (!IS_ERR(q)) {
+		int err = drm_syncobj_create(&q->ufence_syncobj,
+					     DRM_SYNCOBJ_CREATE_SIGNALED,
+					     NULL);
+		if (err) {
+			xe_exec_queue_put(q);
+			return ERR_PTR(err);
+		}
+	}
+
 	return q;
 }
 ALLOW_ERROR_INJECTION(xe_exec_queue_create_bind, ERRNO);
@@ -379,6 +390,9 @@ void xe_exec_queue_destroy(struct kref *ref)
 
 	xe_assert(gt_to_xe(q->gt), atomic_read(&q->job_cnt) == 0);
 
+	if (q->ufence_syncobj)
+		drm_syncobj_put(q->ufence_syncobj);
+
 	if (xe_exec_queue_uses_pxp(q))
 		xe_pxp_exec_queue_remove(gt_to_xe(q->gt)->pxp, q);
 
diff --git a/drivers/gpu/drm/xe/xe_exec_queue_types.h b/drivers/gpu/drm/xe/xe_exec_queue_types.h
index c8807268ec6c..9bda1148e17b 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue_types.h
+++ b/drivers/gpu/drm/xe/xe_exec_queue_types.h
@@ -15,6 +15,7 @@
 #include "xe_hw_fence_types.h"
 #include "xe_lrc_types.h"
 
+struct drm_syncobj;
 struct xe_execlist_exec_queue;
 struct xe_gt;
 struct xe_guc_exec_queue;
@@ -155,6 +156,12 @@ struct xe_exec_queue {
 		struct list_head link;
 	} pxp;
 
+	/** @ufence_syncobj: User fence syncobj */
+	struct drm_syncobj *ufence_syncobj;
+
+	/** @ufence_timeline_value: User fence timeline value */
+	u64 ufence_timeline_value;
+
 	/** @ops: submission backend exec queue operations */
 	const struct xe_exec_queue_ops *ops;
 
diff --git a/drivers/gpu/drm/xe/xe_oa.c b/drivers/gpu/drm/xe/xe_oa.c
index f901ba52b403..7a13a7bd99a6 100644
--- a/drivers/gpu/drm/xe/xe_oa.c
+++ b/drivers/gpu/drm/xe/xe_oa.c
@@ -10,6 +10,7 @@
 
 #include <drm/drm_drv.h>
 #include <drm/drm_managed.h>
+#include <drm/drm_syncobj.h>
 #include <uapi/drm/xe_drm.h>
 
 #include <generated/xe_wa_oob.h>
@@ -1390,7 +1391,9 @@ static int xe_oa_user_extensions(struct xe_oa *oa, enum xe_oa_user_extn_from fro
 	return 0;
 }
 
-static int xe_oa_parse_syncs(struct xe_oa *oa, struct xe_oa_open_param *param)
+static int xe_oa_parse_syncs(struct xe_oa *oa,
+			     struct xe_oa_stream *stream,
+			     struct xe_oa_open_param *param)
 {
 	int ret, num_syncs, num_ufence = 0;
 
@@ -1410,7 +1413,9 @@ static int xe_oa_parse_syncs(struct xe_oa *oa, struct xe_oa_open_param *param)
 
 	for (num_syncs = 0; num_syncs < param->num_syncs; num_syncs++) {
 		ret = xe_sync_entry_parse(oa->xe, param->xef, &param->syncs[num_syncs],
-					  &param->syncs_user[num_syncs], 0);
+					  &param->syncs_user[num_syncs],
+					  stream->ufence_syncobj,
+					  ++stream->ufence_timeline_value, 0);
 		if (ret)
 			goto err_syncs;
 
@@ -1540,7 +1545,7 @@ static long xe_oa_config_locked(struct xe_oa_stream *stream, u64 arg)
 		return -ENODEV;
 
 	param.xef = stream->xef;
-	err = xe_oa_parse_syncs(stream->oa, &param);
+	err = xe_oa_parse_syncs(stream->oa, stream, &param);
 	if (err)
 		goto err_config_put;
 
@@ -1636,6 +1641,7 @@ static void xe_oa_destroy_locked(struct xe_oa_stream *stream)
 	if (stream->exec_q)
 		xe_exec_queue_put(stream->exec_q);
 
+	drm_syncobj_put(stream->ufence_syncobj);
 	kfree(stream);
 }
 
@@ -1827,6 +1833,7 @@ static int xe_oa_stream_open_ioctl_locked(struct xe_oa *oa,
 					  struct xe_oa_open_param *param)
 {
 	struct xe_oa_stream *stream;
+	struct drm_syncobj *ufence_syncobj;
 	int stream_fd;
 	int ret;
 
@@ -1837,17 +1844,31 @@ static int xe_oa_stream_open_ioctl_locked(struct xe_oa *oa,
 		goto exit;
 	}
 
+	ret = drm_syncobj_create(&ufence_syncobj, DRM_SYNCOBJ_CREATE_SIGNALED,
+				 NULL);
+	if (ret)
+		goto exit;
+
 	stream = kzalloc(sizeof(*stream), GFP_KERNEL);
 	if (!stream) {
 		ret = -ENOMEM;
-		goto exit;
+		goto err_syncobj;
 	}
-
+	stream->ufence_syncobj = ufence_syncobj;
 	stream->oa = oa;
-	ret = xe_oa_stream_init(stream, param);
+
+	ret = xe_oa_parse_syncs(oa, stream, param);
 	if (ret)
 		goto err_free;
 
+	ret = xe_oa_stream_init(stream, param);
+	if (ret) {
+		while (param->num_syncs--)
+			xe_sync_entry_cleanup(&param->syncs[param->num_syncs]);
+		kfree(param->syncs);
+		goto err_free;
+	}
+
 	if (!param->disabled) {
 		ret = xe_oa_enable_locked(stream);
 		if (ret)
@@ -1871,6 +1892,8 @@ static int xe_oa_stream_open_ioctl_locked(struct xe_oa *oa,
 	xe_oa_stream_destroy(stream);
 err_free:
 	kfree(stream);
+err_syncobj:
+	drm_syncobj_put(ufence_syncobj);
 exit:
 	return ret;
 }
@@ -2084,22 +2107,14 @@ int xe_oa_stream_open_ioctl(struct drm_device *dev, u64 data, struct drm_file *f
 		goto err_exec_q;
 	}
 
-	ret = xe_oa_parse_syncs(oa, &param);
-	if (ret)
-		goto err_exec_q;
-
 	mutex_lock(&param.hwe->gt->oa.gt_lock);
 	ret = xe_oa_stream_open_ioctl_locked(oa, &param);
 	mutex_unlock(&param.hwe->gt->oa.gt_lock);
 	if (ret < 0)
-		goto err_sync_cleanup;
+		goto err_exec_q;
 
 	return ret;
 
-err_sync_cleanup:
-	while (param.num_syncs--)
-		xe_sync_entry_cleanup(&param.syncs[param.num_syncs]);
-	kfree(param.syncs);
 err_exec_q:
 	if (param.exec_q)
 		xe_exec_queue_put(param.exec_q);
diff --git a/drivers/gpu/drm/xe/xe_oa_types.h b/drivers/gpu/drm/xe/xe_oa_types.h
index 2628f78c4e8d..daf701b5d48b 100644
--- a/drivers/gpu/drm/xe/xe_oa_types.h
+++ b/drivers/gpu/drm/xe/xe_oa_types.h
@@ -15,6 +15,8 @@
 #include "regs/xe_reg_defs.h"
 #include "xe_hw_engine_types.h"
 
+struct drm_syncobj;
+
 #define DEFAULT_XE_OA_BUFFER_SIZE SZ_16M
 
 enum xe_oa_report_header {
@@ -248,6 +250,12 @@ struct xe_oa_stream {
 	/** @xef: xe_file with which the stream was opened */
 	struct xe_file *xef;
 
+	/** @ufence_syncobj: User fence syncobj */
+	struct drm_syncobj *ufence_syncobj;
+
+	/** @ufence_timeline_value: User fence timeline value */
+	u64 ufence_timeline_value;
+
 	/** @last_fence: fence to use in stream destroy when needed */
 	struct dma_fence *last_fence;
 
diff --git a/drivers/gpu/drm/xe/xe_sync.c b/drivers/gpu/drm/xe/xe_sync.c
index 82872a51f098..d48ab7b32ca5 100644
--- a/drivers/gpu/drm/xe/xe_sync.c
+++ b/drivers/gpu/drm/xe/xe_sync.c
@@ -113,6 +113,8 @@ static void user_fence_cb(struct dma_fence *fence, struct dma_fence_cb *cb)
 int xe_sync_entry_parse(struct xe_device *xe, struct xe_file *xef,
 			struct xe_sync_entry *sync,
 			struct drm_xe_sync __user *sync_user,
+			struct drm_syncobj *ufence_syncobj,
+			u64 ufence_timeline_value,
 			unsigned int flags)
 {
 	struct drm_xe_sync sync_in;
@@ -192,10 +194,15 @@ int xe_sync_entry_parse(struct xe_device *xe, struct xe_file *xef,
 		if (exec) {
 			sync->addr = sync_in.addr;
 		} else {
+			sync->ufence_timeline_value = ufence_timeline_value;
 			sync->ufence = user_fence_create(xe, sync_in.addr,
 							 sync_in.timeline_value);
 			if (XE_IOCTL_DBG(xe, IS_ERR(sync->ufence)))
 				return PTR_ERR(sync->ufence);
+			sync->ufence_chain_fence = dma_fence_chain_alloc();
+			if (!sync->ufence_chain_fence)
+				return -ENOMEM;
+			sync->ufence_syncobj = ufence_syncobj;
 		}
 
 		break;
@@ -239,7 +246,12 @@ void xe_sync_entry_signal(struct xe_sync_entry *sync, struct dma_fence *fence)
 	} else if (sync->ufence) {
 		int err;
 
-		dma_fence_get(fence);
+		drm_syncobj_add_point(sync->ufence_syncobj,
+				      sync->ufence_chain_fence,
+				      fence, sync->ufence_timeline_value);
+		sync->ufence_chain_fence = NULL;
+
+		fence = drm_syncobj_fence_get(sync->ufence_syncobj);
 		user_fence_get(sync->ufence);
 		err = dma_fence_add_callback(fence, &sync->ufence->cb,
 					     user_fence_cb);
@@ -259,7 +271,8 @@ void xe_sync_entry_cleanup(struct xe_sync_entry *sync)
 		drm_syncobj_put(sync->syncobj);
 	dma_fence_put(sync->fence);
 	dma_fence_chain_free(sync->chain_fence);
-	if (sync->ufence)
+	dma_fence_chain_free(sync->ufence_chain_fence);
+	if (!IS_ERR_OR_NULL(sync->ufence))
 		user_fence_put(sync->ufence);
 }
 
diff --git a/drivers/gpu/drm/xe/xe_sync.h b/drivers/gpu/drm/xe/xe_sync.h
index 256ffc1e54dc..51f2d803e977 100644
--- a/drivers/gpu/drm/xe/xe_sync.h
+++ b/drivers/gpu/drm/xe/xe_sync.h
@@ -8,6 +8,7 @@
 
 #include "xe_sync_types.h"
 
+struct drm_syncobj;
 struct xe_device;
 struct xe_exec_queue;
 struct xe_file;
@@ -21,6 +22,8 @@ struct xe_vm;
 int xe_sync_entry_parse(struct xe_device *xe, struct xe_file *xef,
 			struct xe_sync_entry *sync,
 			struct drm_xe_sync __user *sync_user,
+			struct drm_syncobj *ufence_syncobj,
+			u64 ufence_timeline_value,
 			unsigned int flags);
 int xe_sync_entry_add_deps(struct xe_sync_entry *sync,
 			   struct xe_sched_job *job);
diff --git a/drivers/gpu/drm/xe/xe_sync_types.h b/drivers/gpu/drm/xe/xe_sync_types.h
index 30ac3f51993b..b88f1833e28c 100644
--- a/drivers/gpu/drm/xe/xe_sync_types.h
+++ b/drivers/gpu/drm/xe/xe_sync_types.h
@@ -18,9 +18,12 @@ struct xe_sync_entry {
 	struct drm_syncobj *syncobj;
 	struct dma_fence *fence;
 	struct dma_fence_chain *chain_fence;
+	struct dma_fence_chain *ufence_chain_fence;
+	struct drm_syncobj *ufence_syncobj;
 	struct xe_user_fence *ufence;
 	u64 addr;
 	u64 timeline_value;
+	u64 ufence_timeline_value;
 	u32 type;
 	u32 flags;
 };
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 00f3520dec38..6c67ab88a7c0 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -3633,8 +3633,12 @@ int xe_vm_bind_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
 
 	syncs_user = u64_to_user_ptr(args->syncs);
 	for (num_syncs = 0; num_syncs < args->num_syncs; num_syncs++) {
+		struct xe_exec_queue *__q = q ?: vm->q[0];
+
 		err = xe_sync_entry_parse(xe, xef, &syncs[num_syncs],
 					  &syncs_user[num_syncs],
+					  __q->ufence_syncobj,
+					  ++__q->ufence_timeline_value,
 					  (xe_vm_in_lr_mode(vm) ?
 					   SYNC_PARSE_FLAG_LR_MODE : 0) |
 					  (!args->num_binds ?
-- 
2.34.1


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

* [PATCH v7 2/6] drm/xe: Attach last fence to TLB invalidation job queues
  2025-10-31 23:40 [PATCH v7 0/6] Fix serialization on burst of unbinds - v2 Matthew Brost
  2025-10-31 23:40 ` [PATCH v7 1/6] drm/xe: Enforce correct user fence signaling order using Matthew Brost
@ 2025-10-31 23:40 ` Matthew Brost
  2025-10-31 23:40 ` [PATCH v7 3/6] drm/xe: Decouple bind queue last fence from TLB invalidations Matthew Brost
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 12+ messages in thread
From: Matthew Brost @ 2025-10-31 23:40 UTC (permalink / raw)
  To: intel-xe; +Cc: thomas.hellstrom

Add support for attaching the last fence to TLB invalidation job queues
to address serialization issues during bursts of unbind jobs. Ensure
that user fence signaling for a bind job reflects both the bind job
itself and the last fences of all related TLB invalidations. Maintain
submission order based solely on the state of the bind and TLB
invalidation queues.

Introduce support functions for last fence attachment to TLB
invalidation queues.

v3:
 - Fix assert in xe_exec_queue_tlb_inval_last_fence_set (CI)
 - Ensure migrate lock held for migrate queues (Testing)
v5:
 - Style nits (Thomas)
 - Rewrite commit message (Thomas)

Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
 drivers/gpu/drm/xe/xe_exec_queue.c       | 103 ++++++++++++++++++++++-
 drivers/gpu/drm/xe/xe_exec_queue.h       |  21 +++++
 drivers/gpu/drm/xe/xe_exec_queue_types.h |   5 ++
 drivers/gpu/drm/xe/xe_migrate.c          |  14 +++
 drivers/gpu/drm/xe/xe_migrate.h          |   8 ++
 drivers/gpu/drm/xe/xe_vm.c               |   7 +-
 6 files changed, 156 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c
index e3414b337569..aada199faf71 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue.c
+++ b/drivers/gpu/drm/xe/xe_exec_queue.c
@@ -387,6 +387,7 @@ 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;
 
 	xe_assert(gt_to_xe(q->gt), atomic_read(&q->job_cnt) == 0);
 
@@ -397,6 +398,9 @@ void xe_exec_queue_destroy(struct kref *ref)
 		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)
@@ -1014,7 +1018,9 @@ int xe_exec_queue_destroy_ioctl(struct drm_device *dev, void *data,
 static void xe_exec_queue_last_fence_lockdep_assert(struct xe_exec_queue *q,
 						    struct xe_vm *vm)
 {
-	if (q->flags & EXEC_QUEUE_FLAG_VM) {
+	if (q->flags & EXEC_QUEUE_FLAG_MIGRATE) {
+		xe_migrate_job_lock_assert(q);
+	} else if (q->flags & EXEC_QUEUE_FLAG_VM) {
 		lockdep_assert_held(&vm->lock);
 	} else {
 		xe_vm_assert_held(vm);
@@ -1113,6 +1119,7 @@ void xe_exec_queue_last_fence_set(struct xe_exec_queue *q, struct xe_vm *vm,
 				  struct dma_fence *fence)
 {
 	xe_exec_queue_last_fence_lockdep_assert(q, vm);
+	xe_assert(vm->xe, !dma_fence_is_container(fence));
 
 	xe_exec_queue_last_fence_put(q, vm);
 	q->last_fence = dma_fence_get(fence);
@@ -1141,6 +1148,100 @@ 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);
+
+	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));
+	xe_assert(vm->xe, !dma_fence_is_container(fence));
+
+	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..1ba7354b33d1 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,23 @@ 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 9bda1148e17b..771ffe35cd0c 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue_types.h
+++ b/drivers/gpu/drm/xe/xe_exec_queue_types.h
@@ -146,6 +146,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_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
index 56a5804726e9..5003e3c4dd17 100644
--- a/drivers/gpu/drm/xe/xe_migrate.c
+++ b/drivers/gpu/drm/xe/xe_migrate.c
@@ -2333,6 +2333,20 @@ void xe_migrate_job_unlock(struct xe_migrate *m, struct xe_exec_queue *q)
 		xe_vm_assert_held(q->vm);	/* User queues VM's should be locked */
 }
 
+#if IS_ENABLED(CONFIG_PROVE_LOCKING)
+/**
+ * xe_migrate_job_lock_assert() - Assert migrate job lock held of queue
+ * @q: Migrate queue
+ */
+void xe_migrate_job_lock_assert(struct xe_exec_queue *q)
+{
+	struct xe_migrate *m = gt_to_tile(q->gt)->migrate;
+
+	xe_gt_assert(q->gt, q == m->q);
+	lockdep_assert_held(&m->job_mutex);
+}
+#endif
+
 #if IS_ENABLED(CONFIG_DRM_XE_KUNIT_TEST)
 #include "tests/xe_migrate.c"
 #endif
diff --git a/drivers/gpu/drm/xe/xe_migrate.h b/drivers/gpu/drm/xe/xe_migrate.h
index 4fad324b6253..9b5791617f5e 100644
--- a/drivers/gpu/drm/xe/xe_migrate.h
+++ b/drivers/gpu/drm/xe/xe_migrate.h
@@ -152,6 +152,14 @@ xe_migrate_update_pgtables(struct xe_migrate *m,
 
 void xe_migrate_wait(struct xe_migrate *m);
 
+#if IS_ENABLED(CONFIG_PROVE_LOCKING)
+void xe_migrate_job_lock_assert(struct xe_exec_queue *q);
+#else
+static inline void xe_migrate_job_lock_assert(struct xe_exec_queue *q)
+{
+}
+#endif
+
 void xe_migrate_job_lock(struct xe_migrate *m, struct xe_exec_queue *q);
 void xe_migrate_job_unlock(struct xe_migrate *m, struct xe_exec_queue *q);
 
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 6c67ab88a7c0..7343f34757d2 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] 12+ messages in thread

* [PATCH v7 3/6] drm/xe: Decouple bind queue last fence from TLB invalidations
  2025-10-31 23:40 [PATCH v7 0/6] Fix serialization on burst of unbinds - v2 Matthew Brost
  2025-10-31 23:40 ` [PATCH v7 1/6] drm/xe: Enforce correct user fence signaling order using Matthew Brost
  2025-10-31 23:40 ` [PATCH v7 2/6] drm/xe: Attach last fence to TLB invalidation job queues Matthew Brost
@ 2025-10-31 23:40 ` Matthew Brost
  2025-10-31 23:40 ` [PATCH v7 4/6] drm/xe: Skip TLB invalidation waits in page fault binds Matthew Brost
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 12+ messages in thread
From: Matthew Brost @ 2025-10-31 23:40 UTC (permalink / raw)
  To: intel-xe; +Cc: thomas.hellstrom

Separate the bind queue’s last fence to apply exclusively to the bind
job, avoiding unnecessary serialization on prior TLB invalidations.
Preserve correct user fence signaling by merging bind and TLB
invalidation fences later in the pipeline.

v3:
 - Fix lockdep assert for migrate queues (CI)
 - Use individual dma fence contexts for array out fences (Testing)
 - Don't set last fence with arrays (Testing)
 - Move TLB invalid last fence under migrate lock (Testing)
 - Don't set queue last for migrate queues (Testing)

Link: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/6047
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com
---
 drivers/gpu/drm/xe/xe_pt.c            | 73 ++++++++++---------------
 drivers/gpu/drm/xe/xe_sync.c          | 63 +++++++++++++++++-----
 drivers/gpu/drm/xe/xe_tlb_inval_job.c | 31 ++++++++---
 drivers/gpu/drm/xe/xe_tlb_inval_job.h |  5 +-
 drivers/gpu/drm/xe/xe_vm.c            | 76 ++++++++++++++-------------
 drivers/gpu/drm/xe/xe_vm_types.h      |  5 --
 6 files changed, 143 insertions(+), 110 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_pt.c b/drivers/gpu/drm/xe/xe_pt.c
index 7c5bca78c8bf..8ef9bfcbd997 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,15 +2387,14 @@ 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);
 
 		ijob = xe_tlb_inval_job_create(q, &tile->primary_gt->tlb_inval,
-					       dep_scheduler,
+					       dep_scheduler, vm,
 					       pt_update_ops->start,
 					       pt_update_ops->last,
-					       vm->usm.asid);
+					       XE_EXEC_QUEUE_TLB_INVAL_PRIMARY_GT);
 		if (IS_ERR(ijob)) {
 			err = PTR_ERR(ijob);
 			goto kill_vm_tile1;
@@ -2410,26 +2406,15 @@ xe_pt_update_ops_run(struct xe_tile *tile, struct xe_vma_ops *vops)
 
 			mjob = xe_tlb_inval_job_create(q,
 						       &tile->media_gt->tlb_inval,
-						       dep_scheduler,
+						       dep_scheduler, vm,
 						       pt_update_ops->start,
 						       pt_update_ops->last,
-						       vm->usm.asid);
+						       XE_EXEC_QUEUE_TLB_INVAL_MEDIA_GT);
 			if (IS_ERR(mjob)) {
 				err = PTR_ERR(mjob);
 				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)
+		mfence = xe_tlb_inval_job_push(mjob, tile->migrate, fence);
 
-		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;
-		}
-
-		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,23 @@ 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);
 
+	/*
+	 * The last fence is only used for zero bind queue idling; migrate
+	 * queues are not exposed to user space.
+	 */
+	if (!(q->flags & EXEC_QUEUE_FLAG_MIGRATE))
+		xe_exec_queue_last_fence_set(q, vm, fence);
+
 	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 d48ab7b32ca5..df7ca349398b 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"
@@ -297,26 +297,67 @@ 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,
+						    dma_fence_context_alloc(1),
+						    1, false);
+			if (!cf)
+				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) {
@@ -326,14 +367,10 @@ 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,
-				    vm->composite_fence_ctx,
-				    vm->composite_fence_seqno++,
-				    false);
-	if (!cf) {
-		--vm->composite_fence_seqno;
+	cf = dma_fence_array_create(num_fence, fences,
+				    dma_fence_context_alloc(1), 1, false);
+	if (!cf)
 		goto err_out;
-	}
 
 	return &cf->base;
 
diff --git a/drivers/gpu/drm/xe/xe_tlb_inval_job.c b/drivers/gpu/drm/xe/xe_tlb_inval_job.c
index 492def04a559..1ae0dec2cf31 100644
--- a/drivers/gpu/drm/xe/xe_tlb_inval_job.c
+++ b/drivers/gpu/drm/xe/xe_tlb_inval_job.c
@@ -12,6 +12,7 @@
 #include "xe_tlb_inval_job.h"
 #include "xe_migrate.h"
 #include "xe_pm.h"
+#include "xe_vm.h"
 
 /** struct xe_tlb_inval_job - TLB invalidation job */
 struct xe_tlb_inval_job {
@@ -21,6 +22,8 @@ struct xe_tlb_inval_job {
 	struct xe_tlb_inval *tlb_inval;
 	/** @q: exec queue issuing the invalidate */
 	struct xe_exec_queue *q;
+	/** @vm: VM which TLB invalidation is being issued for */
+	struct xe_vm *vm;
 	/** @refcount: ref count of this job */
 	struct kref refcount;
 	/**
@@ -32,8 +35,8 @@ struct xe_tlb_inval_job {
 	u64 start;
 	/** @end: End address to invalidate */
 	u64 end;
-	/** @asid: Address space ID to invalidate */
-	u32 asid;
+	/** @type: GT type */
+	int type;
 	/** @fence_armed: Fence has been armed */
 	bool fence_armed;
 };
@@ -46,7 +49,7 @@ static struct dma_fence *xe_tlb_inval_job_run(struct xe_dep_job *dep_job)
 		container_of(job->fence, typeof(*ifence), base);
 
 	xe_tlb_inval_range(job->tlb_inval, ifence, job->start,
-			   job->end, job->asid);
+			   job->end, job->vm->usm.asid);
 
 	return job->fence;
 }
@@ -70,9 +73,10 @@ static const struct xe_dep_job_ops dep_job_ops = {
  * @q: exec queue issuing the invalidate
  * @tlb_inval: TLB invalidation client
  * @dep_scheduler: Dependency scheduler for job
+ * @vm: VM which TLB invalidation is being issued for
  * @start: Start address to invalidate
  * @end: End address to invalidate
- * @asid: Address space ID to invalidate
+ * @type: GT type
  *
  * Create a TLB invalidation job and initialize internal fields. The caller is
  * responsible for releasing the creation reference.
@@ -81,8 +85,8 @@ static const struct xe_dep_job_ops dep_job_ops = {
  */
 struct xe_tlb_inval_job *
 xe_tlb_inval_job_create(struct xe_exec_queue *q, struct xe_tlb_inval *tlb_inval,
-			struct xe_dep_scheduler *dep_scheduler, u64 start,
-			u64 end, u32 asid)
+			struct xe_dep_scheduler *dep_scheduler,
+			struct xe_vm *vm, u64 start, u64 end, int type)
 {
 	struct xe_tlb_inval_job *job;
 	struct drm_sched_entity *entity =
@@ -90,19 +94,24 @@ xe_tlb_inval_job_create(struct xe_exec_queue *q, struct xe_tlb_inval *tlb_inval,
 	struct xe_tlb_inval_fence *ifence;
 	int err;
 
+	xe_assert(vm->xe, type == XE_EXEC_QUEUE_TLB_INVAL_MEDIA_GT ||
+		  type == XE_EXEC_QUEUE_TLB_INVAL_PRIMARY_GT);
+
 	job = kmalloc(sizeof(*job), GFP_KERNEL);
 	if (!job)
 		return ERR_PTR(-ENOMEM);
 
 	job->q = q;
+	job->vm = vm;
 	job->tlb_inval = tlb_inval;
 	job->start = start;
 	job->end = end;
-	job->asid = asid;
 	job->fence_armed = false;
 	job->dep.ops = &dep_job_ops;
+	job->type = type;
 	kref_init(&job->refcount);
 	xe_exec_queue_get(q);	/* Pairs with put in xe_tlb_inval_job_destroy */
+	xe_vm_get(vm);		/* Pairs with put in xe_tlb_inval_job_destroy */
 
 	ifence = kmalloc(sizeof(*ifence), GFP_KERNEL);
 	if (!ifence) {
@@ -124,6 +133,7 @@ xe_tlb_inval_job_create(struct xe_exec_queue *q, struct xe_tlb_inval *tlb_inval,
 err_fence:
 	kfree(ifence);
 err_job:
+	xe_vm_put(vm);
 	xe_exec_queue_put(q);
 	kfree(job);
 
@@ -138,6 +148,7 @@ static void xe_tlb_inval_job_destroy(struct kref *ref)
 		container_of(job->fence, typeof(*ifence), base);
 	struct xe_exec_queue *q = job->q;
 	struct xe_device *xe = gt_to_xe(q->gt);
+	struct xe_vm *vm = job->vm;
 
 	if (!job->fence_armed)
 		kfree(ifence);
@@ -147,6 +158,7 @@ static void xe_tlb_inval_job_destroy(struct kref *ref)
 
 	drm_sched_job_cleanup(&job->dep.drm);
 	kfree(job);
+	xe_vm_put(vm);		/* Pairs with get from xe_tlb_inval_job_create */
 	xe_exec_queue_put(q);	/* Pairs with get from xe_tlb_inval_job_create */
 	xe_pm_runtime_put(xe);	/* Pairs with get from xe_tlb_inval_job_create */
 }
@@ -231,6 +243,11 @@ struct dma_fence *xe_tlb_inval_job_push(struct xe_tlb_inval_job *job,
 	dma_fence_get(&job->dep.drm.s_fence->finished);
 	drm_sched_entity_push_job(&job->dep.drm);
 
+	/* Let the upper layers fish this out */
+	xe_exec_queue_tlb_inval_last_fence_set(job->q, job->vm,
+					       &job->dep.drm.s_fence->finished,
+					       job->type);
+
 	xe_migrate_job_unlock(m, job->q);
 
 	/*
diff --git a/drivers/gpu/drm/xe/xe_tlb_inval_job.h b/drivers/gpu/drm/xe/xe_tlb_inval_job.h
index e63edcb26b50..4d6df1a6c6ca 100644
--- a/drivers/gpu/drm/xe/xe_tlb_inval_job.h
+++ b/drivers/gpu/drm/xe/xe_tlb_inval_job.h
@@ -11,14 +11,15 @@
 struct dma_fence;
 struct xe_dep_scheduler;
 struct xe_exec_queue;
+struct xe_migrate;
 struct xe_tlb_inval;
 struct xe_tlb_inval_job;
-struct xe_migrate;
+struct xe_vm;
 
 struct xe_tlb_inval_job *
 xe_tlb_inval_job_create(struct xe_exec_queue *q, struct xe_tlb_inval *tlb_inval,
 			struct xe_dep_scheduler *dep_scheduler,
-			u64 start, u64 end, u32 asid);
+			struct xe_vm *vm, u64 start, u64 end, int type);
 
 int xe_tlb_inval_job_alloc_dep(struct xe_tlb_inval_job *job);
 
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 7343f34757d2..45cbe5f05107 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -1623,9 +1623,6 @@ struct xe_vm *xe_vm_create(struct xe_device *xe, u32 flags, struct xe_file *xef)
 		}
 	}
 
-	if (number_tiles > 1)
-		vm->composite_fence_ctx = dma_fence_context_alloc(1);
-
 	if (xef && xe->info.has_asid) {
 		u32 asid;
 
@@ -3107,20 +3104,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 +3140,30 @@ 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();
+		xe_migrate_job_lock(tile->migrate, q);
+		for_each_tlb_inval(i)
+			fences[current_fence++] =
+				xe_exec_queue_tlb_inval_last_fence_get(q, vm, i);
+		xe_migrate_job_unlock(tile->migrate, q);
 	}
 
-	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, dma_fence_context_alloc(1),
+			     1, false);
+	fence = &cf->base;
 
 	for_each_tile(tile, vm->xe, id) {
 		if (!vops->pt_update_ops[id].num_ops)
@@ -3220,7 +3224,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 +3244,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);
 	}
 }
 
@@ -3435,19 +3437,19 @@ static int vm_bind_ioctl_signal_fences(struct xe_vm *vm,
 				       struct xe_sync_entry *syncs,
 				       int num_syncs)
 {
-	struct dma_fence *fence;
+	struct dma_fence *fence = NULL;
 	int i, err = 0;
 
-	fence = xe_sync_in_fence_get(syncs, num_syncs,
-				     to_wait_exec_queue(vm, q), vm);
-	if (IS_ERR(fence))
-		return PTR_ERR(fence);
+	if (num_syncs) {
+		fence = xe_sync_in_fence_get(syncs, num_syncs,
+					     to_wait_exec_queue(vm, q), vm);
+		if (IS_ERR(fence))
+			return PTR_ERR(fence);
 
-	for (i = 0; i < num_syncs; i++)
-		xe_sync_entry_signal(&syncs[i], fence);
+		for (i = 0; i < num_syncs; i++)
+			xe_sync_entry_signal(&syncs[i], fence);
+	}
 
-	xe_exec_queue_last_fence_set(to_wait_exec_queue(vm, q), vm,
-				     fence);
 	dma_fence_put(fence);
 
 	return err;
diff --git a/drivers/gpu/drm/xe/xe_vm_types.h b/drivers/gpu/drm/xe/xe_vm_types.h
index 830ed7b05c27..9043bc4a381c 100644
--- a/drivers/gpu/drm/xe/xe_vm_types.h
+++ b/drivers/gpu/drm/xe/xe_vm_types.h
@@ -221,11 +221,6 @@ struct xe_vm {
 #define XE_VM_FLAG_GSC			BIT(8)
 	unsigned long flags;
 
-	/** @composite_fence_ctx: context composite fence */
-	u64 composite_fence_ctx;
-	/** @composite_fence_seqno: seqno for composite fence */
-	u32 composite_fence_seqno;
-
 	/**
 	 * @lock: outer most lock, protects objects of anything attached to this
 	 * VM
-- 
2.34.1


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

* [PATCH v7 4/6] drm/xe: Skip TLB invalidation waits in page fault binds
  2025-10-31 23:40 [PATCH v7 0/6] Fix serialization on burst of unbinds - v2 Matthew Brost
                   ` (2 preceding siblings ...)
  2025-10-31 23:40 ` [PATCH v7 3/6] drm/xe: Decouple bind queue last fence from TLB invalidations Matthew Brost
@ 2025-10-31 23:40 ` Matthew Brost
  2025-10-31 23:40 ` [PATCH v7 5/6] drm/xe: Disallow input fences on zero batch execs and zero binds Matthew Brost
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 12+ messages in thread
From: Matthew Brost @ 2025-10-31 23:40 UTC (permalink / raw)
  To: intel-xe; +Cc: thomas.hellstrom

Avoid waiting on unrelated TLB invalidations when servicing page fault
binds. Since the migrate queue is shared across processes, TLB
invalidations triggered by other processes may occur concurrently but
are not relevant to the current bind. Teach the bind pipeline to skip
waits on such invalidations to prevent unnecessary serialization.

Signed-off-by: Matthew Brost <matthew.brost@intel.com>
---
 drivers/gpu/drm/xe/xe_vm.c       | 14 ++++++++++++--
 drivers/gpu/drm/xe/xe_vm_types.h |  1 +
 2 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 45cbe5f05107..2b5d25f4dd53 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -755,6 +755,7 @@ struct dma_fence *xe_vma_rebind(struct xe_vm *vm, struct xe_vma *vma, u8 tile_ma
 	xe_assert(vm->xe, xe_vm_in_fault_mode(vm));
 
 	xe_vma_ops_init(&vops, vm, NULL, NULL, 0);
+	vops.flags |= XE_VMA_OPS_FLAG_SKIP_TLB_WAIT;
 	for_each_tile(tile, vm->xe, id) {
 		vops.pt_update_ops[id].wait_vm_bookkeep = true;
 		vops.pt_update_ops[tile->id].q =
@@ -845,6 +846,7 @@ struct dma_fence *xe_vm_range_rebind(struct xe_vm *vm,
 	xe_assert(vm->xe, xe_vma_is_cpu_addr_mirror(vma));
 
 	xe_vma_ops_init(&vops, vm, NULL, NULL, 0);
+	vops.flags |= XE_VMA_OPS_FLAG_SKIP_TLB_WAIT;
 	for_each_tile(tile, vm->xe, id) {
 		vops.pt_update_ops[id].wait_vm_bookkeep = true;
 		vops.pt_update_ops[tile->id].q =
@@ -3111,8 +3113,13 @@ static struct dma_fence *ops_execute(struct xe_vm *vm,
 	if (number_tiles == 0)
 		return ERR_PTR(-ENODATA);
 
-	for_each_tile(tile, vm->xe, id)
-		n_fence += (1 + XE_MAX_GT_PER_TILE);
+	if (vops->flags & XE_VMA_OPS_FLAG_SKIP_TLB_WAIT) {
+		for_each_tile(tile, vm->xe, id)
+			++n_fence;
+	} else {
+		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) {
@@ -3153,6 +3160,9 @@ static struct dma_fence *ops_execute(struct xe_vm *vm,
 
 collect_fences:
 		fences[current_fence++] = fence ?: dma_fence_get_stub();
+		if (vops->flags & XE_VMA_OPS_FLAG_SKIP_TLB_WAIT)
+			continue;
+
 		xe_migrate_job_lock(tile->migrate, q);
 		for_each_tlb_inval(i)
 			fences[current_fence++] =
diff --git a/drivers/gpu/drm/xe/xe_vm_types.h b/drivers/gpu/drm/xe/xe_vm_types.h
index 9043bc4a381c..ccd6cc090309 100644
--- a/drivers/gpu/drm/xe/xe_vm_types.h
+++ b/drivers/gpu/drm/xe/xe_vm_types.h
@@ -466,6 +466,7 @@ struct xe_vma_ops {
 #define XE_VMA_OPS_FLAG_HAS_SVM_PREFETCH BIT(0)
 #define XE_VMA_OPS_FLAG_MADVISE          BIT(1)
 #define XE_VMA_OPS_ARRAY_OF_BINDS	 BIT(2)
+#define XE_VMA_OPS_FLAG_SKIP_TLB_WAIT	 BIT(3)
 	u32 flags;
 #ifdef TEST_VM_OPS_ERROR
 	/** @inject_error: inject error to test error handling */
-- 
2.34.1


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

* [PATCH v7 5/6] drm/xe: Disallow input fences on zero batch execs and zero binds
  2025-10-31 23:40 [PATCH v7 0/6] Fix serialization on burst of unbinds - v2 Matthew Brost
                   ` (3 preceding siblings ...)
  2025-10-31 23:40 ` [PATCH v7 4/6] drm/xe: Skip TLB invalidation waits in page fault binds Matthew Brost
@ 2025-10-31 23:40 ` Matthew Brost
  2025-10-31 23:40 ` [PATCH v7 6/6] drm/xe: Remove last fence dependency check from binds and execs Matthew Brost
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 12+ messages in thread
From: Matthew Brost @ 2025-10-31 23:40 UTC (permalink / raw)
  To: intel-xe; +Cc: thomas.hellstrom

Prevent input fences from being installed on zero batch execs or zero
binds, which were originally added to support queue idling in Mesa via
output fences. Although input fence support was introduced for interface
consistency, it leads to incorrect behavior due to chained composite
fences, which are disallowed.

Avoid the complexity of fixing this by removing support, as input fences
for these cases are not used in practice.

Signed-off-by: Matthew Brost <matthew.brost@intel.com>
---
 drivers/gpu/drm/xe/xe_sync.c | 101 +++++++++++++----------------------
 1 file changed, 36 insertions(+), 65 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_sync.c b/drivers/gpu/drm/xe/xe_sync.c
index df7ca349398b..ff74528ca0c6 100644
--- a/drivers/gpu/drm/xe/xe_sync.c
+++ b/drivers/gpu/drm/xe/xe_sync.c
@@ -301,84 +301,55 @@ xe_sync_in_fence_get(struct xe_sync_entry *sync, int num_sync,
 
 	lockdep_assert_held(&vm->lock);
 
-	/* Count in-fences */
-	for (i = 0; i < num_sync; ++i) {
-		if (sync[i].fence) {
-			++num_fence;
-			fence = sync[i].fence;
-		}
-	}
-
-	/* Easy case... */
-	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);
-
+	/* Reject in fences */
+	for (i = 0; i < num_sync; ++i)
+		if (sync[i].fence)
+			return ERR_PTR(-EOPNOTSUPP);
+
+	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);
+				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,
-						    dma_fence_context_alloc(1),
-						    1, false);
-			if (!cf)
-				goto err_out;
-
-			return &cf->base;
+					xe_exec_queue_tlb_inval_last_fence_get(__q, vm, i);
 		}
 
-		fence = xe_exec_queue_last_fence_get(q, vm);
-		return fence;
-	}
+		xe_assert(vm->xe, current_fence == num_fence);
+		cf = dma_fence_array_create(num_fence, fences,
+					    dma_fence_context_alloc(1),
+					    1, false);
+		if (!cf)
+			goto err_out;
 
-	/*
-	 * 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) {
-		if (sync[i].fence) {
-			dma_fence_get(sync[i].fence);
-			fences[current_fence++] = sync[i].fence;
-		}
+		return &cf->base;
 	}
-	fences[current_fence++] = xe_exec_queue_last_fence_get(q, vm);
-	cf = dma_fence_array_create(num_fence, fences,
-				    dma_fence_context_alloc(1), 1, false);
-	if (!cf)
-		goto err_out;
 
-	return &cf->base;
+	fence = xe_exec_queue_last_fence_get(q, vm);
+	return fence;
 
 err_out:
 	while (current_fence)
 		dma_fence_put(fences[--current_fence]);
 	kfree(fences);
-	kfree(cf);
 
 	return ERR_PTR(-ENOMEM);
 }
-- 
2.34.1


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

* [PATCH v7 6/6] drm/xe: Remove last fence dependency check from binds and execs
  2025-10-31 23:40 [PATCH v7 0/6] Fix serialization on burst of unbinds - v2 Matthew Brost
                   ` (4 preceding siblings ...)
  2025-10-31 23:40 ` [PATCH v7 5/6] drm/xe: Disallow input fences on zero batch execs and zero binds Matthew Brost
@ 2025-10-31 23:40 ` Matthew Brost
  2025-11-01  2:49 ` ✗ CI.checkpatch: warning for Fix serialization on burst of unbinds - v2 Patchwork
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 12+ messages in thread
From: Matthew Brost @ 2025-10-31 23:40 UTC (permalink / raw)
  To: intel-xe; +Cc: thomas.hellstrom

Eliminate redundant last fence dependency checks in exec and bind jobs,
as they are now equivalent to xe_exec_queue_is_idle. Simplify the code
by removing this dead logic.

Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
---
 drivers/gpu/drm/xe/xe_exec.c       |  4 ----
 drivers/gpu/drm/xe/xe_exec_queue.c | 23 -----------------------
 drivers/gpu/drm/xe/xe_exec_queue.h |  2 --
 drivers/gpu/drm/xe/xe_pt.c         |  7 -------
 drivers/gpu/drm/xe/xe_sched_job.c  | 17 -----------------
 drivers/gpu/drm/xe/xe_sched_job.h  |  1 -
 6 files changed, 54 deletions(-)

diff --git a/drivers/gpu/drm/xe/xe_exec.c b/drivers/gpu/drm/xe/xe_exec.c
index bf71a2fe5351..4d81210e41f5 100644
--- a/drivers/gpu/drm/xe/xe_exec.c
+++ b/drivers/gpu/drm/xe/xe_exec.c
@@ -302,10 +302,6 @@ int xe_exec_ioctl(struct drm_device *dev, void *data, struct drm_file *file)
 		goto err_put_job;
 
 	if (!xe_vm_in_lr_mode(vm)) {
-		err = xe_sched_job_last_fence_add_dep(job, vm);
-		if (err)
-			goto err_put_job;
-
 		err = xe_svm_notifier_lock_interruptible(vm);
 		if (err)
 			goto err_put_job;
diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c
index aada199faf71..8724f8de67e2 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue.c
+++ b/drivers/gpu/drm/xe/xe_exec_queue.c
@@ -1125,29 +1125,6 @@ void xe_exec_queue_last_fence_set(struct xe_exec_queue *q, struct xe_vm *vm,
 	q->last_fence = dma_fence_get(fence);
 }
 
-/**
- * xe_exec_queue_last_fence_test_dep - Test last fence dependency of queue
- * @q: The exec queue
- * @vm: The VM the engine does a bind or exec for
- *
- * Returns:
- * -ETIME if there exists an unsignalled last fence dependency, zero otherwise.
- */
-int xe_exec_queue_last_fence_test_dep(struct xe_exec_queue *q, struct xe_vm *vm)
-{
-	struct dma_fence *fence;
-	int err = 0;
-
-	fence = xe_exec_queue_last_fence_get(q, vm);
-	if (fence) {
-		err = test_bit(DMA_FENCE_FLAG_SIGNALED_BIT, &fence->flags) ?
-			0 : -ETIME;
-		dma_fence_put(fence);
-	}
-
-	return err;
-}
-
 /**
  * xe_exec_queue_tlb_inval_last_fence_put() - Drop ref to last TLB invalidation fence
  * @q: The exec queue
diff --git a/drivers/gpu/drm/xe/xe_exec_queue.h b/drivers/gpu/drm/xe/xe_exec_queue.h
index 1ba7354b33d1..fda4d4f9bda8 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue.h
+++ b/drivers/gpu/drm/xe/xe_exec_queue.h
@@ -88,8 +88,6 @@ struct dma_fence *xe_exec_queue_last_fence_get_for_resume(struct xe_exec_queue *
 							  struct xe_vm *vm);
 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,
diff --git a/drivers/gpu/drm/xe/xe_pt.c b/drivers/gpu/drm/xe/xe_pt.c
index 8ef9bfcbd997..884127b4d97d 100644
--- a/drivers/gpu/drm/xe/xe_pt.c
+++ b/drivers/gpu/drm/xe/xe_pt.c
@@ -1338,13 +1338,6 @@ static int xe_pt_vm_dependencies(struct xe_sched_job *job,
 			return err;
 	}
 
-	if (!(pt_update_ops->q->flags & EXEC_QUEUE_FLAG_KERNEL)) {
-		if (job)
-			err = xe_sched_job_last_fence_add_dep(job, vm);
-		else
-			err = xe_exec_queue_last_fence_test_dep(pt_update_ops->q, vm);
-	}
-
 	for (i = 0; job && !err && i < vops->num_syncs; i++)
 		err = xe_sync_entry_add_deps(&vops->syncs[i], job);
 
diff --git a/drivers/gpu/drm/xe/xe_sched_job.c b/drivers/gpu/drm/xe/xe_sched_job.c
index f1ba9c19e218..cb674a322113 100644
--- a/drivers/gpu/drm/xe/xe_sched_job.c
+++ b/drivers/gpu/drm/xe/xe_sched_job.c
@@ -297,23 +297,6 @@ void xe_sched_job_push(struct xe_sched_job *job)
 	xe_sched_job_put(job);
 }
 
-/**
- * xe_sched_job_last_fence_add_dep - Add last fence dependency to job
- * @job:job to add the last fence dependency to
- * @vm: virtual memory job belongs to
- *
- * Returns:
- * 0 on success, or an error on failing to expand the array.
- */
-int xe_sched_job_last_fence_add_dep(struct xe_sched_job *job, struct xe_vm *vm)
-{
-	struct dma_fence *fence;
-
-	fence = xe_exec_queue_last_fence_get(job->q, vm);
-
-	return drm_sched_job_add_dependency(&job->drm, fence);
-}
-
 /**
  * xe_sched_job_init_user_fence - Initialize user_fence for the job
  * @job: job whose user_fence needs an init
diff --git a/drivers/gpu/drm/xe/xe_sched_job.h b/drivers/gpu/drm/xe/xe_sched_job.h
index b467131b6d5f..1c1cb44216c3 100644
--- a/drivers/gpu/drm/xe/xe_sched_job.h
+++ b/drivers/gpu/drm/xe/xe_sched_job.h
@@ -58,7 +58,6 @@ bool xe_sched_job_completed(struct xe_sched_job *job);
 void xe_sched_job_arm(struct xe_sched_job *job);
 void xe_sched_job_push(struct xe_sched_job *job);
 
-int xe_sched_job_last_fence_add_dep(struct xe_sched_job *job, struct xe_vm *vm);
 void xe_sched_job_init_user_fence(struct xe_sched_job *job,
 				  struct xe_sync_entry *sync);
 
-- 
2.34.1


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

* ✗ CI.checkpatch: warning for Fix serialization on burst of unbinds - v2
  2025-10-31 23:40 [PATCH v7 0/6] Fix serialization on burst of unbinds - v2 Matthew Brost
                   ` (5 preceding siblings ...)
  2025-10-31 23:40 ` [PATCH v7 6/6] drm/xe: Remove last fence dependency check from binds and execs Matthew Brost
@ 2025-11-01  2:49 ` Patchwork
  2025-11-01  2:50 ` ✓ CI.KUnit: success " Patchwork
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-11-01  2:49 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/156873/
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 09aba60f15aa9dbbba0b74b2fdcc6f19a65630e7
Author: Matthew Brost <matthew.brost@intel.com>
Date:   Fri Oct 31 16:40:50 2025 -0700

    drm/xe: Remove last fence dependency check from binds and execs
    
    Eliminate redundant last fence dependency checks in exec and bind jobs,
    as they are now equivalent to xe_exec_queue_is_idle. Simplify the code
    by removing this dead logic.
    
    Signed-off-by: Matthew Brost <matthew.brost@intel.com>
    Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
+ /mt/dim checkpatch 089e83683d58db86cc4c69d34fba3a96904e40e1 drm-intel
ea27a5b34ab2 drm/xe: Enforce correct user fence signaling order using
-:19: WARNING:BAD_SIGN_OFF: Non-standard signature: 'Signed-of-by:' - perhaps 'Signed-off-by:'?
#19: 
Signed-of-by: Matthew Brost <matthew.brost@intel.com>

-:360: ERROR:MISSING_SIGN_OFF: Missing Signed-off-by: line(s)

total: 1 errors, 1 warnings, 0 checks, 278 lines checked
c646042f8dae drm/xe: Attach last fence to TLB invalidation job queues
-:179: CHECK:MACRO_ARG_REUSE: Macro argument reuse '__i' - possible side-effects?
#179: 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, 225 lines checked
6d0cacf8631a drm/xe: Decouple bind queue last fence from TLB invalidations
-:23: ERROR:BAD_SIGN_OFF: Unrecognized email address: 'Thomas Hellström <thomas.hellstrom@linux.intel.com'
#23: 
Reviewed-by: Thomas Hellström <thomas.hellstrom@linux.intel.com

total: 1 errors, 0 warnings, 0 checks, 505 lines checked
3777c63f725f drm/xe: Skip TLB invalidation waits in page fault binds
2c0be0cd36fd drm/xe: Disallow input fences on zero batch execs and zero binds
09aba60f15aa drm/xe: Remove last fence dependency check from binds and execs



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

* ✓ CI.KUnit: success for Fix serialization on burst of unbinds - v2
  2025-10-31 23:40 [PATCH v7 0/6] Fix serialization on burst of unbinds - v2 Matthew Brost
                   ` (6 preceding siblings ...)
  2025-11-01  2:49 ` ✗ CI.checkpatch: warning for Fix serialization on burst of unbinds - v2 Patchwork
@ 2025-11-01  2:50 ` Patchwork
  2025-11-01  3:38 ` ✗ Xe.CI.BAT: failure " Patchwork
  2025-11-01 22:55 ` ✓ Xe.CI.Full: success " Patchwork
  9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-11-01  2:50 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/156873/
State : success

== Summary ==

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

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

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

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



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

* ✗ Xe.CI.BAT: failure for Fix serialization on burst of unbinds - v2
  2025-10-31 23:40 [PATCH v7 0/6] Fix serialization on burst of unbinds - v2 Matthew Brost
                   ` (7 preceding siblings ...)
  2025-11-01  2:50 ` ✓ CI.KUnit: success " Patchwork
@ 2025-11-01  3:38 ` Patchwork
  2025-11-03 21:46   ` Matthew Brost
  2025-11-01 22:55 ` ✓ Xe.CI.Full: success " Patchwork
  9 siblings, 1 reply; 12+ messages in thread
From: Patchwork @ 2025-11-01  3:38 UTC (permalink / raw)
  To: Matthew Brost; +Cc: intel-xe

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

== Series Details ==

Series: Fix serialization on burst of unbinds - v2
URL   : https://patchwork.freedesktop.org/series/156873/
State : failure

== Summary ==

CI Bug Log - changes from xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1_BAT -> xe-pw-156873v1_BAT
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with xe-pw-156873v1_BAT absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in xe-pw-156873v1_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 (12 -> 12)
------------------------------

  No changes in participating hosts

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in xe-pw-156873v1_BAT:

### IGT changes ###

#### Possible regressions ####

  * igt@xe_waitfence@reltime:
    - bat-dg2-oem2:       [PASS][1] -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/bat-dg2-oem2/igt@xe_waitfence@reltime.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/bat-dg2-oem2/igt@xe_waitfence@reltime.html

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

  Here are the changes found in xe-pw-156873v1_BAT that come from known issues:

### IGT changes ###

#### Possible fixes ####

  * igt@kms_flip@basic-plain-flip@d-edp1:
    - bat-adlp-7:         [DMESG-WARN][3] ([Intel XE#4543]) -> [PASS][4] +1 other test pass
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html

  
  [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543


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

  * Linux: xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1 -> xe-pw-156873v1

  IGT_8605: 8605
  xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1: 089e83683d58db86cc4c69d34fba3a96904e40e1
  xe-pw-156873v1: 156873v1

== Logs ==

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

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

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

* ✓ Xe.CI.Full: success for Fix serialization on burst of unbinds - v2
  2025-10-31 23:40 [PATCH v7 0/6] Fix serialization on burst of unbinds - v2 Matthew Brost
                   ` (8 preceding siblings ...)
  2025-11-01  3:38 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2025-11-01 22:55 ` Patchwork
  9 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2025-11-01 22:55 UTC (permalink / raw)
  To: Matthew Brost; +Cc: intel-xe

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

== Series Details ==

Series: Fix serialization on burst of unbinds - v2
URL   : https://patchwork.freedesktop.org/series/156873/
State : success

== Summary ==

CI Bug Log - changes from xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1_FULL -> xe-pw-156873v1_FULL
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

Participating hosts (4 -> 4)
------------------------------

  No changes in participating hosts

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

  Here are the changes found in xe-pw-156873v1_FULL that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
    - shard-lnl:          [PASS][1] -> [FAIL][2] ([Intel XE#1231])
   [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
   [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
    - shard-bmg:          NOTRUN -> [SKIP][3] ([Intel XE#1124]) +1 other test skip
   [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
    - shard-dg2-set2:     NOTRUN -> [SKIP][4] ([Intel XE#1124])
   [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-434/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html

  * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
    - shard-bmg:          [PASS][5] -> [SKIP][6] ([Intel XE#2314] / [Intel XE#2894])
   [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
   [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html

  * igt@kms_bw@linear-tiling-3-displays-1920x1080p:
    - shard-bmg:          NOTRUN -> [SKIP][7] ([Intel XE#367])
   [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html

  * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
    - shard-bmg:          NOTRUN -> [SKIP][8] ([Intel XE#2887]) +2 other tests skip
   [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
    - shard-bmg:          NOTRUN -> [INCOMPLETE][9] ([Intel XE#3862]) +1 other test incomplete
   [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][10] ([Intel XE#787]) +6 other tests skip
   [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-dp-4.html

  * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-d-dp-4:
    - shard-dg2-set2:     NOTRUN -> [SKIP][11] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
   [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-d-dp-4.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [PASS][12] -> [DMESG-WARN][13] ([Intel XE#1727] / [Intel XE#3113])
   [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
   [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
    - shard-bmg:          NOTRUN -> [SKIP][14] ([Intel XE#2652] / [Intel XE#787]) +16 other tests skip
   [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html

  * igt@kms_chamelium_hpd@dp-hpd:
    - shard-bmg:          NOTRUN -> [SKIP][15] ([Intel XE#2252]) +1 other test skip
   [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd.html

  * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
    - shard-dg2-set2:     NOTRUN -> [SKIP][16] ([Intel XE#373]) +1 other test skip
   [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-434/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html

  * igt@kms_content_protection@legacy:
    - shard-dg2-set2:     NOTRUN -> [FAIL][17] ([Intel XE#1178]) +1 other test fail
   [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-434/igt@kms_content_protection@legacy.html

  * igt@kms_cursor_crc@cursor-onscreen-64x21:
    - shard-bmg:          NOTRUN -> [SKIP][18] ([Intel XE#2320]) +2 other tests skip
   [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-64x21.html

  * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
    - shard-bmg:          [PASS][19] -> [SKIP][20] ([Intel XE#2291]) +3 other tests skip
   [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
   [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
    - shard-bmg:          NOTRUN -> [SKIP][21] ([Intel XE#1340])
   [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html

  * igt@kms_dsc@dsc-with-output-formats-with-bpc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][22] ([Intel XE#455])
   [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-434/igt@kms_dsc@dsc-with-output-formats-with-bpc.html

  * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
    - shard-bmg:          NOTRUN -> [SKIP][23] ([Intel XE#4422])
   [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html

  * igt@kms_flip@2x-flip-vs-dpms-on-nop:
    - shard-bmg:          [PASS][24] -> [SKIP][25] ([Intel XE#2316]) +11 other tests skip
   [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
   [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html

  * igt@kms_flip@plain-flip-interruptible@d-hdmi-a1:
    - shard-adlp:         [PASS][26] -> [DMESG-WARN][27] ([Intel XE#4543]) +2 other tests dmesg-warn
   [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-adlp-9/igt@kms_flip@plain-flip-interruptible@d-hdmi-a1.html
   [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-adlp-3/igt@kms_flip@plain-flip-interruptible@d-hdmi-a1.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
    - shard-bmg:          NOTRUN -> [SKIP][28] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
   [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:
    - shard-bmg:          NOTRUN -> [SKIP][29] ([Intel XE#2293]) +1 other test skip
   [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-x:
    - shard-adlp:         [PASS][30] -> [DMESG-FAIL][31] ([Intel XE#4543]) +1 other test dmesg-fail
   [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-x.html
   [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-y-to-x.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-x:
    - shard-adlp:         [PASS][32] -> [FAIL][33] ([Intel XE#1874])
   [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-x.html
   [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-x.html

  * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt:
    - shard-dg2-set2:     NOTRUN -> [SKIP][34] ([Intel XE#651])
   [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][35] ([Intel XE#5390]) +1 other test skip
   [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move:
    - shard-bmg:          NOTRUN -> [SKIP][36] ([Intel XE#2311]) +4 other tests skip
   [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc:
    - shard-bmg:          NOTRUN -> [SKIP][37] ([Intel XE#2313]) +6 other tests skip
   [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
    - shard-dg2-set2:     NOTRUN -> [SKIP][38] ([Intel XE#6312])
   [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
    - shard-dg2-set2:     NOTRUN -> [SKIP][39] ([Intel XE#653]) +1 other test skip
   [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html

  * igt@kms_hdr@invalid-hdr:
    - shard-dg2-set2:     [PASS][40] -> [SKIP][41] ([Intel XE#455])
   [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
   [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-466/igt@kms_hdr@invalid-hdr.html

  * igt@kms_hdr@static-swap:
    - shard-bmg:          [PASS][42] -> [SKIP][43] ([Intel XE#1503]) +2 other tests skip
   [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-5/igt@kms_hdr@static-swap.html
   [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-6/igt@kms_hdr@static-swap.html

  * igt@kms_joiner@invalid-modeset-force-big-joiner:
    - shard-bmg:          [PASS][44] -> [SKIP][45] ([Intel XE#3012])
   [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
   [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html

  * igt@kms_joiner@invalid-modeset-force-ultra-joiner:
    - shard-bmg:          NOTRUN -> [SKIP][46] ([Intel XE#2934])
   [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html

  * igt@kms_plane_multiple@2x-tiling-yf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][47] ([Intel XE#5021])
   [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-434/igt@kms_plane_multiple@2x-tiling-yf.html

  * igt@kms_plane_scaling@2x-scaler-multi-pipe:
    - shard-bmg:          [PASS][48] -> [SKIP][49] ([Intel XE#2571])
   [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
   [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-6/igt@kms_plane_scaling@2x-scaler-multi-pipe.html

  * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a:
    - shard-adlp:         [PASS][50] -> [DMESG-WARN][51] ([Intel XE#2953] / [Intel XE#4173]) +11 other tests dmesg-warn
   [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-adlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a.html
   [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-adlp-9/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
    - shard-dg2-set2:     NOTRUN -> [SKIP][52] ([Intel XE#1406] / [Intel XE#1489])
   [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-434/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf:
    - shard-bmg:          NOTRUN -> [SKIP][53] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
   [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html

  * igt@kms_psr@psr2-suspend:
    - shard-bmg:          NOTRUN -> [SKIP][54] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +3 other tests skip
   [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@kms_psr@psr2-suspend.html

  * igt@kms_rotation_crc@primary-rotation-90:
    - shard-dg2-set2:     NOTRUN -> [SKIP][55] ([Intel XE#3414])
   [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-434/igt@kms_rotation_crc@primary-rotation-90.html

  * igt@kms_vrr@cmrr:
    - shard-bmg:          NOTRUN -> [SKIP][56] ([Intel XE#2168])
   [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@kms_vrr@cmrr.html

  * igt@kms_vrr@negative-basic:
    - shard-bmg:          [PASS][57] -> [SKIP][58] ([Intel XE#1499])
   [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-4/igt@kms_vrr@negative-basic.html
   [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-6/igt@kms_vrr@negative-basic.html

  * igt@xe_copy_basic@mem-page-copy-17:
    - shard-dg2-set2:     NOTRUN -> [SKIP][59] ([Intel XE#5300])
   [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-434/igt@xe_copy_basic@mem-page-copy-17.html

  * igt@xe_eudebug_online@stopped-thread:
    - shard-bmg:          NOTRUN -> [SKIP][60] ([Intel XE#4837]) +1 other test skip
   [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@xe_eudebug_online@stopped-thread.html

  * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm:
    - shard-dg2-set2:     NOTRUN -> [SKIP][61] ([Intel XE#288]) +1 other test skip
   [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-434/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html

  * igt@xe_exec_system_allocator@many-64k-mmap-huge:
    - shard-bmg:          NOTRUN -> [SKIP][62] ([Intel XE#5007])
   [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@xe_exec_system_allocator@many-64k-mmap-huge.html

  * igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset:
    - shard-bmg:          NOTRUN -> [SKIP][63] ([Intel XE#4943]) +2 other tests skip
   [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@xe_exec_system_allocator@many-execqueues-mmap-huge-nomemset.html

  * igt@xe_exec_system_allocator@threads-many-mmap-prefetch:
    - shard-dg2-set2:     NOTRUN -> [SKIP][64] ([Intel XE#4915]) +14 other tests skip
   [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-mmap-prefetch.html

  * igt@xe_live_ktest@xe_eudebug:
    - shard-bmg:          NOTRUN -> [SKIP][65] ([Intel XE#2833])
   [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@xe_live_ktest@xe_eudebug.html

  * igt@xe_pmu@fn-engine-activity-load:
    - shard-dg2-set2:     NOTRUN -> [SKIP][66] ([Intel XE#4650])
   [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-434/igt@xe_pmu@fn-engine-activity-load.html

  * igt@xe_pxp@pxp-termination-key-update-post-rpm:
    - shard-bmg:          NOTRUN -> [SKIP][67] ([Intel XE#4733]) +1 other test skip
   [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-4/igt@xe_pxp@pxp-termination-key-update-post-rpm.html

  * igt@xe_query@multigpu-query-gt-list:
    - shard-dg2-set2:     NOTRUN -> [SKIP][68] ([Intel XE#944])
   [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-434/igt@xe_query@multigpu-query-gt-list.html

  * igt@xe_sriov_flr@flr-twice:
    - shard-dg2-set2:     NOTRUN -> [SKIP][69] ([Intel XE#4273])
   [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-434/igt@xe_sriov_flr@flr-twice.html

  * igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random:
    - shard-adlp:         [PASS][70] -> [DMESG-FAIL][71] ([Intel XE#3868] / [Intel XE#5213]) +1 other test dmesg-fail
   [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-adlp-9/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html
   [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-adlp-3/igt@xe_sriov_scheduling@nonpreempt-engine-resets@numvfs-random.html

  
#### Possible fixes ####

  * igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
    - shard-lnl:          [FAIL][72] ([Intel XE#5993]) -> [PASS][73] +3 other tests pass
   [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
   [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html

  * igt@kms_atomic@crtc-invalid-params-fence:
    - shard-adlp:         [DMESG-WARN][74] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][75] +2 other tests pass
   [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-adlp-1/igt@kms_atomic@crtc-invalid-params-fence.html
   [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-adlp-1/igt@kms_atomic@crtc-invalid-params-fence.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][76] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345] / [Intel XE#6168]) -> [PASS][77]
   [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
   [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
    - shard-dg2-set2:     [INCOMPLETE][78] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#6168]) -> [PASS][79]
   [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
   [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html

  * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
    - shard-bmg:          [SKIP][80] ([Intel XE#2291]) -> [PASS][81] +4 other tests pass
   [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
   [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-bmg:          [FAIL][82] ([Intel XE#1475]) -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
    - shard-bmg:          [FAIL][84] ([Intel XE#4633]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
   [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html

  * igt@kms_display_modes@extended-mode-basic:
    - shard-bmg:          [SKIP][86] ([Intel XE#4302]) -> [PASS][87]
   [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
   [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-5/igt@kms_display_modes@extended-mode-basic.html

  * igt@kms_dp_link_training@non-uhbr-sst:
    - shard-bmg:          [SKIP][88] ([Intel XE#4354]) -> [PASS][89]
   [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-6/igt@kms_dp_link_training@non-uhbr-sst.html
   [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-5/igt@kms_dp_link_training@non-uhbr-sst.html

  * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
    - shard-bmg:          [SKIP][90] ([Intel XE#2316]) -> [PASS][91] +3 other tests pass
   [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
   [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html

  * igt@kms_flip@dpms-vs-vblank-race-interruptible:
    - shard-adlp:         [DMESG-WARN][92] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#5208]) -> [PASS][93]
   [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-adlp-1/igt@kms_flip@dpms-vs-vblank-race-interruptible.html
   [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-adlp-1/igt@kms_flip@dpms-vs-vblank-race-interruptible.html

  * igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
    - shard-adlp:         [DMESG-WARN][94] ([Intel XE#4543]) -> [PASS][95] +9 other tests pass
   [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-adlp-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
   [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-adlp-9/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y:
    - shard-adlp:         [DMESG-FAIL][96] ([Intel XE#4543]) -> [PASS][97]
   [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y.html
   [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y.html

  * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y:
    - shard-adlp:         [FAIL][98] ([Intel XE#1874]) -> [PASS][99] +1 other test pass
   [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y.html
   [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-adlp-6/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y.html

  * igt@kms_hdr@static-toggle:
    - shard-bmg:          [SKIP][100] ([Intel XE#1503]) -> [PASS][101]
   [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-6/igt@kms_hdr@static-toggle.html
   [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-2/igt@kms_hdr@static-toggle.html

  * igt@kms_plane_multiple@2x-tiling-4:
    - shard-bmg:          [SKIP][102] ([Intel XE#4596]) -> [PASS][103]
   [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
   [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-4.html

  * igt@xe_pmu@gt-frequency:
    - shard-dg2-set2:     [FAIL][104] ([Intel XE#4819]) -> [PASS][105] +1 other test pass
   [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-dg2-435/igt@xe_pmu@gt-frequency.html
   [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-436/igt@xe_pmu@gt-frequency.html

  
#### Warnings ####

  * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
    - shard-dg2-set2:     [INCOMPLETE][106] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [INCOMPLETE][107] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345])
   [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
   [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html

  * igt@kms_content_protection@uevent:
    - shard-bmg:          [FAIL][108] ([Intel XE#1188]) -> [SKIP][109] ([Intel XE#2341])
   [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-4/igt@kms_content_protection@uevent.html
   [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-6/igt@kms_content_protection@uevent.html

  * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt:
    - shard-bmg:          [SKIP][110] ([Intel XE#2312]) -> [SKIP][111] ([Intel XE#2311]) +12 other tests skip
   [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html
   [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
    - shard-bmg:          [SKIP][112] ([Intel XE#2311]) -> [SKIP][113] ([Intel XE#2312]) +16 other tests skip
   [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
   [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html

  * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
    - shard-bmg:          [SKIP][114] ([Intel XE#2312]) -> [SKIP][115] ([Intel XE#5390]) +7 other tests skip
   [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
   [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][116] ([Intel XE#5390]) -> [SKIP][117] ([Intel XE#2312]) +7 other tests skip
   [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
   [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
    - shard-bmg:          [SKIP][118] ([Intel XE#2312]) -> [SKIP][119] ([Intel XE#2313]) +14 other tests skip
   [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
   [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
    - shard-bmg:          [SKIP][120] ([Intel XE#2313]) -> [SKIP][121] ([Intel XE#2312]) +16 other tests skip
   [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
   [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html

  * igt@kms_tiled_display@basic-test-pattern:
    - shard-bmg:          [SKIP][122] ([Intel XE#2426]) -> [FAIL][123] ([Intel XE#1729])
   [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html
   [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html

  * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
    - shard-bmg:          [SKIP][124] ([Intel XE#2509]) -> [SKIP][125] ([Intel XE#2426])
   [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
   [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html

  
  [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
  [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
  [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
  [Intel XE#1231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1231
  [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
  [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
  [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
  [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
  [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
  [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
  [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
  [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
  [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
  [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
  [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
  [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
  [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
  [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
  [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
  [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
  [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
  [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
  [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
  [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
  [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
  [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
  [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
  [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
  [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
  [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
  [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833
  [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
  [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
  [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
  [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
  [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
  [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
  [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
  [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
  [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
  [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#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
  [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
  [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#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
  [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
  [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
  [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
  [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
  [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#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
  [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
  [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#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
  [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#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
  [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
  [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
  [Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
  [Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
  [Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
  [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
  [Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
  [Intel XE#6168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6168
  [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
  [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
  [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
  [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
  [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944


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

  * Linux: xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1 -> xe-pw-156873v1

  IGT_8605: 8605
  xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1: 089e83683d58db86cc4c69d34fba3a96904e40e1
  xe-pw-156873v1: 156873v1

== Logs ==

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

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

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

* Re: ✗ Xe.CI.BAT: failure for Fix serialization on burst of unbinds - v2
  2025-11-01  3:38 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2025-11-03 21:46   ` Matthew Brost
  0 siblings, 0 replies; 12+ messages in thread
From: Matthew Brost @ 2025-11-03 21:46 UTC (permalink / raw)
  To: intel-xe

On Sat, Nov 01, 2025 at 03:38:01AM +0000, Patchwork wrote:
> == Series Details ==
> 
> Series: Fix serialization on burst of unbinds - v2
> URL   : https://patchwork.freedesktop.org/series/156873/
> State : failure
> 
> == Summary ==
> 
> CI Bug Log - changes from xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1_BAT -> xe-pw-156873v1_BAT
> ====================================================
> 
> Summary
> -------
> 
>   **FAILURE**
> 
>   Serious unknown changes coming with xe-pw-156873v1_BAT absolutely need to be
>   verified manually.
>   
>   If you think the reported changes have nothing to do with the changes
>   introduced in xe-pw-156873v1_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 (12 -> 12)
> ------------------------------
> 
>   No changes in participating hosts
> 
> Possible new issues
> -------------------
> 
>   Here are the unknown changes that may have been introduced in xe-pw-156873v1_BAT:
> 
> ### IGT changes ###
> 
> #### Possible regressions ####
> 
>   * igt@xe_waitfence@reltime:
>     - bat-dg2-oem2:       [PASS][1] -> [FAIL][2]
>    [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/bat-dg2-oem2/igt@xe_waitfence@reltime.html
>    [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/bat-dg2-oem2/igt@xe_waitfence@reltime.html

I haven't able to reproduce this one.

Matt

> 
>   
> Known issues
> ------------
> 
>   Here are the changes found in xe-pw-156873v1_BAT that come from known issues:
> 
> ### IGT changes ###
> 
> #### Possible fixes ####
> 
>   * igt@kms_flip@basic-plain-flip@d-edp1:
>     - bat-adlp-7:         [DMESG-WARN][3] ([Intel XE#4543]) -> [PASS][4] +1 other test pass
>    [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html
>    [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html
> 
>   
>   [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
> 
> 
> Build changes
> -------------
> 
>   * Linux: xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1 -> xe-pw-156873v1
> 
>   IGT_8605: 8605
>   xe-4027-089e83683d58db86cc4c69d34fba3a96904e40e1: 089e83683d58db86cc4c69d34fba3a96904e40e1
>   xe-pw-156873v1: 156873v1
> 
> == Logs ==
> 
> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-156873v1/index.html

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

end of thread, other threads:[~2025-11-03 21:46 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-31 23:40 [PATCH v7 0/6] Fix serialization on burst of unbinds - v2 Matthew Brost
2025-10-31 23:40 ` [PATCH v7 1/6] drm/xe: Enforce correct user fence signaling order using Matthew Brost
2025-10-31 23:40 ` [PATCH v7 2/6] drm/xe: Attach last fence to TLB invalidation job queues Matthew Brost
2025-10-31 23:40 ` [PATCH v7 3/6] drm/xe: Decouple bind queue last fence from TLB invalidations Matthew Brost
2025-10-31 23:40 ` [PATCH v7 4/6] drm/xe: Skip TLB invalidation waits in page fault binds Matthew Brost
2025-10-31 23:40 ` [PATCH v7 5/6] drm/xe: Disallow input fences on zero batch execs and zero binds Matthew Brost
2025-10-31 23:40 ` [PATCH v7 6/6] drm/xe: Remove last fence dependency check from binds and execs Matthew Brost
2025-11-01  2:49 ` ✗ CI.checkpatch: warning for Fix serialization on burst of unbinds - v2 Patchwork
2025-11-01  2:50 ` ✓ CI.KUnit: success " Patchwork
2025-11-01  3:38 ` ✗ Xe.CI.BAT: failure " Patchwork
2025-11-03 21:46   ` Matthew Brost
2025-11-01 22:55 ` ✓ Xe.CI.Full: success " Patchwork

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