* [PATCH 1/7] drm/xe: Add additional trace points for LRCs
2025-10-13 22:31 [PATCH 0/7] Fix a couple of wedge corner-case memory leaks Stuart Summers
@ 2025-10-13 22:31 ` Stuart Summers
2025-10-13 22:31 ` [PATCH 2/7] drm/xe: Add a trace point for VM close Stuart Summers
` (9 subsequent siblings)
10 siblings, 0 replies; 20+ messages in thread
From: Stuart Summers @ 2025-10-13 22:31 UTC (permalink / raw)
Cc: intel-xe, matthew.brost, Stuart Summers
Add trace points to indicate when an LRC has been
created and destroyed or get and put.
Signed-off-by: Stuart Summers <stuart.summers@intel.com>
---
drivers/gpu/drm/xe/xe_lrc.c | 4 +++
drivers/gpu/drm/xe/xe_lrc.h | 3 +++
drivers/gpu/drm/xe/xe_trace_lrc.h | 42 ++++++++++++++++++++++++++++++-
3 files changed, 48 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_lrc.c b/drivers/gpu/drm/xe/xe_lrc.c
index b5083c99dd50..42d1c861fe18 100644
--- a/drivers/gpu/drm/xe/xe_lrc.c
+++ b/drivers/gpu/drm/xe/xe_lrc.c
@@ -1575,6 +1575,8 @@ struct xe_lrc *xe_lrc_create(struct xe_hw_engine *hwe, struct xe_vm *vm,
return ERR_PTR(err);
}
+ trace_xe_lrc_create(lrc);
+
return lrc;
}
@@ -1589,6 +1591,8 @@ void xe_lrc_destroy(struct kref *ref)
{
struct xe_lrc *lrc = container_of(ref, struct xe_lrc, refcount);
+ trace_xe_lrc_destroy(lrc);
+
xe_lrc_finish(lrc);
kfree(lrc);
}
diff --git a/drivers/gpu/drm/xe/xe_lrc.h b/drivers/gpu/drm/xe/xe_lrc.h
index 2fb628da5c43..fd67810f9812 100644
--- a/drivers/gpu/drm/xe/xe_lrc.h
+++ b/drivers/gpu/drm/xe/xe_lrc.h
@@ -8,6 +8,7 @@
#include <linux/types.h>
#include "xe_lrc_types.h"
+#include "xe_trace_lrc.h"
struct drm_printer;
struct xe_bb;
@@ -61,6 +62,7 @@ void xe_lrc_destroy(struct kref *ref);
static inline struct xe_lrc *xe_lrc_get(struct xe_lrc *lrc)
{
kref_get(&lrc->refcount);
+ trace_xe_lrc_get(lrc);
return lrc;
}
@@ -73,6 +75,7 @@ static inline struct xe_lrc *xe_lrc_get(struct xe_lrc *lrc)
*/
static inline void xe_lrc_put(struct xe_lrc *lrc)
{
+ trace_xe_lrc_put(lrc);
kref_put(&lrc->refcount, xe_lrc_destroy);
}
diff --git a/drivers/gpu/drm/xe/xe_trace_lrc.h b/drivers/gpu/drm/xe/xe_trace_lrc.h
index d525cbee1e34..e8daa5d323e7 100644
--- a/drivers/gpu/drm/xe/xe_trace_lrc.h
+++ b/drivers/gpu/drm/xe/xe_trace_lrc.h
@@ -13,7 +13,6 @@
#include <linux/types.h>
#include "xe_gt_types.h"
-#include "xe_lrc.h"
#include "xe_lrc_types.h"
#define __dev_name_lrc(lrc) dev_name(gt_to_xe((lrc)->fence_ctx.gt)->drm.dev)
@@ -42,6 +41,47 @@ TRACE_EVENT(xe_lrc_update_timestamp,
__get_str(device_id))
);
+DECLARE_EVENT_CLASS(xe_lrc,
+ TP_PROTO(struct xe_lrc *lrc),
+ TP_ARGS(lrc),
+
+ TP_STRUCT__entry(
+ __field(struct xe_lrc *, lrc)
+ __string(name, lrc->fence_ctx.name)
+ __string(device_id, __dev_name_lrc(lrc))
+ ),
+
+ TP_fast_assign(
+ __entry->lrc = lrc;
+ __assign_str(name);
+ __assign_str(device_id);
+ ),
+
+ TP_printk("lrc=:%p lrc->name=%s device_id:%s",
+ __entry->lrc, __get_str(name),
+ __get_str(device_id))
+);
+
+DEFINE_EVENT(xe_lrc, xe_lrc_create,
+ TP_PROTO(struct xe_lrc *lrc),
+ TP_ARGS(lrc)
+);
+
+DEFINE_EVENT(xe_lrc, xe_lrc_destroy,
+ TP_PROTO(struct xe_lrc *lrc),
+ TP_ARGS(lrc)
+);
+
+DEFINE_EVENT(xe_lrc, xe_lrc_get,
+ TP_PROTO(struct xe_lrc *lrc),
+ TP_ARGS(lrc)
+);
+
+DEFINE_EVENT(xe_lrc, xe_lrc_put,
+ TP_PROTO(struct xe_lrc *lrc),
+ TP_ARGS(lrc)
+);
+
#endif
/* This part must be outside protection */
--
2.34.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH 2/7] drm/xe: Add a trace point for VM close
2025-10-13 22:31 [PATCH 0/7] Fix a couple of wedge corner-case memory leaks Stuart Summers
2025-10-13 22:31 ` [PATCH 1/7] drm/xe: Add additional trace points for LRCs Stuart Summers
@ 2025-10-13 22:31 ` Stuart Summers
2025-10-13 22:31 ` [PATCH 3/7] drm/xe: Add the BO pointer info to the BO trace Stuart Summers
` (8 subsequent siblings)
10 siblings, 0 replies; 20+ messages in thread
From: Stuart Summers @ 2025-10-13 22:31 UTC (permalink / raw)
Cc: intel-xe, matthew.brost, Stuart Summers
All better tracking of error cases when calling through
xe_vm_close_and_put().
Signed-off-by: Stuart Summers <stuart.summers@intel.com>
---
drivers/gpu/drm/xe/xe_trace_bo.h | 6 ++++++
drivers/gpu/drm/xe/xe_vm.c | 2 ++
2 files changed, 8 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_trace_bo.h b/drivers/gpu/drm/xe/xe_trace_bo.h
index 86323cf3be2c..238311cfb816 100644
--- a/drivers/gpu/drm/xe/xe_trace_bo.h
+++ b/drivers/gpu/drm/xe/xe_trace_bo.h
@@ -14,6 +14,7 @@
#include "xe_bo.h"
#include "xe_bo_types.h"
+#include "xe_exec_queue_types.h"
#include "xe_vm.h"
#define __dev_name_bo(bo) dev_name(xe_bo_device(bo)->drm.dev)
@@ -223,6 +224,11 @@ DEFINE_EVENT(xe_vm, xe_vm_free,
TP_ARGS(vm)
);
+DEFINE_EVENT(xe_vm, xe_vm_close,
+ TP_PROTO(struct xe_vm *vm),
+ TP_ARGS(vm)
+);
+
DEFINE_EVENT(xe_vm, xe_vm_cpu_bind,
TP_PROTO(struct xe_vm *vm),
TP_ARGS(vm)
diff --git a/drivers/gpu/drm/xe/xe_vm.c b/drivers/gpu/drm/xe/xe_vm.c
index 179758ca7cb8..64b8a170efcf 100644
--- a/drivers/gpu/drm/xe/xe_vm.c
+++ b/drivers/gpu/drm/xe/xe_vm.c
@@ -1681,6 +1681,8 @@ static void xe_vm_close(struct xe_vm *vm)
bool bound;
int idx;
+ trace_xe_vm_close(vm);
+
bound = drm_dev_enter(&xe->drm, &idx);
down_write(&vm->lock);
--
2.34.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH 3/7] drm/xe: Add the BO pointer info to the BO trace
2025-10-13 22:31 [PATCH 0/7] Fix a couple of wedge corner-case memory leaks Stuart Summers
2025-10-13 22:31 ` [PATCH 1/7] drm/xe: Add additional trace points for LRCs Stuart Summers
2025-10-13 22:31 ` [PATCH 2/7] drm/xe: Add a trace point for VM close Stuart Summers
@ 2025-10-13 22:31 ` Stuart Summers
2025-10-13 22:31 ` [PATCH 4/7] drm/xe: Add new exec queue trace points Stuart Summers
` (7 subsequent siblings)
10 siblings, 0 replies; 20+ messages in thread
From: Stuart Summers @ 2025-10-13 22:31 UTC (permalink / raw)
Cc: intel-xe, matthew.brost, Stuart Summers
Just a little extra detail to make BOs easier to track
through the trace event log.
Signed-off-by: Stuart Summers <stuart.summers@intel.com>
---
drivers/gpu/drm/xe/xe_trace_bo.h | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_trace_bo.h b/drivers/gpu/drm/xe/xe_trace_bo.h
index 238311cfb816..0d795733e0f0 100644
--- a/drivers/gpu/drm/xe/xe_trace_bo.h
+++ b/drivers/gpu/drm/xe/xe_trace_bo.h
@@ -27,6 +27,7 @@ DECLARE_EVENT_CLASS(xe_bo,
TP_STRUCT__entry(
__string(dev, __dev_name_bo(bo))
+ __field(struct xe_bo *, bo)
__field(size_t, size)
__field(u32, flags)
__field(struct xe_vm *, vm)
@@ -34,13 +35,14 @@ DECLARE_EVENT_CLASS(xe_bo,
TP_fast_assign(
__assign_str(dev);
+ __entry->bo = bo;
__entry->size = xe_bo_size(bo);
__entry->flags = bo->flags;
__entry->vm = bo->vm;
),
- TP_printk("dev=%s, size=%zu, flags=0x%02x, vm=%p",
- __get_str(dev), __entry->size,
+ TP_printk("dev=%s, %p, size=%zu, flags=0x%02x, vm=%p",
+ __get_str(dev), __entry->bo, __entry->size,
__entry->flags, __entry->vm)
);
--
2.34.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH 4/7] drm/xe: Add new exec queue trace points
2025-10-13 22:31 [PATCH 0/7] Fix a couple of wedge corner-case memory leaks Stuart Summers
` (2 preceding siblings ...)
2025-10-13 22:31 ` [PATCH 3/7] drm/xe: Add the BO pointer info to the BO trace Stuart Summers
@ 2025-10-13 22:31 ` Stuart Summers
2025-10-13 22:31 ` [PATCH 5/7] drm/xe: Correct migration VM teardown order Stuart Summers
` (6 subsequent siblings)
10 siblings, 0 replies; 20+ messages in thread
From: Stuart Summers @ 2025-10-13 22:31 UTC (permalink / raw)
Cc: intel-xe, matthew.brost, Stuart Summers
Add an exec queue and guc exec queue trace point
to separate out which part of the stack is executing.
This is helpful because several of the guc specific
paths rely on responses from guc which is interesting
to view separately in the event the guc stops responding
in the middle of an operation that would expect a
response from guc otherwise.
Also add in the exec queue pointer information to
the trace events for easier tracking. Contexts (guc_ids)
can get re-used, so this just makes grepping a little
easier in this type of debug.
Signed-off-by: Stuart Summers <stuart.summers@intel.com>
---
drivers/gpu/drm/xe/xe_exec_queue.c | 4 ++++
drivers/gpu/drm/xe/xe_guc_submit.c | 11 +++++++----
drivers/gpu/drm/xe/xe_trace.h | 22 ++++++++++++++++++++--
3 files changed, 31 insertions(+), 6 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_exec_queue.c b/drivers/gpu/drm/xe/xe_exec_queue.c
index 90cbc95f8e2e..a2ef381cf6d9 100644
--- a/drivers/gpu/drm/xe/xe_exec_queue.c
+++ b/drivers/gpu/drm/xe/xe_exec_queue.c
@@ -377,6 +377,8 @@ 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;
+ trace_xe_exec_queue_destroy(q);
+
if (xe_exec_queue_uses_pxp(q))
xe_pxp_exec_queue_remove(gt_to_xe(q->gt)->pxp, q);
@@ -953,6 +955,8 @@ void xe_exec_queue_kill(struct xe_exec_queue *q)
{
struct xe_exec_queue *eq = q, *next;
+ trace_xe_exec_queue_kill(q);
+
list_for_each_entry_safe(eq, next, &eq->multi_gt_list,
multi_gt_link) {
q->ops->kill(eq);
diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
index e9aa0625ce60..5ec1e4a83d68 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit.c
+++ b/drivers/gpu/drm/xe/xe_guc_submit.c
@@ -1003,9 +1003,12 @@ void xe_guc_submit_wedge(struct xe_guc *guc)
}
mutex_lock(&guc->submission_state.lock);
- xa_for_each(&guc->submission_state.exec_queue_lookup, index, q)
- if (xe_exec_queue_get_unless_zero(q))
+ xa_for_each(&guc->submission_state.exec_queue_lookup, index, q) {
+ if (xe_exec_queue_get_unless_zero(q)) {
set_exec_queue_wedged(q);
+ trace_xe_exec_queue_wedge(q);
+ }
+ }
mutex_unlock(&guc->submission_state.lock);
}
@@ -1455,7 +1458,7 @@ static void __guc_exec_queue_destroy_async(struct work_struct *w)
struct xe_guc *guc = exec_queue_to_guc(q);
xe_pm_runtime_get(guc_to_xe(guc));
- trace_xe_exec_queue_destroy(q);
+ trace_xe_guc_exec_queue_destroy(q);
if (xe_exec_queue_is_lr(q))
cancel_work_sync(&ge->lr_tdr);
@@ -1716,7 +1719,7 @@ static int guc_exec_queue_init(struct xe_exec_queue *q)
static void guc_exec_queue_kill(struct xe_exec_queue *q)
{
- trace_xe_exec_queue_kill(q);
+ trace_xe_guc_exec_queue_kill(q);
set_exec_queue_killed(q);
__suspend_fence_signal(q);
xe_guc_exec_queue_trigger_cleanup(q);
diff --git a/drivers/gpu/drm/xe/xe_trace.h b/drivers/gpu/drm/xe/xe_trace.h
index 314f42fcbcbd..a5dd0c48d894 100644
--- a/drivers/gpu/drm/xe/xe_trace.h
+++ b/drivers/gpu/drm/xe/xe_trace.h
@@ -71,6 +71,7 @@ DECLARE_EVENT_CLASS(xe_exec_queue,
TP_STRUCT__entry(
__string(dev, __dev_name_eq(q))
+ __field(struct xe_exec_queue *, q)
__field(enum xe_engine_class, class)
__field(u32, logical_mask)
__field(u8, gt_id)
@@ -82,6 +83,7 @@ DECLARE_EVENT_CLASS(xe_exec_queue,
TP_fast_assign(
__assign_str(dev);
+ __entry->q = q;
__entry->class = q->class;
__entry->logical_mask = q->logical_mask;
__entry->gt_id = q->gt->info.id;
@@ -91,8 +93,9 @@ DECLARE_EVENT_CLASS(xe_exec_queue,
__entry->flags = q->flags;
),
- TP_printk("dev=%s, %d:0x%x, gt=%d, width=%d, guc_id=%d, guc_state=0x%x, flags=0x%x",
- __get_str(dev), __entry->class, __entry->logical_mask,
+ TP_printk("dev=%s, %p, %d:0x%x, gt=%d, width=%d, guc_id=%d, guc_state=0x%x, flags=0x%x",
+ __get_str(dev), __entry->q,
+ __entry->class, __entry->logical_mask,
__entry->gt_id, __entry->width, __entry->guc_id,
__entry->guc_state, __entry->flags)
);
@@ -147,11 +150,21 @@ DEFINE_EVENT(xe_exec_queue, xe_exec_queue_close,
TP_ARGS(q)
);
+DEFINE_EVENT(xe_exec_queue, xe_exec_queue_wedge,
+ TP_PROTO(struct xe_exec_queue *q),
+ TP_ARGS(q)
+);
+
DEFINE_EVENT(xe_exec_queue, xe_exec_queue_kill,
TP_PROTO(struct xe_exec_queue *q),
TP_ARGS(q)
);
+DEFINE_EVENT(xe_exec_queue, xe_guc_exec_queue_kill,
+ TP_PROTO(struct xe_exec_queue *q),
+ TP_ARGS(q)
+);
+
DEFINE_EVENT(xe_exec_queue, xe_exec_queue_cleanup_entity,
TP_PROTO(struct xe_exec_queue *q),
TP_ARGS(q)
@@ -162,6 +175,11 @@ DEFINE_EVENT(xe_exec_queue, xe_exec_queue_destroy,
TP_ARGS(q)
);
+DEFINE_EVENT(xe_exec_queue, xe_guc_exec_queue_destroy,
+ TP_PROTO(struct xe_exec_queue *q),
+ TP_ARGS(q)
+);
+
DEFINE_EVENT(xe_exec_queue, xe_exec_queue_reset,
TP_PROTO(struct xe_exec_queue *q),
TP_ARGS(q)
--
2.34.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH 5/7] drm/xe: Correct migration VM teardown order
2025-10-13 22:31 [PATCH 0/7] Fix a couple of wedge corner-case memory leaks Stuart Summers
` (3 preceding siblings ...)
2025-10-13 22:31 ` [PATCH 4/7] drm/xe: Add new exec queue trace points Stuart Summers
@ 2025-10-13 22:31 ` Stuart Summers
2025-10-13 22:31 ` [PATCH 6/7] drm/xe: Kick start GPU scheduler on teardown Stuart Summers
` (5 subsequent siblings)
10 siblings, 0 replies; 20+ messages in thread
From: Stuart Summers @ 2025-10-13 22:31 UTC (permalink / raw)
Cc: intel-xe, matthew.brost, Stuart Summers
Adjust the sequence of the migration teardown to match what
is happening in the init() function.
Signed-off-by: Stuart Summers <stuart.summers@intel.com>
---
drivers/gpu/drm/xe/xe_migrate.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c
index 7345a5b65169..b1747e442a7b 100644
--- a/drivers/gpu/drm/xe/xe_migrate.c
+++ b/drivers/gpu/drm/xe/xe_migrate.c
@@ -100,8 +100,8 @@ static void xe_migrate_fini(void *arg)
xe_bo_put(m->pt_bo);
drm_suballoc_manager_fini(&m->vm_update_sa);
mutex_destroy(&m->job_mutex);
- xe_vm_close_and_put(m->q->vm);
xe_exec_queue_put(m->q);
+ xe_vm_close_and_put(m->q->vm);
}
static u64 xe_migrate_vm_addr(u64 slot, u32 level)
--
2.34.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* [PATCH 6/7] drm/xe: Kick start GPU scheduler on teardown
2025-10-13 22:31 [PATCH 0/7] Fix a couple of wedge corner-case memory leaks Stuart Summers
` (4 preceding siblings ...)
2025-10-13 22:31 ` [PATCH 5/7] drm/xe: Correct migration VM teardown order Stuart Summers
@ 2025-10-13 22:31 ` Stuart Summers
2025-10-13 22:32 ` Summers, Stuart
2025-10-13 22:31 ` [PATCH 7/7] drm/xe: Check for GuC responses on disabling scheduling Stuart Summers
` (4 subsequent siblings)
10 siblings, 1 reply; 20+ messages in thread
From: Stuart Summers @ 2025-10-13 22:31 UTC (permalink / raw)
Cc: intel-xe, matthew.brost, Stuart Summers
Ensure all remaining GPU scheduler messages are processed
on teardown. We already have a wait here, but if the
scheduler was stopped while we have outstanding transactions,
those queues will never be fully drained.
Signed-off-by: Stuart Summers <stuart.summers@intel.com>
---
drivers/gpu/drm/xe/xe_guc_submit.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
index 5ec1e4a83d68..c923f13a13ef 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit.c
+++ b/drivers/gpu/drm/xe/xe_guc_submit.c
@@ -276,6 +276,12 @@ static void guc_submit_fini(struct drm_device *drm, void *arg)
struct xe_gt *gt = guc_to_gt(guc);
int ret;
+ /*
+ * Kick start the scheduler here to ensure any remaining
+ * messages are processed
+ */
+ xe_guc_submit_start(guc);
+
ret = wait_event_timeout(guc->submission_state.fini_wq,
xa_empty(&guc->submission_state.exec_queue_lookup),
HZ * 5);
--
2.34.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* Re: [PATCH 6/7] drm/xe: Kick start GPU scheduler on teardown
2025-10-13 22:31 ` [PATCH 6/7] drm/xe: Kick start GPU scheduler on teardown Stuart Summers
@ 2025-10-13 22:32 ` Summers, Stuart
2025-10-14 2:07 ` Matthew Brost
0 siblings, 1 reply; 20+ messages in thread
From: Summers, Stuart @ 2025-10-13 22:32 UTC (permalink / raw)
To: Brost, Matthew; +Cc: intel-xe@lists.freedesktop.org, Summers, Stuart
On Mon, 2025-10-13 at 22:31 +0000, Stuart Summers wrote:
> Ensure all remaining GPU scheduler messages are processed
> on teardown. We already have a wait here, but if the
> scheduler was stopped while we have outstanding transactions,
> those queues will never be fully drained.
>
> Signed-off-by: Stuart Summers <stuart.summers@intel.com>
> ---
> drivers/gpu/drm/xe/xe_guc_submit.c | 6 ++++++
> 1 file changed, 6 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c
> b/drivers/gpu/drm/xe/xe_guc_submit.c
> index 5ec1e4a83d68..c923f13a13ef 100644
> --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> @@ -276,6 +276,12 @@ static void guc_submit_fini(struct drm_device
> *drm, void *arg)
> struct xe_gt *gt = guc_to_gt(guc);
> int ret;
>
> + /*
> + * Kick start the scheduler here to ensure any remaining
> + * messages are processed
> + */
> + xe_guc_submit_start(guc);
Let me know what you think here Matt. We can also extend the below
timeout. I'm hoping this covers both the case I have and your VF
submission drain case.
Thanks,
Stuart
> +
> ret = wait_event_timeout(guc->submission_state.fini_wq,
> xa_empty(&guc-
> >submission_state.exec_queue_lookup),
> HZ * 5);
^ permalink raw reply [flat|nested] 20+ messages in thread
* Re: [PATCH 6/7] drm/xe: Kick start GPU scheduler on teardown
2025-10-13 22:32 ` Summers, Stuart
@ 2025-10-14 2:07 ` Matthew Brost
0 siblings, 0 replies; 20+ messages in thread
From: Matthew Brost @ 2025-10-14 2:07 UTC (permalink / raw)
To: Summers, Stuart; +Cc: intel-xe@lists.freedesktop.org
On Mon, Oct 13, 2025 at 04:32:57PM -0600, Summers, Stuart wrote:
> On Mon, 2025-10-13 at 22:31 +0000, Stuart Summers wrote:
> > Ensure all remaining GPU scheduler messages are processed
> > on teardown. We already have a wait here, but if the
> > scheduler was stopped while we have outstanding transactions,
> > those queues will never be fully drained.
> >
> > Signed-off-by: Stuart Summers <stuart.summers@intel.com>
> > ---
> > drivers/gpu/drm/xe/xe_guc_submit.c | 6 ++++++
> > 1 file changed, 6 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c
> > b/drivers/gpu/drm/xe/xe_guc_submit.c
> > index 5ec1e4a83d68..c923f13a13ef 100644
> > --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> > +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> > @@ -276,6 +276,12 @@ static void guc_submit_fini(struct drm_device
> > *drm, void *arg)
> > struct xe_gt *gt = guc_to_gt(guc);
> > int ret;
> >
> > + /*
> > + * Kick start the scheduler here to ensure any remaining
> > + * messages are processed
> > + */
> > + xe_guc_submit_start(guc);
>
> Let me know what you think here Matt. We can also extend the below
> timeout. I'm hoping this covers both the case I have and your VF
> submission drain case.
>
I think you will need some code similar to guc_exec_queue_stop somewhere
in the wedge path which cleans up lost H2G. Off the top of my head, I'm
unsure exactly where to stick that part.
Matt
> Thanks,
> Stuart
>
> > +
> > ret = wait_event_timeout(guc->submission_state.fini_wq,
> > xa_empty(&guc-
> > >submission_state.exec_queue_lookup),
> > HZ * 5);
>
^ permalink raw reply [flat|nested] 20+ messages in thread
* [PATCH 7/7] drm/xe: Check for GuC responses on disabling scheduling
2025-10-13 22:31 [PATCH 0/7] Fix a couple of wedge corner-case memory leaks Stuart Summers
` (5 preceding siblings ...)
2025-10-13 22:31 ` [PATCH 6/7] drm/xe: Kick start GPU scheduler on teardown Stuart Summers
@ 2025-10-13 22:31 ` Stuart Summers
2025-10-14 2:09 ` Matthew Brost
2025-10-14 1:04 ` ✗ CI.checkpatch: warning for Fix a couple of wedge corner-case memory leaks (rev3) Patchwork
` (3 subsequent siblings)
10 siblings, 1 reply; 20+ messages in thread
From: Stuart Summers @ 2025-10-13 22:31 UTC (permalink / raw)
Cc: intel-xe, matthew.brost, Stuart Summers
Currently if the GuC becomes unresponsive during a schedule
disable event, after we send the CT request, the driver
doesn't have a good way to recover. In most other cases,
we explicitly wait for GuC to respond by checking either
pending_enable, pending_disable, or some other state change
that we expect to be set after the response from GuC is
received for that particular request. Add a similar check
on the schedule disable side and make sure the queue state
for the queue being disabled is reset properly in that case.
v2: Only call the deregistration sequence since in this
case the scheduling handler should be reset during
the GT reset.
By doing that, we don't need a way to track the scheduling
disable request handler for that queue, making this sequence
simpler. As a result, don't mark the queue as banned.
Signed-off-by: Stuart Summers <stuart.summers@intel.com>
---
drivers/gpu/drm/xe/xe_guc_submit.c | 13 +++++++++++++
1 file changed, 13 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
index c923f13a13ef..ca37c7a8c5ed 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit.c
+++ b/drivers/gpu/drm/xe/xe_guc_submit.c
@@ -924,6 +924,8 @@ int xe_guc_read_stopped(struct xe_guc *guc)
GUC_CONTEXT_##enable_disable, \
}
+static void handle_deregister_done(struct xe_guc *guc, struct xe_exec_queue *q);
+
static void disable_scheduling_deregister(struct xe_guc *guc,
struct xe_exec_queue *q)
{
@@ -961,6 +963,17 @@ static void disable_scheduling_deregister(struct xe_guc *guc,
xe_guc_ct_send(&guc->ct, action, ARRAY_SIZE(action),
G2H_LEN_DW_SCHED_CONTEXT_MODE_SET +
G2H_LEN_DW_DEREGISTER_CONTEXT, 2);
+
+ ret = wait_event_timeout(guc->ct.wq,
+ !exec_queue_pending_disable(q) ||
+ xe_guc_read_stopped(guc),
+ HZ * 5);
+ if (!ret || xe_guc_read_stopped(guc)) {
+ xe_gt_warn(guc_to_gt(guc), "Schedule disable failed to respond");
+ handle_deregister_done(guc, q);
+ xe_gt_reset_async(q->gt);
+ }
+
}
static void xe_guc_exec_queue_trigger_cleanup(struct xe_exec_queue *q)
--
2.34.1
^ permalink raw reply related [flat|nested] 20+ messages in thread* Re: [PATCH 7/7] drm/xe: Check for GuC responses on disabling scheduling
2025-10-13 22:31 ` [PATCH 7/7] drm/xe: Check for GuC responses on disabling scheduling Stuart Summers
@ 2025-10-14 2:09 ` Matthew Brost
2025-10-14 3:10 ` Summers, Stuart
0 siblings, 1 reply; 20+ messages in thread
From: Matthew Brost @ 2025-10-14 2:09 UTC (permalink / raw)
To: Stuart Summers; +Cc: intel-xe
On Mon, Oct 13, 2025 at 10:31:35PM +0000, Stuart Summers wrote:
> Currently if the GuC becomes unresponsive during a schedule
> disable event, after we send the CT request, the driver
> doesn't have a good way to recover. In most other cases,
> we explicitly wait for GuC to respond by checking either
> pending_enable, pending_disable, or some other state change
> that we expect to be set after the response from GuC is
> received for that particular request. Add a similar check
> on the schedule disable side and make sure the queue state
> for the queue being disabled is reset properly in that case.
>
> v2: Only call the deregistration sequence since in this
> case the scheduling handler should be reset during
> the GT reset.
> By doing that, we don't need a way to track the scheduling
> disable request handler for that queue, making this sequence
> simpler. As a result, don't mark the queue as banned.
>
> Signed-off-by: Stuart Summers <stuart.summers@intel.com>
> ---
> drivers/gpu/drm/xe/xe_guc_submit.c | 13 +++++++++++++
> 1 file changed, 13 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
> index c923f13a13ef..ca37c7a8c5ed 100644
> --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> @@ -924,6 +924,8 @@ int xe_guc_read_stopped(struct xe_guc *guc)
> GUC_CONTEXT_##enable_disable, \
> }
>
> +static void handle_deregister_done(struct xe_guc *guc, struct xe_exec_queue *q);
> +
> static void disable_scheduling_deregister(struct xe_guc *guc,
> struct xe_exec_queue *q)
> {
> @@ -961,6 +963,17 @@ static void disable_scheduling_deregister(struct xe_guc *guc,
> xe_guc_ct_send(&guc->ct, action, ARRAY_SIZE(action),
> G2H_LEN_DW_SCHED_CONTEXT_MODE_SET +
> G2H_LEN_DW_DEREGISTER_CONTEXT, 2);
> +
> + ret = wait_event_timeout(guc->ct.wq,
> + !exec_queue_pending_disable(q) ||
> + xe_guc_read_stopped(guc),
> + HZ * 5);
> + if (!ret || xe_guc_read_stopped(guc)) {
> + xe_gt_warn(guc_to_gt(guc), "Schedule disable failed to respond");
> + handle_deregister_done(guc, q);
> + xe_gt_reset_async(q->gt);
> + }
> +
I thought I already stated this in eariler reviews - this path is
designed to be fully async (i.e., no blocking here). If H2G get lost for
whatever reason the driver should be smart enough to cleanup the memory
references assicoiated for the lost H2G.
Matt
> }
>
> static void xe_guc_exec_queue_trigger_cleanup(struct xe_exec_queue *q)
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 20+ messages in thread* Re: [PATCH 7/7] drm/xe: Check for GuC responses on disabling scheduling
2025-10-14 2:09 ` Matthew Brost
@ 2025-10-14 3:10 ` Summers, Stuart
0 siblings, 0 replies; 20+ messages in thread
From: Summers, Stuart @ 2025-10-14 3:10 UTC (permalink / raw)
To: Brost, Matthew; +Cc: intel-xe@lists.freedesktop.org
On Mon, 2025-10-13 at 19:09 -0700, Matthew Brost wrote:
> On Mon, Oct 13, 2025 at 10:31:35PM +0000, Stuart Summers wrote:
> > Currently if the GuC becomes unresponsive during a schedule
> > disable event, after we send the CT request, the driver
> > doesn't have a good way to recover. In most other cases,
> > we explicitly wait for GuC to respond by checking either
> > pending_enable, pending_disable, or some other state change
> > that we expect to be set after the response from GuC is
> > received for that particular request. Add a similar check
> > on the schedule disable side and make sure the queue state
> > for the queue being disabled is reset properly in that case.
> >
> > v2: Only call the deregistration sequence since in this
> > case the scheduling handler should be reset during
> > the GT reset.
> > By doing that, we don't need a way to track the scheduling
> > disable request handler for that queue, making this sequence
> > simpler. As a result, don't mark the queue as banned.
> >
> > Signed-off-by: Stuart Summers <stuart.summers@intel.com>
> > ---
> > drivers/gpu/drm/xe/xe_guc_submit.c | 13 +++++++++++++
> > 1 file changed, 13 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c
> > b/drivers/gpu/drm/xe/xe_guc_submit.c
> > index c923f13a13ef..ca37c7a8c5ed 100644
> > --- a/drivers/gpu/drm/xe/xe_guc_submit.c
> > +++ b/drivers/gpu/drm/xe/xe_guc_submit.c
> > @@ -924,6 +924,8 @@ int xe_guc_read_stopped(struct xe_guc *guc)
> > GUC_CONTEXT_##enable_disable,
> > \
> > }
> >
> > +static void handle_deregister_done(struct xe_guc *guc, struct
> > xe_exec_queue *q);
> > +
> > static void disable_scheduling_deregister(struct xe_guc *guc,
> > struct xe_exec_queue *q)
> > {
> > @@ -961,6 +963,17 @@ static void
> > disable_scheduling_deregister(struct xe_guc *guc,
> > xe_guc_ct_send(&guc->ct, action, ARRAY_SIZE(action),
> > G2H_LEN_DW_SCHED_CONTEXT_MODE_SET +
> > G2H_LEN_DW_DEREGISTER_CONTEXT, 2);
> > +
> > + ret = wait_event_timeout(guc->ct.wq,
> > + !exec_queue_pending_disable(q) ||
> > + xe_guc_read_stopped(guc),
> > + HZ * 5);
> > + if (!ret || xe_guc_read_stopped(guc)) {
> > + xe_gt_warn(guc_to_gt(guc), "Schedule disable failed
> > to respond");
> > + handle_deregister_done(guc, q);
> > + xe_gt_reset_async(q->gt);
> > + }
> > +
>
> I thought I already stated this in eariler reviews - this path is
> designed to be fully async (i.e., no blocking here). If H2G get lost
> for
> whatever reason the driver should be smart enough to cleanup the
> memory
> references assicoiated for the lost H2G.
No you're right and I remembered your initial comment here. I was
thinking since we already have a wait earlier in this function and we
have similar waits for most of the other GuC communications in the
registration/submit code that having that here follows the same
thought. I get your point though. I'll have a more async focused
solution in the next rev.
Thanks for the feedback!
-Stuart
>
> Matt
>
> > }
> >
> > static void xe_guc_exec_queue_trigger_cleanup(struct xe_exec_queue
> > *q)
> > --
> > 2.34.1
> >
^ permalink raw reply [flat|nested] 20+ messages in thread
* ✗ CI.checkpatch: warning for Fix a couple of wedge corner-case memory leaks (rev3)
2025-10-13 22:31 [PATCH 0/7] Fix a couple of wedge corner-case memory leaks Stuart Summers
` (6 preceding siblings ...)
2025-10-13 22:31 ` [PATCH 7/7] drm/xe: Check for GuC responses on disabling scheduling Stuart Summers
@ 2025-10-14 1:04 ` Patchwork
2025-10-14 1:05 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
10 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2025-10-14 1:04 UTC (permalink / raw)
To: Summers, Stuart; +Cc: intel-xe
== Series Details ==
Series: Fix a couple of wedge corner-case memory leaks (rev3)
URL : https://patchwork.freedesktop.org/series/155352/
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
fbd08a78c3a3bb17964db2a326514c69c1dca660
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 69f5300c9f271ba5369dae362ed165bb72423162
Author: Stuart Summers <stuart.summers@intel.com>
Date: Mon Oct 13 22:31:35 2025 +0000
drm/xe: Check for GuC responses on disabling scheduling
Currently if the GuC becomes unresponsive during a schedule
disable event, after we send the CT request, the driver
doesn't have a good way to recover. In most other cases,
we explicitly wait for GuC to respond by checking either
pending_enable, pending_disable, or some other state change
that we expect to be set after the response from GuC is
received for that particular request. Add a similar check
on the schedule disable side and make sure the queue state
for the queue being disabled is reset properly in that case.
v2: Only call the deregistration sequence since in this
case the scheduling handler should be reset during
the GT reset.
By doing that, we don't need a way to track the scheduling
disable request handler for that queue, making this sequence
simpler. As a result, don't mark the queue as banned.
Signed-off-by: Stuart Summers <stuart.summers@intel.com>
+ /mt/dim checkpatch c917f7d11493984be9f381ca0a7667bd3e587ada drm-intel
ee6969f4a46f drm/xe: Add additional trace points for LRCs
-:78: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#78: FILE: drivers/gpu/drm/xe/xe_trace_lrc.h:45:
+DECLARE_EVENT_CLASS(xe_lrc,
+ TP_PROTO(struct xe_lrc *lrc),
-:81: CHECK:OPEN_ENDED_LINE: Lines should not end with a '('
#81: FILE: drivers/gpu/drm/xe/xe_trace_lrc.h:48:
+ TP_STRUCT__entry(
-:87: CHECK:OPEN_ENDED_LINE: Lines should not end with a '('
#87: FILE: drivers/gpu/drm/xe/xe_trace_lrc.h:54:
+ TP_fast_assign(
total: 0 errors, 0 warnings, 3 checks, 91 lines checked
bd2cf772c9c8 drm/xe: Add a trace point for VM close
227f27fcd6b8 drm/xe: Add the BO pointer info to the BO trace
c273a5d1d3e9 drm/xe: Add new exec queue trace points
e577b27aead0 drm/xe: Correct migration VM teardown order
d1adf34919a6 drm/xe: Kick start GPU scheduler on teardown
69f5300c9f27 drm/xe: Check for GuC responses on disabling scheduling
^ permalink raw reply [flat|nested] 20+ messages in thread* ✓ CI.KUnit: success for Fix a couple of wedge corner-case memory leaks (rev3)
2025-10-13 22:31 [PATCH 0/7] Fix a couple of wedge corner-case memory leaks Stuart Summers
` (7 preceding siblings ...)
2025-10-14 1:04 ` ✗ CI.checkpatch: warning for Fix a couple of wedge corner-case memory leaks (rev3) Patchwork
@ 2025-10-14 1:05 ` Patchwork
2025-10-14 1:50 ` ✗ Xe.CI.BAT: failure " Patchwork
2025-10-14 10:02 ` ✗ Xe.CI.Full: " Patchwork
10 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2025-10-14 1:05 UTC (permalink / raw)
To: Summers, Stuart; +Cc: intel-xe
== Series Details ==
Series: Fix a couple of wedge corner-case memory leaks (rev3)
URL : https://patchwork.freedesktop.org/series/155352/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[01:04:04] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:04:08] 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
[01:04:39] Starting KUnit Kernel (1/1)...
[01:04:39] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:04:39] ================== guc_buf (11 subtests) ===================
[01:04:39] [PASSED] test_smallest
[01:04:39] [PASSED] test_largest
[01:04:39] [PASSED] test_granular
[01:04:39] [PASSED] test_unique
[01:04:39] [PASSED] test_overlap
[01:04:39] [PASSED] test_reusable
[01:04:39] [PASSED] test_too_big
[01:04:39] [PASSED] test_flush
[01:04:39] [PASSED] test_lookup
[01:04:39] [PASSED] test_data
[01:04:39] [PASSED] test_class
[01:04:39] ===================== [PASSED] guc_buf =====================
[01:04:39] =================== guc_dbm (7 subtests) ===================
[01:04:39] [PASSED] test_empty
[01:04:39] [PASSED] test_default
[01:04:39] ======================== test_size ========================
[01:04:39] [PASSED] 4
[01:04:39] [PASSED] 8
[01:04:39] [PASSED] 32
[01:04:39] [PASSED] 256
[01:04:39] ==================== [PASSED] test_size ====================
[01:04:39] ======================= test_reuse ========================
[01:04:39] [PASSED] 4
[01:04:39] [PASSED] 8
[01:04:39] [PASSED] 32
[01:04:39] [PASSED] 256
[01:04:39] =================== [PASSED] test_reuse ====================
[01:04:39] =================== test_range_overlap ====================
[01:04:39] [PASSED] 4
[01:04:39] [PASSED] 8
[01:04:39] [PASSED] 32
[01:04:39] [PASSED] 256
[01:04:39] =============== [PASSED] test_range_overlap ================
[01:04:39] =================== test_range_compact ====================
[01:04:39] [PASSED] 4
[01:04:39] [PASSED] 8
[01:04:39] [PASSED] 32
[01:04:39] [PASSED] 256
[01:04:39] =============== [PASSED] test_range_compact ================
[01:04:39] ==================== test_range_spare =====================
[01:04:39] [PASSED] 4
[01:04:39] [PASSED] 8
[01:04:39] [PASSED] 32
[01:04:39] [PASSED] 256
[01:04:39] ================ [PASSED] test_range_spare =================
[01:04:39] ===================== [PASSED] guc_dbm =====================
[01:04:39] =================== guc_idm (6 subtests) ===================
[01:04:39] [PASSED] bad_init
[01:04:39] [PASSED] no_init
[01:04:39] [PASSED] init_fini
[01:04:39] [PASSED] check_used
[01:04:39] [PASSED] check_quota
[01:04:39] [PASSED] check_all
[01:04:39] ===================== [PASSED] guc_idm =====================
[01:04:39] ================== no_relay (3 subtests) ===================
[01:04:39] [PASSED] xe_drops_guc2pf_if_not_ready
[01:04:39] [PASSED] xe_drops_guc2vf_if_not_ready
[01:04:39] [PASSED] xe_rejects_send_if_not_ready
[01:04:39] ==================== [PASSED] no_relay =====================
[01:04:39] ================== pf_relay (14 subtests) ==================
[01:04:39] [PASSED] pf_rejects_guc2pf_too_short
[01:04:39] [PASSED] pf_rejects_guc2pf_too_long
[01:04:39] [PASSED] pf_rejects_guc2pf_no_payload
[01:04:39] [PASSED] pf_fails_no_payload
[01:04:39] [PASSED] pf_fails_bad_origin
[01:04:39] [PASSED] pf_fails_bad_type
[01:04:39] [PASSED] pf_txn_reports_error
[01:04:39] [PASSED] pf_txn_sends_pf2guc
[01:04:39] [PASSED] pf_sends_pf2guc
[01:04:39] [SKIPPED] pf_loopback_nop
[01:04:39] [SKIPPED] pf_loopback_echo
[01:04:39] [SKIPPED] pf_loopback_fail
[01:04:39] [SKIPPED] pf_loopback_busy
[01:04:39] [SKIPPED] pf_loopback_retry
[01:04:39] ==================== [PASSED] pf_relay =====================
[01:04:39] ================== vf_relay (3 subtests) ===================
[01:04:39] [PASSED] vf_rejects_guc2vf_too_short
[01:04:39] [PASSED] vf_rejects_guc2vf_too_long
[01:04:39] [PASSED] vf_rejects_guc2vf_no_payload
[01:04:39] ==================== [PASSED] vf_relay =====================
[01:04:39] ===================== lmtt (1 subtest) =====================
[01:04:39] ======================== test_ops =========================
[01:04:39] [PASSED] 2-level
[01:04:39] [PASSED] multi-level
[01:04:39] ==================== [PASSED] test_ops =====================
[01:04:39] ====================== [PASSED] lmtt =======================
[01:04:39] ================= pf_service (11 subtests) =================
[01:04:39] [PASSED] pf_negotiate_any
[01:04:39] [PASSED] pf_negotiate_base_match
[01:04:39] [PASSED] pf_negotiate_base_newer
[01:04:39] [PASSED] pf_negotiate_base_next
[01:04:39] [SKIPPED] pf_negotiate_base_older
[01:04:39] [PASSED] pf_negotiate_base_prev
[01:04:39] [PASSED] pf_negotiate_latest_match
[01:04:39] [PASSED] pf_negotiate_latest_newer
[01:04:39] [PASSED] pf_negotiate_latest_next
[01:04:39] [SKIPPED] pf_negotiate_latest_older
[01:04:39] [SKIPPED] pf_negotiate_latest_prev
[01:04:39] =================== [PASSED] pf_service ====================
[01:04:39] ================= xe_guc_g2g (2 subtests) ==================
[01:04:39] ============== xe_live_guc_g2g_kunit_default ==============
[01:04:39] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[01:04:39] ============== xe_live_guc_g2g_kunit_allmem ===============
[01:04:39] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[01:04:39] =================== [SKIPPED] xe_guc_g2g ===================
[01:04:39] =================== xe_mocs (2 subtests) ===================
[01:04:39] ================ xe_live_mocs_kernel_kunit ================
[01:04:39] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[01:04:39] ================ xe_live_mocs_reset_kunit =================
[01:04:39] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[01:04:39] ==================== [SKIPPED] xe_mocs =====================
[01:04:39] ================= xe_migrate (2 subtests) ==================
[01:04:39] ================= xe_migrate_sanity_kunit =================
[01:04:39] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[01:04:39] ================== xe_validate_ccs_kunit ==================
[01:04:39] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[01:04:39] =================== [SKIPPED] xe_migrate ===================
[01:04:39] ================== xe_dma_buf (1 subtest) ==================
[01:04:39] ==================== xe_dma_buf_kunit =====================
[01:04:39] ================ [SKIPPED] xe_dma_buf_kunit ================
[01:04:39] =================== [SKIPPED] xe_dma_buf ===================
[01:04:39] ================= xe_bo_shrink (1 subtest) =================
[01:04:39] =================== xe_bo_shrink_kunit ====================
[01:04:39] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[01:04:39] ================== [SKIPPED] xe_bo_shrink ==================
[01:04:39] ==================== xe_bo (2 subtests) ====================
[01:04:39] ================== xe_ccs_migrate_kunit ===================
[01:04:39] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[01:04:39] ==================== xe_bo_evict_kunit ====================
[01:04:39] =============== [SKIPPED] xe_bo_evict_kunit ================
[01:04:39] ===================== [SKIPPED] xe_bo ======================
[01:04:39] ==================== args (11 subtests) ====================
[01:04:39] [PASSED] count_args_test
[01:04:39] [PASSED] call_args_example
[01:04:39] [PASSED] call_args_test
[01:04:39] [PASSED] drop_first_arg_example
[01:04:39] [PASSED] drop_first_arg_test
[01:04:39] [PASSED] first_arg_example
[01:04:39] [PASSED] first_arg_test
[01:04:39] [PASSED] last_arg_example
[01:04:39] [PASSED] last_arg_test
[01:04:39] [PASSED] pick_arg_example
[01:04:39] [PASSED] sep_comma_example
[01:04:39] ====================== [PASSED] args =======================
[01:04:39] =================== xe_pci (3 subtests) ====================
[01:04:39] ==================== check_graphics_ip ====================
[01:04:39] [PASSED] 12.00 Xe_LP
[01:04:39] [PASSED] 12.10 Xe_LP+
[01:04:39] [PASSED] 12.55 Xe_HPG
[01:04:39] [PASSED] 12.60 Xe_HPC
[01:04:39] [PASSED] 12.70 Xe_LPG
[01:04:39] [PASSED] 12.71 Xe_LPG
[01:04:39] [PASSED] 12.74 Xe_LPG+
[01:04:39] [PASSED] 20.01 Xe2_HPG
[01:04:39] [PASSED] 20.02 Xe2_HPG
[01:04:39] [PASSED] 20.04 Xe2_LPG
[01:04:39] [PASSED] 30.00 Xe3_LPG
[01:04:39] [PASSED] 30.01 Xe3_LPG
[01:04:39] [PASSED] 30.03 Xe3_LPG
[01:04:39] ================ [PASSED] check_graphics_ip ================
[01:04:39] ===================== check_media_ip ======================
[01:04:39] [PASSED] 12.00 Xe_M
[01:04:39] [PASSED] 12.55 Xe_HPM
[01:04:39] [PASSED] 13.00 Xe_LPM+
[01:04:39] [PASSED] 13.01 Xe2_HPM
[01:04:39] [PASSED] 20.00 Xe2_LPM
[01:04:39] [PASSED] 30.00 Xe3_LPM
[01:04:39] [PASSED] 30.02 Xe3_LPM
[01:04:39] ================= [PASSED] check_media_ip ==================
[01:04:39] ================= check_platform_gt_count =================
[01:04:39] [PASSED] 0x9A60 (TIGERLAKE)
[01:04:39] [PASSED] 0x9A68 (TIGERLAKE)
[01:04:39] [PASSED] 0x9A70 (TIGERLAKE)
[01:04:39] [PASSED] 0x9A40 (TIGERLAKE)
[01:04:39] [PASSED] 0x9A49 (TIGERLAKE)
[01:04:39] [PASSED] 0x9A59 (TIGERLAKE)
[01:04:39] [PASSED] 0x9A78 (TIGERLAKE)
[01:04:39] [PASSED] 0x9AC0 (TIGERLAKE)
[01:04:39] [PASSED] 0x9AC9 (TIGERLAKE)
[01:04:39] [PASSED] 0x9AD9 (TIGERLAKE)
[01:04:39] [PASSED] 0x9AF8 (TIGERLAKE)
[01:04:39] [PASSED] 0x4C80 (ROCKETLAKE)
[01:04:39] [PASSED] 0x4C8A (ROCKETLAKE)
[01:04:39] [PASSED] 0x4C8B (ROCKETLAKE)
[01:04:39] [PASSED] 0x4C8C (ROCKETLAKE)
[01:04:39] [PASSED] 0x4C90 (ROCKETLAKE)
[01:04:39] [PASSED] 0x4C9A (ROCKETLAKE)
[01:04:39] [PASSED] 0x4680 (ALDERLAKE_S)
[01:04:39] [PASSED] 0x4682 (ALDERLAKE_S)
[01:04:39] [PASSED] 0x4688 (ALDERLAKE_S)
[01:04:39] [PASSED] 0x468A (ALDERLAKE_S)
[01:04:39] [PASSED] 0x468B (ALDERLAKE_S)
[01:04:39] [PASSED] 0x4690 (ALDERLAKE_S)
[01:04:39] [PASSED] 0x4692 (ALDERLAKE_S)
[01:04:39] [PASSED] 0x4693 (ALDERLAKE_S)
[01:04:39] [PASSED] 0x46A0 (ALDERLAKE_P)
[01:04:39] [PASSED] 0x46A1 (ALDERLAKE_P)
[01:04:39] [PASSED] 0x46A2 (ALDERLAKE_P)
[01:04:39] [PASSED] 0x46A3 (ALDERLAKE_P)
[01:04:39] [PASSED] 0x46A6 (ALDERLAKE_P)
[01:04:39] [PASSED] 0x46A8 (ALDERLAKE_P)
[01:04:39] [PASSED] 0x46AA (ALDERLAKE_P)
[01:04:39] [PASSED] 0x462A (ALDERLAKE_P)
[01:04:39] [PASSED] 0x4626 (ALDERLAKE_P)
[01:04:39] [PASSED] 0x4628 (ALDERLAKE_P)
[01:04:39] [PASSED] 0x46B0 (ALDERLAKE_P)
[01:04:39] [PASSED] 0x46B1 (ALDERLAKE_P)
[01:04:39] [PASSED] 0x46B2 (ALDERLAKE_P)
[01:04:39] [PASSED] 0x46B3 (ALDERLAKE_P)
[01:04:39] [PASSED] 0x46C0 (ALDERLAKE_P)
[01:04:39] [PASSED] 0x46C1 (ALDERLAKE_P)
[01:04:39] [PASSED] 0x46C2 (ALDERLAKE_P)
[01:04:39] [PASSED] 0x46C3 (ALDERLAKE_P)
[01:04:39] [PASSED] 0x46D0 (ALDERLAKE_N)
[01:04:39] [PASSED] 0x46D1 (ALDERLAKE_N)
[01:04:39] [PASSED] 0x46D2 (ALDERLAKE_N)
[01:04:39] [PASSED] 0x46D3 (ALDERLAKE_N)
[01:04:39] [PASSED] 0x46D4 (ALDERLAKE_N)
[01:04:39] [PASSED] 0xA721 (ALDERLAKE_P)
[01:04:39] [PASSED] 0xA7A1 (ALDERLAKE_P)
[01:04:39] [PASSED] 0xA7A9 (ALDERLAKE_P)
[01:04:39] [PASSED] 0xA7AC (ALDERLAKE_P)
[01:04:39] [PASSED] 0xA7AD (ALDERLAKE_P)
[01:04:39] [PASSED] 0xA720 (ALDERLAKE_P)
[01:04:39] [PASSED] 0xA7A0 (ALDERLAKE_P)
[01:04:39] [PASSED] 0xA7A8 (ALDERLAKE_P)
[01:04:39] [PASSED] 0xA7AA (ALDERLAKE_P)
[01:04:39] [PASSED] 0xA7AB (ALDERLAKE_P)
[01:04:39] [PASSED] 0xA780 (ALDERLAKE_S)
[01:04:39] [PASSED] 0xA781 (ALDERLAKE_S)
[01:04:39] [PASSED] 0xA782 (ALDERLAKE_S)
[01:04:39] [PASSED] 0xA783 (ALDERLAKE_S)
[01:04:39] [PASSED] 0xA788 (ALDERLAKE_S)
[01:04:39] [PASSED] 0xA789 (ALDERLAKE_S)
[01:04:39] [PASSED] 0xA78A (ALDERLAKE_S)
[01:04:39] [PASSED] 0xA78B (ALDERLAKE_S)
[01:04:39] [PASSED] 0x4905 (DG1)
[01:04:39] [PASSED] 0x4906 (DG1)
[01:04:39] [PASSED] 0x4907 (DG1)
[01:04:39] [PASSED] 0x4908 (DG1)
[01:04:39] [PASSED] 0x4909 (DG1)
[01:04:39] [PASSED] 0x56C0 (DG2)
[01:04:39] [PASSED] 0x56C2 (DG2)
[01:04:39] [PASSED] 0x56C1 (DG2)
[01:04:39] [PASSED] 0x7D51 (METEORLAKE)
[01:04:39] [PASSED] 0x7DD1 (METEORLAKE)
[01:04:39] [PASSED] 0x7D41 (METEORLAKE)
[01:04:39] [PASSED] 0x7D67 (METEORLAKE)
[01:04:39] [PASSED] 0xB640 (METEORLAKE)
[01:04:39] [PASSED] 0x56A0 (DG2)
[01:04:39] [PASSED] 0x56A1 (DG2)
[01:04:39] [PASSED] 0x56A2 (DG2)
[01:04:39] [PASSED] 0x56BE (DG2)
[01:04:39] [PASSED] 0x56BF (DG2)
[01:04:39] [PASSED] 0x5690 (DG2)
[01:04:39] [PASSED] 0x5691 (DG2)
[01:04:39] [PASSED] 0x5692 (DG2)
[01:04:39] [PASSED] 0x56A5 (DG2)
[01:04:39] [PASSED] 0x56A6 (DG2)
[01:04:39] [PASSED] 0x56B0 (DG2)
[01:04:39] [PASSED] 0x56B1 (DG2)
[01:04:39] [PASSED] 0x56BA (DG2)
[01:04:39] [PASSED] 0x56BB (DG2)
[01:04:39] [PASSED] 0x56BC (DG2)
[01:04:39] [PASSED] 0x56BD (DG2)
[01:04:39] [PASSED] 0x5693 (DG2)
[01:04:39] [PASSED] 0x5694 (DG2)
[01:04:39] [PASSED] 0x5695 (DG2)
[01:04:39] [PASSED] 0x56A3 (DG2)
[01:04:39] [PASSED] 0x56A4 (DG2)
[01:04:39] [PASSED] 0x56B2 (DG2)
[01:04:39] [PASSED] 0x56B3 (DG2)
[01:04:39] [PASSED] 0x5696 (DG2)
[01:04:39] [PASSED] 0x5697 (DG2)
[01:04:39] [PASSED] 0xB69 (PVC)
[01:04:39] [PASSED] 0xB6E (PVC)
[01:04:39] [PASSED] 0xBD4 (PVC)
[01:04:39] [PASSED] 0xBD5 (PVC)
[01:04:39] [PASSED] 0xBD6 (PVC)
[01:04:39] [PASSED] 0xBD7 (PVC)
[01:04:39] [PASSED] 0xBD8 (PVC)
[01:04:39] [PASSED] 0xBD9 (PVC)
[01:04:39] [PASSED] 0xBDA (PVC)
[01:04:39] [PASSED] 0xBDB (PVC)
[01:04:39] [PASSED] 0xBE0 (PVC)
[01:04:39] [PASSED] 0xBE1 (PVC)
[01:04:39] [PASSED] 0xBE5 (PVC)
[01:04:39] [PASSED] 0x7D40 (METEORLAKE)
[01:04:39] [PASSED] 0x7D45 (METEORLAKE)
[01:04:39] [PASSED] 0x7D55 (METEORLAKE)
[01:04:39] [PASSED] 0x7D60 (METEORLAKE)
[01:04:39] [PASSED] 0x7DD5 (METEORLAKE)
[01:04:39] [PASSED] 0x6420 (LUNARLAKE)
[01:04:39] [PASSED] 0x64A0 (LUNARLAKE)
[01:04:39] [PASSED] 0x64B0 (LUNARLAKE)
[01:04:39] [PASSED] 0xE202 (BATTLEMAGE)
[01:04:39] [PASSED] 0xE209 (BATTLEMAGE)
[01:04:39] [PASSED] 0xE20B (BATTLEMAGE)
[01:04:39] [PASSED] 0xE20C (BATTLEMAGE)
[01:04:39] [PASSED] 0xE20D (BATTLEMAGE)
[01:04:39] [PASSED] 0xE210 (BATTLEMAGE)
[01:04:39] [PASSED] 0xE211 (BATTLEMAGE)
[01:04:39] [PASSED] 0xE212 (BATTLEMAGE)
[01:04:39] [PASSED] 0xE216 (BATTLEMAGE)
[01:04:39] [PASSED] 0xE220 (BATTLEMAGE)
[01:04:39] [PASSED] 0xE221 (BATTLEMAGE)
[01:04:39] [PASSED] 0xE222 (BATTLEMAGE)
[01:04:39] [PASSED] 0xE223 (BATTLEMAGE)
[01:04:39] [PASSED] 0xB080 (PANTHERLAKE)
[01:04:39] [PASSED] 0xB081 (PANTHERLAKE)
[01:04:39] [PASSED] 0xB082 (PANTHERLAKE)
[01:04:39] [PASSED] 0xB083 (PANTHERLAKE)
[01:04:39] [PASSED] 0xB084 (PANTHERLAKE)
[01:04:39] [PASSED] 0xB085 (PANTHERLAKE)
[01:04:39] [PASSED] 0xB086 (PANTHERLAKE)
[01:04:39] [PASSED] 0xB087 (PANTHERLAKE)
[01:04:39] [PASSED] 0xB08F (PANTHERLAKE)
[01:04:39] [PASSED] 0xB090 (PANTHERLAKE)
[01:04:39] [PASSED] 0xB0A0 (PANTHERLAKE)
[01:04:39] [PASSED] 0xB0B0 (PANTHERLAKE)
[01:04:39] [PASSED] 0xFD80 (PANTHERLAKE)
[01:04:39] [PASSED] 0xFD81 (PANTHERLAKE)
[01:04:39] ============= [PASSED] check_platform_gt_count =============
[01:04:39] ===================== [PASSED] xe_pci ======================
[01:04:39] =================== xe_rtp (2 subtests) ====================
[01:04:39] =============== xe_rtp_process_to_sr_tests ================
[01:04:39] [PASSED] coalesce-same-reg
[01:04:39] [PASSED] no-match-no-add
[01:04:39] [PASSED] match-or
[01:04:39] [PASSED] match-or-xfail
[01:04:39] [PASSED] no-match-no-add-multiple-rules
[01:04:39] [PASSED] two-regs-two-entries
[01:04:39] [PASSED] clr-one-set-other
[01:04:39] [PASSED] set-field
[01:04:39] [PASSED] conflict-duplicate
[01:04:39] [PASSED] conflict-not-disjoint
[01:04:39] [PASSED] conflict-reg-type
[01:04:39] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[01:04:39] ================== xe_rtp_process_tests ===================
[01:04:39] [PASSED] active1
[01:04:39] [PASSED] active2
[01:04:39] [PASSED] active-inactive
[01:04:39] [PASSED] inactive-active
[01:04:39] [PASSED] inactive-1st_or_active-inactive
[01:04:39] [PASSED] inactive-2nd_or_active-inactive
[01:04:39] [PASSED] inactive-last_or_active-inactive
[01:04:39] [PASSED] inactive-no_or_active-inactive
[01:04:39] ============== [PASSED] xe_rtp_process_tests ===============
[01:04:39] ===================== [PASSED] xe_rtp ======================
[01:04:39] ==================== xe_wa (1 subtest) =====================
[01:04:39] ======================== xe_wa_gt =========================
[01:04:39] [PASSED] TIGERLAKE B0
[01:04:39] [PASSED] DG1 A0
[01:04:39] [PASSED] DG1 B0
[01:04:39] [PASSED] ALDERLAKE_S A0
[01:04:39] [PASSED] ALDERLAKE_S B0
stty: 'standard input': Inappropriate ioctl for device
[01:04:39] [PASSED] ALDERLAKE_S C0
[01:04:39] [PASSED] ALDERLAKE_S D0
[01:04:39] [PASSED] ALDERLAKE_P A0
[01:04:39] [PASSED] ALDERLAKE_P B0
[01:04:39] [PASSED] ALDERLAKE_P C0
[01:04:39] [PASSED] ALDERLAKE_S RPLS D0
[01:04:39] [PASSED] ALDERLAKE_P RPLU E0
[01:04:39] [PASSED] DG2 G10 C0
[01:04:39] [PASSED] DG2 G11 B1
[01:04:39] [PASSED] DG2 G12 A1
[01:04:39] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[01:04:39] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[01:04:39] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[01:04:39] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[01:04:39] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[01:04:39] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[01:04:39] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[01:04:39] ==================== [PASSED] xe_wa_gt =====================
[01:04:39] ====================== [PASSED] xe_wa ======================
[01:04:39] ============================================================
[01:04:39] Testing complete. Ran 306 tests: passed: 288, skipped: 18
[01:04:39] Elapsed time: 35.085s total, 4.206s configuring, 30.512s building, 0.330s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[01:04:39] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:04:41] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[01:05:06] Starting KUnit Kernel (1/1)...
[01:05:06] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:05:06] ============ drm_test_pick_cmdline (2 subtests) ============
[01:05:06] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[01:05:06] =============== drm_test_pick_cmdline_named ===============
[01:05:06] [PASSED] NTSC
[01:05:06] [PASSED] NTSC-J
[01:05:06] [PASSED] PAL
[01:05:06] [PASSED] PAL-M
[01:05:06] =========== [PASSED] drm_test_pick_cmdline_named ===========
[01:05:06] ============== [PASSED] drm_test_pick_cmdline ==============
[01:05:06] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[01:05:06] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[01:05:06] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[01:05:06] =========== drm_validate_clone_mode (2 subtests) ===========
[01:05:06] ============== drm_test_check_in_clone_mode ===============
[01:05:06] [PASSED] in_clone_mode
[01:05:06] [PASSED] not_in_clone_mode
[01:05:06] ========== [PASSED] drm_test_check_in_clone_mode ===========
[01:05:06] =============== drm_test_check_valid_clones ===============
[01:05:06] [PASSED] not_in_clone_mode
[01:05:06] [PASSED] valid_clone
[01:05:06] [PASSED] invalid_clone
[01:05:06] =========== [PASSED] drm_test_check_valid_clones ===========
[01:05:06] ============= [PASSED] drm_validate_clone_mode =============
[01:05:06] ============= drm_validate_modeset (1 subtest) =============
[01:05:06] [PASSED] drm_test_check_connector_changed_modeset
[01:05:06] ============== [PASSED] drm_validate_modeset ===============
[01:05:06] ====== drm_test_bridge_get_current_state (2 subtests) ======
[01:05:06] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[01:05:06] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[01:05:06] ======== [PASSED] drm_test_bridge_get_current_state ========
[01:05:06] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[01:05:06] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[01:05:06] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[01:05:06] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[01:05:06] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[01:05:06] ============== drm_bridge_alloc (2 subtests) ===============
[01:05:06] [PASSED] drm_test_drm_bridge_alloc_basic
[01:05:06] [PASSED] drm_test_drm_bridge_alloc_get_put
[01:05:06] ================ [PASSED] drm_bridge_alloc =================
[01:05:06] ================== drm_buddy (8 subtests) ==================
[01:05:06] [PASSED] drm_test_buddy_alloc_limit
[01:05:06] [PASSED] drm_test_buddy_alloc_optimistic
[01:05:06] [PASSED] drm_test_buddy_alloc_pessimistic
[01:05:06] [PASSED] drm_test_buddy_alloc_pathological
[01:05:06] [PASSED] drm_test_buddy_alloc_contiguous
[01:05:06] [PASSED] drm_test_buddy_alloc_clear
[01:05:06] [PASSED] drm_test_buddy_alloc_range_bias
[01:05:06] [PASSED] drm_test_buddy_fragmentation_performance
[01:05:06] ==================== [PASSED] drm_buddy ====================
[01:05:06] ============= drm_cmdline_parser (40 subtests) =============
[01:05:06] [PASSED] drm_test_cmdline_force_d_only
[01:05:06] [PASSED] drm_test_cmdline_force_D_only_dvi
[01:05:06] [PASSED] drm_test_cmdline_force_D_only_hdmi
[01:05:06] [PASSED] drm_test_cmdline_force_D_only_not_digital
[01:05:06] [PASSED] drm_test_cmdline_force_e_only
[01:05:06] [PASSED] drm_test_cmdline_res
[01:05:06] [PASSED] drm_test_cmdline_res_vesa
[01:05:06] [PASSED] drm_test_cmdline_res_vesa_rblank
[01:05:06] [PASSED] drm_test_cmdline_res_rblank
[01:05:06] [PASSED] drm_test_cmdline_res_bpp
[01:05:06] [PASSED] drm_test_cmdline_res_refresh
[01:05:06] [PASSED] drm_test_cmdline_res_bpp_refresh
[01:05:06] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[01:05:06] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[01:05:06] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[01:05:06] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[01:05:06] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[01:05:06] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[01:05:06] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[01:05:06] [PASSED] drm_test_cmdline_res_margins_force_on
[01:05:06] [PASSED] drm_test_cmdline_res_vesa_margins
[01:05:06] [PASSED] drm_test_cmdline_name
[01:05:06] [PASSED] drm_test_cmdline_name_bpp
[01:05:06] [PASSED] drm_test_cmdline_name_option
[01:05:06] [PASSED] drm_test_cmdline_name_bpp_option
[01:05:06] [PASSED] drm_test_cmdline_rotate_0
[01:05:06] [PASSED] drm_test_cmdline_rotate_90
[01:05:06] [PASSED] drm_test_cmdline_rotate_180
[01:05:06] [PASSED] drm_test_cmdline_rotate_270
[01:05:06] [PASSED] drm_test_cmdline_hmirror
[01:05:06] [PASSED] drm_test_cmdline_vmirror
[01:05:06] [PASSED] drm_test_cmdline_margin_options
[01:05:06] [PASSED] drm_test_cmdline_multiple_options
[01:05:06] [PASSED] drm_test_cmdline_bpp_extra_and_option
[01:05:06] [PASSED] drm_test_cmdline_extra_and_option
[01:05:06] [PASSED] drm_test_cmdline_freestanding_options
[01:05:06] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[01:05:06] [PASSED] drm_test_cmdline_panel_orientation
[01:05:06] ================ drm_test_cmdline_invalid =================
[01:05:06] [PASSED] margin_only
[01:05:06] [PASSED] interlace_only
[01:05:06] [PASSED] res_missing_x
[01:05:06] [PASSED] res_missing_y
[01:05:06] [PASSED] res_bad_y
[01:05:06] [PASSED] res_missing_y_bpp
[01:05:06] [PASSED] res_bad_bpp
[01:05:06] [PASSED] res_bad_refresh
[01:05:06] [PASSED] res_bpp_refresh_force_on_off
[01:05:06] [PASSED] res_invalid_mode
[01:05:06] [PASSED] res_bpp_wrong_place_mode
[01:05:06] [PASSED] name_bpp_refresh
[01:05:06] [PASSED] name_refresh
[01:05:06] [PASSED] name_refresh_wrong_mode
[01:05:06] [PASSED] name_refresh_invalid_mode
[01:05:06] [PASSED] rotate_multiple
[01:05:06] [PASSED] rotate_invalid_val
[01:05:06] [PASSED] rotate_truncated
[01:05:06] [PASSED] invalid_option
[01:05:06] [PASSED] invalid_tv_option
[01:05:06] [PASSED] truncated_tv_option
[01:05:06] ============ [PASSED] drm_test_cmdline_invalid =============
[01:05:06] =============== drm_test_cmdline_tv_options ===============
[01:05:06] [PASSED] NTSC
[01:05:06] [PASSED] NTSC_443
[01:05:06] [PASSED] NTSC_J
[01:05:06] [PASSED] PAL
[01:05:06] [PASSED] PAL_M
[01:05:06] [PASSED] PAL_N
[01:05:06] [PASSED] SECAM
[01:05:06] [PASSED] MONO_525
[01:05:06] [PASSED] MONO_625
[01:05:06] =========== [PASSED] drm_test_cmdline_tv_options ===========
[01:05:06] =============== [PASSED] drm_cmdline_parser ================
[01:05:06] ========== drmm_connector_hdmi_init (20 subtests) ==========
[01:05:06] [PASSED] drm_test_connector_hdmi_init_valid
[01:05:06] [PASSED] drm_test_connector_hdmi_init_bpc_8
[01:05:06] [PASSED] drm_test_connector_hdmi_init_bpc_10
[01:05:06] [PASSED] drm_test_connector_hdmi_init_bpc_12
[01:05:06] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[01:05:06] [PASSED] drm_test_connector_hdmi_init_bpc_null
[01:05:06] [PASSED] drm_test_connector_hdmi_init_formats_empty
[01:05:06] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[01:05:06] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[01:05:06] [PASSED] supported_formats=0x9 yuv420_allowed=1
[01:05:06] [PASSED] supported_formats=0x9 yuv420_allowed=0
[01:05:06] [PASSED] supported_formats=0x3 yuv420_allowed=1
[01:05:06] [PASSED] supported_formats=0x3 yuv420_allowed=0
[01:05:06] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[01:05:06] [PASSED] drm_test_connector_hdmi_init_null_ddc
[01:05:06] [PASSED] drm_test_connector_hdmi_init_null_product
[01:05:06] [PASSED] drm_test_connector_hdmi_init_null_vendor
[01:05:06] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[01:05:06] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[01:05:06] [PASSED] drm_test_connector_hdmi_init_product_valid
[01:05:06] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[01:05:06] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[01:05:06] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[01:05:06] ========= drm_test_connector_hdmi_init_type_valid =========
[01:05:06] [PASSED] HDMI-A
[01:05:06] [PASSED] HDMI-B
[01:05:06] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[01:05:06] ======== drm_test_connector_hdmi_init_type_invalid ========
[01:05:06] [PASSED] Unknown
[01:05:06] [PASSED] VGA
[01:05:06] [PASSED] DVI-I
[01:05:06] [PASSED] DVI-D
[01:05:06] [PASSED] DVI-A
[01:05:06] [PASSED] Composite
[01:05:06] [PASSED] SVIDEO
[01:05:06] [PASSED] LVDS
[01:05:06] [PASSED] Component
[01:05:06] [PASSED] DIN
[01:05:06] [PASSED] DP
[01:05:06] [PASSED] TV
[01:05:06] [PASSED] eDP
[01:05:06] [PASSED] Virtual
[01:05:06] [PASSED] DSI
[01:05:06] [PASSED] DPI
[01:05:06] [PASSED] Writeback
[01:05:06] [PASSED] SPI
[01:05:06] [PASSED] USB
[01:05:06] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[01:05:06] ============ [PASSED] drmm_connector_hdmi_init =============
[01:05:06] ============= drmm_connector_init (3 subtests) =============
[01:05:06] [PASSED] drm_test_drmm_connector_init
[01:05:06] [PASSED] drm_test_drmm_connector_init_null_ddc
[01:05:06] ========= drm_test_drmm_connector_init_type_valid =========
[01:05:06] [PASSED] Unknown
[01:05:06] [PASSED] VGA
[01:05:06] [PASSED] DVI-I
[01:05:06] [PASSED] DVI-D
[01:05:06] [PASSED] DVI-A
[01:05:06] [PASSED] Composite
[01:05:06] [PASSED] SVIDEO
[01:05:06] [PASSED] LVDS
[01:05:06] [PASSED] Component
[01:05:06] [PASSED] DIN
[01:05:06] [PASSED] DP
[01:05:06] [PASSED] HDMI-A
[01:05:06] [PASSED] HDMI-B
[01:05:06] [PASSED] TV
[01:05:06] [PASSED] eDP
[01:05:06] [PASSED] Virtual
[01:05:06] [PASSED] DSI
[01:05:06] [PASSED] DPI
[01:05:06] [PASSED] Writeback
[01:05:06] [PASSED] SPI
[01:05:06] [PASSED] USB
[01:05:06] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[01:05:06] =============== [PASSED] drmm_connector_init ===============
[01:05:06] ========= drm_connector_dynamic_init (6 subtests) ==========
[01:05:06] [PASSED] drm_test_drm_connector_dynamic_init
[01:05:06] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[01:05:06] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[01:05:06] [PASSED] drm_test_drm_connector_dynamic_init_properties
[01:05:06] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[01:05:06] [PASSED] Unknown
[01:05:06] [PASSED] VGA
[01:05:06] [PASSED] DVI-I
[01:05:06] [PASSED] DVI-D
[01:05:06] [PASSED] DVI-A
[01:05:06] [PASSED] Composite
[01:05:06] [PASSED] SVIDEO
[01:05:06] [PASSED] LVDS
[01:05:06] [PASSED] Component
[01:05:06] [PASSED] DIN
[01:05:06] [PASSED] DP
[01:05:06] [PASSED] HDMI-A
[01:05:06] [PASSED] HDMI-B
[01:05:06] [PASSED] TV
[01:05:06] [PASSED] eDP
[01:05:06] [PASSED] Virtual
[01:05:06] [PASSED] DSI
[01:05:06] [PASSED] DPI
[01:05:06] [PASSED] Writeback
[01:05:06] [PASSED] SPI
[01:05:06] [PASSED] USB
[01:05:06] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[01:05:06] ======== drm_test_drm_connector_dynamic_init_name =========
[01:05:06] [PASSED] Unknown
[01:05:06] [PASSED] VGA
[01:05:06] [PASSED] DVI-I
[01:05:06] [PASSED] DVI-D
[01:05:06] [PASSED] DVI-A
[01:05:06] [PASSED] Composite
[01:05:06] [PASSED] SVIDEO
[01:05:06] [PASSED] LVDS
[01:05:06] [PASSED] Component
[01:05:06] [PASSED] DIN
[01:05:06] [PASSED] DP
[01:05:06] [PASSED] HDMI-A
[01:05:06] [PASSED] HDMI-B
[01:05:06] [PASSED] TV
[01:05:06] [PASSED] eDP
[01:05:06] [PASSED] Virtual
[01:05:06] [PASSED] DSI
[01:05:06] [PASSED] DPI
[01:05:06] [PASSED] Writeback
[01:05:06] [PASSED] SPI
[01:05:06] [PASSED] USB
[01:05:06] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[01:05:06] =========== [PASSED] drm_connector_dynamic_init ============
[01:05:06] ==== drm_connector_dynamic_register_early (4 subtests) =====
[01:05:06] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[01:05:06] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[01:05:06] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[01:05:06] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[01:05:06] ====== [PASSED] drm_connector_dynamic_register_early =======
[01:05:06] ======= drm_connector_dynamic_register (7 subtests) ========
[01:05:06] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[01:05:06] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[01:05:06] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[01:05:06] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[01:05:06] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[01:05:06] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[01:05:06] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[01:05:06] ========= [PASSED] drm_connector_dynamic_register ==========
[01:05:06] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[01:05:06] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[01:05:06] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[01:05:06] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[01:05:06] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[01:05:06] ========== drm_test_get_tv_mode_from_name_valid ===========
[01:05:06] [PASSED] NTSC
[01:05:06] [PASSED] NTSC-443
[01:05:06] [PASSED] NTSC-J
[01:05:06] [PASSED] PAL
[01:05:06] [PASSED] PAL-M
[01:05:06] [PASSED] PAL-N
[01:05:06] [PASSED] SECAM
[01:05:06] [PASSED] Mono
[01:05:06] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[01:05:06] [PASSED] drm_test_get_tv_mode_from_name_truncated
[01:05:06] ============ [PASSED] drm_get_tv_mode_from_name ============
[01:05:06] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[01:05:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[01:05:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[01:05:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[01:05:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[01:05:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[01:05:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[01:05:06] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[01:05:06] [PASSED] VIC 96
[01:05:06] [PASSED] VIC 97
[01:05:06] [PASSED] VIC 101
[01:05:06] [PASSED] VIC 102
[01:05:06] [PASSED] VIC 106
[01:05:06] [PASSED] VIC 107
[01:05:06] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[01:05:06] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[01:05:06] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[01:05:06] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[01:05:06] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[01:05:06] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[01:05:06] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[01:05:06] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[01:05:06] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[01:05:06] [PASSED] Automatic
[01:05:06] [PASSED] Full
[01:05:06] [PASSED] Limited 16:235
[01:05:06] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[01:05:06] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[01:05:06] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[01:05:06] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[01:05:06] === drm_test_drm_hdmi_connector_get_output_format_name ====
[01:05:06] [PASSED] RGB
[01:05:06] [PASSED] YUV 4:2:0
[01:05:06] [PASSED] YUV 4:2:2
[01:05:06] [PASSED] YUV 4:4:4
[01:05:06] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[01:05:06] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[01:05:06] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[01:05:06] ============= drm_damage_helper (21 subtests) ==============
[01:05:06] [PASSED] drm_test_damage_iter_no_damage
[01:05:06] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[01:05:06] [PASSED] drm_test_damage_iter_no_damage_src_moved
[01:05:06] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[01:05:06] [PASSED] drm_test_damage_iter_no_damage_not_visible
[01:05:06] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[01:05:06] [PASSED] drm_test_damage_iter_no_damage_no_fb
[01:05:06] [PASSED] drm_test_damage_iter_simple_damage
[01:05:06] [PASSED] drm_test_damage_iter_single_damage
[01:05:06] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[01:05:06] [PASSED] drm_test_damage_iter_single_damage_outside_src
[01:05:06] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[01:05:06] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[01:05:06] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[01:05:06] [PASSED] drm_test_damage_iter_single_damage_src_moved
[01:05:06] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[01:05:06] [PASSED] drm_test_damage_iter_damage
[01:05:06] [PASSED] drm_test_damage_iter_damage_one_intersect
[01:05:06] [PASSED] drm_test_damage_iter_damage_one_outside
[01:05:06] [PASSED] drm_test_damage_iter_damage_src_moved
[01:05:06] [PASSED] drm_test_damage_iter_damage_not_visible
[01:05:06] ================ [PASSED] drm_damage_helper ================
[01:05:06] ============== drm_dp_mst_helper (3 subtests) ==============
[01:05:06] ============== drm_test_dp_mst_calc_pbn_mode ==============
[01:05:06] [PASSED] Clock 154000 BPP 30 DSC disabled
[01:05:06] [PASSED] Clock 234000 BPP 30 DSC disabled
[01:05:06] [PASSED] Clock 297000 BPP 24 DSC disabled
[01:05:06] [PASSED] Clock 332880 BPP 24 DSC enabled
[01:05:06] [PASSED] Clock 324540 BPP 24 DSC enabled
[01:05:06] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[01:05:06] ============== drm_test_dp_mst_calc_pbn_div ===============
[01:05:06] [PASSED] Link rate 2000000 lane count 4
[01:05:06] [PASSED] Link rate 2000000 lane count 2
[01:05:06] [PASSED] Link rate 2000000 lane count 1
[01:05:06] [PASSED] Link rate 1350000 lane count 4
[01:05:06] [PASSED] Link rate 1350000 lane count 2
[01:05:06] [PASSED] Link rate 1350000 lane count 1
[01:05:06] [PASSED] Link rate 1000000 lane count 4
[01:05:06] [PASSED] Link rate 1000000 lane count 2
[01:05:06] [PASSED] Link rate 1000000 lane count 1
[01:05:06] [PASSED] Link rate 810000 lane count 4
[01:05:06] [PASSED] Link rate 810000 lane count 2
[01:05:06] [PASSED] Link rate 810000 lane count 1
[01:05:06] [PASSED] Link rate 540000 lane count 4
[01:05:06] [PASSED] Link rate 540000 lane count 2
[01:05:06] [PASSED] Link rate 540000 lane count 1
[01:05:06] [PASSED] Link rate 270000 lane count 4
[01:05:06] [PASSED] Link rate 270000 lane count 2
[01:05:06] [PASSED] Link rate 270000 lane count 1
[01:05:06] [PASSED] Link rate 162000 lane count 4
[01:05:06] [PASSED] Link rate 162000 lane count 2
[01:05:06] [PASSED] Link rate 162000 lane count 1
[01:05:06] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[01:05:06] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[01:05:06] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[01:05:06] [PASSED] DP_POWER_UP_PHY with port number
[01:05:06] [PASSED] DP_POWER_DOWN_PHY with port number
[01:05:06] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[01:05:06] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[01:05:06] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[01:05:06] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[01:05:06] [PASSED] DP_QUERY_PAYLOAD with port number
[01:05:06] [PASSED] DP_QUERY_PAYLOAD with VCPI
[01:05:06] [PASSED] DP_REMOTE_DPCD_READ with port number
[01:05:06] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[01:05:06] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[01:05:06] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[01:05:06] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[01:05:06] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[01:05:06] [PASSED] DP_REMOTE_I2C_READ with port number
[01:05:06] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[01:05:06] [PASSED] DP_REMOTE_I2C_READ with transactions array
[01:05:06] [PASSED] DP_REMOTE_I2C_WRITE with port number
[01:05:06] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[01:05:06] [PASSED] DP_REMOTE_I2C_WRITE with data array
[01:05:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[01:05:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[01:05:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[01:05:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[01:05:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[01:05:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[01:05:06] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[01:05:06] ================ [PASSED] drm_dp_mst_helper ================
[01:05:06] ================== drm_exec (7 subtests) ===================
[01:05:06] [PASSED] sanitycheck
[01:05:06] [PASSED] test_lock
[01:05:06] [PASSED] test_lock_unlock
[01:05:06] [PASSED] test_duplicates
[01:05:06] [PASSED] test_prepare
[01:05:06] [PASSED] test_prepare_array
[01:05:06] [PASSED] test_multiple_loops
[01:05:06] ==================== [PASSED] drm_exec =====================
[01:05:06] =========== drm_format_helper_test (17 subtests) ===========
[01:05:06] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[01:05:06] [PASSED] single_pixel_source_buffer
[01:05:06] [PASSED] single_pixel_clip_rectangle
[01:05:06] [PASSED] well_known_colors
[01:05:06] [PASSED] destination_pitch
[01:05:06] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[01:05:06] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[01:05:06] [PASSED] single_pixel_source_buffer
[01:05:06] [PASSED] single_pixel_clip_rectangle
[01:05:06] [PASSED] well_known_colors
[01:05:06] [PASSED] destination_pitch
[01:05:06] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[01:05:06] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[01:05:06] [PASSED] single_pixel_source_buffer
[01:05:06] [PASSED] single_pixel_clip_rectangle
[01:05:06] [PASSED] well_known_colors
[01:05:06] [PASSED] destination_pitch
[01:05:06] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[01:05:06] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[01:05:06] [PASSED] single_pixel_source_buffer
[01:05:06] [PASSED] single_pixel_clip_rectangle
[01:05:06] [PASSED] well_known_colors
[01:05:06] [PASSED] destination_pitch
[01:05:06] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[01:05:06] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[01:05:06] [PASSED] single_pixel_source_buffer
[01:05:06] [PASSED] single_pixel_clip_rectangle
[01:05:06] [PASSED] well_known_colors
[01:05:06] [PASSED] destination_pitch
[01:05:06] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[01:05:06] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[01:05:06] [PASSED] single_pixel_source_buffer
[01:05:06] [PASSED] single_pixel_clip_rectangle
[01:05:06] [PASSED] well_known_colors
[01:05:06] [PASSED] destination_pitch
[01:05:06] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[01:05:06] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[01:05:06] [PASSED] single_pixel_source_buffer
[01:05:06] [PASSED] single_pixel_clip_rectangle
[01:05:06] [PASSED] well_known_colors
[01:05:06] [PASSED] destination_pitch
[01:05:06] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[01:05:06] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[01:05:06] [PASSED] single_pixel_source_buffer
[01:05:06] [PASSED] single_pixel_clip_rectangle
[01:05:06] [PASSED] well_known_colors
[01:05:06] [PASSED] destination_pitch
[01:05:06] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[01:05:06] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[01:05:06] [PASSED] single_pixel_source_buffer
[01:05:06] [PASSED] single_pixel_clip_rectangle
[01:05:06] [PASSED] well_known_colors
[01:05:06] [PASSED] destination_pitch
[01:05:06] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[01:05:06] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[01:05:06] [PASSED] single_pixel_source_buffer
[01:05:06] [PASSED] single_pixel_clip_rectangle
[01:05:06] [PASSED] well_known_colors
[01:05:06] [PASSED] destination_pitch
[01:05:06] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[01:05:06] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[01:05:06] [PASSED] single_pixel_source_buffer
[01:05:06] [PASSED] single_pixel_clip_rectangle
[01:05:06] [PASSED] well_known_colors
[01:05:06] [PASSED] destination_pitch
[01:05:06] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[01:05:06] ============== drm_test_fb_xrgb8888_to_mono ===============
[01:05:06] [PASSED] single_pixel_source_buffer
[01:05:06] [PASSED] single_pixel_clip_rectangle
[01:05:06] [PASSED] well_known_colors
[01:05:06] [PASSED] destination_pitch
[01:05:06] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[01:05:06] ==================== drm_test_fb_swab =====================
[01:05:06] [PASSED] single_pixel_source_buffer
[01:05:06] [PASSED] single_pixel_clip_rectangle
[01:05:06] [PASSED] well_known_colors
[01:05:06] [PASSED] destination_pitch
[01:05:06] ================ [PASSED] drm_test_fb_swab =================
[01:05:06] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[01:05:06] [PASSED] single_pixel_source_buffer
[01:05:06] [PASSED] single_pixel_clip_rectangle
[01:05:06] [PASSED] well_known_colors
[01:05:06] [PASSED] destination_pitch
[01:05:06] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[01:05:06] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[01:05:06] [PASSED] single_pixel_source_buffer
[01:05:06] [PASSED] single_pixel_clip_rectangle
[01:05:06] [PASSED] well_known_colors
[01:05:06] [PASSED] destination_pitch
[01:05:06] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[01:05:06] ================= drm_test_fb_clip_offset =================
[01:05:06] [PASSED] pass through
[01:05:06] [PASSED] horizontal offset
[01:05:06] [PASSED] vertical offset
[01:05:06] [PASSED] horizontal and vertical offset
[01:05:06] [PASSED] horizontal offset (custom pitch)
[01:05:06] [PASSED] vertical offset (custom pitch)
[01:05:06] [PASSED] horizontal and vertical offset (custom pitch)
[01:05:06] ============= [PASSED] drm_test_fb_clip_offset =============
[01:05:06] =================== drm_test_fb_memcpy ====================
[01:05:06] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[01:05:06] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[01:05:06] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[01:05:06] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[01:05:06] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[01:05:06] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[01:05:06] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[01:05:06] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[01:05:06] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[01:05:06] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[01:05:06] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[01:05:06] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[01:05:06] =============== [PASSED] drm_test_fb_memcpy ================
[01:05:06] ============= [PASSED] drm_format_helper_test ==============
[01:05:06] ================= drm_format (18 subtests) =================
[01:05:06] [PASSED] drm_test_format_block_width_invalid
[01:05:06] [PASSED] drm_test_format_block_width_one_plane
[01:05:06] [PASSED] drm_test_format_block_width_two_plane
[01:05:06] [PASSED] drm_test_format_block_width_three_plane
[01:05:06] [PASSED] drm_test_format_block_width_tiled
[01:05:06] [PASSED] drm_test_format_block_height_invalid
[01:05:06] [PASSED] drm_test_format_block_height_one_plane
[01:05:06] [PASSED] drm_test_format_block_height_two_plane
[01:05:06] [PASSED] drm_test_format_block_height_three_plane
[01:05:06] [PASSED] drm_test_format_block_height_tiled
[01:05:06] [PASSED] drm_test_format_min_pitch_invalid
[01:05:06] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[01:05:06] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[01:05:06] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[01:05:06] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[01:05:06] [PASSED] drm_test_format_min_pitch_two_plane
[01:05:06] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[01:05:06] [PASSED] drm_test_format_min_pitch_tiled
[01:05:06] =================== [PASSED] drm_format ====================
[01:05:06] ============== drm_framebuffer (10 subtests) ===============
[01:05:06] ========== drm_test_framebuffer_check_src_coords ==========
[01:05:06] [PASSED] Success: source fits into fb
[01:05:06] [PASSED] Fail: overflowing fb with x-axis coordinate
[01:05:06] [PASSED] Fail: overflowing fb with y-axis coordinate
[01:05:06] [PASSED] Fail: overflowing fb with source width
[01:05:06] [PASSED] Fail: overflowing fb with source height
[01:05:06] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[01:05:06] [PASSED] drm_test_framebuffer_cleanup
[01:05:06] =============== drm_test_framebuffer_create ===============
[01:05:06] [PASSED] ABGR8888 normal sizes
[01:05:06] [PASSED] ABGR8888 max sizes
[01:05:06] [PASSED] ABGR8888 pitch greater than min required
[01:05:06] [PASSED] ABGR8888 pitch less than min required
[01:05:06] [PASSED] ABGR8888 Invalid width
[01:05:06] [PASSED] ABGR8888 Invalid buffer handle
[01:05:06] [PASSED] No pixel format
[01:05:06] [PASSED] ABGR8888 Width 0
[01:05:06] [PASSED] ABGR8888 Height 0
[01:05:06] [PASSED] ABGR8888 Out of bound height * pitch combination
[01:05:06] [PASSED] ABGR8888 Large buffer offset
[01:05:06] [PASSED] ABGR8888 Buffer offset for inexistent plane
[01:05:06] [PASSED] ABGR8888 Invalid flag
[01:05:06] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[01:05:06] [PASSED] ABGR8888 Valid buffer modifier
[01:05:06] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[01:05:06] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[01:05:06] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[01:05:06] [PASSED] NV12 Normal sizes
[01:05:06] [PASSED] NV12 Max sizes
[01:05:06] [PASSED] NV12 Invalid pitch
[01:05:06] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[01:05:06] [PASSED] NV12 different modifier per-plane
[01:05:06] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[01:05:06] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[01:05:06] [PASSED] NV12 Modifier for inexistent plane
[01:05:06] [PASSED] NV12 Handle for inexistent plane
[01:05:06] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[01:05:06] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[01:05:06] [PASSED] YVU420 Normal sizes
[01:05:06] [PASSED] YVU420 Max sizes
[01:05:06] [PASSED] YVU420 Invalid pitch
[01:05:06] [PASSED] YVU420 Different pitches
[01:05:06] [PASSED] YVU420 Different buffer offsets/pitches
[01:05:06] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[01:05:06] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[01:05:06] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[01:05:06] [PASSED] YVU420 Valid modifier
[01:05:06] [PASSED] YVU420 Different modifiers per plane
[01:05:06] [PASSED] YVU420 Modifier for inexistent plane
[01:05:06] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[01:05:06] [PASSED] X0L2 Normal sizes
[01:05:06] [PASSED] X0L2 Max sizes
[01:05:06] [PASSED] X0L2 Invalid pitch
[01:05:06] [PASSED] X0L2 Pitch greater than minimum required
[01:05:06] [PASSED] X0L2 Handle for inexistent plane
[01:05:06] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[01:05:06] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[01:05:06] [PASSED] X0L2 Valid modifier
[01:05:06] [PASSED] X0L2 Modifier for inexistent plane
[01:05:06] =========== [PASSED] drm_test_framebuffer_create ===========
[01:05:06] [PASSED] drm_test_framebuffer_free
[01:05:06] [PASSED] drm_test_framebuffer_init
[01:05:06] [PASSED] drm_test_framebuffer_init_bad_format
[01:05:06] [PASSED] drm_test_framebuffer_init_dev_mismatch
[01:05:06] [PASSED] drm_test_framebuffer_lookup
[01:05:06] [PASSED] drm_test_framebuffer_lookup_inexistent
[01:05:06] [PASSED] drm_test_framebuffer_modifiers_not_supported
[01:05:06] ================= [PASSED] drm_framebuffer =================
[01:05:06] ================ drm_gem_shmem (8 subtests) ================
[01:05:06] [PASSED] drm_gem_shmem_test_obj_create
[01:05:06] [PASSED] drm_gem_shmem_test_obj_create_private
[01:05:06] [PASSED] drm_gem_shmem_test_pin_pages
[01:05:06] [PASSED] drm_gem_shmem_test_vmap
[01:05:06] [PASSED] drm_gem_shmem_test_get_pages_sgt
[01:05:06] [PASSED] drm_gem_shmem_test_get_sg_table
[01:05:06] [PASSED] drm_gem_shmem_test_madvise
[01:05:06] [PASSED] drm_gem_shmem_test_purge
[01:05:06] ================== [PASSED] drm_gem_shmem ==================
[01:05:06] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[01:05:06] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[01:05:06] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[01:05:06] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[01:05:06] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[01:05:06] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[01:05:06] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[01:05:06] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[01:05:06] [PASSED] Automatic
[01:05:06] [PASSED] Full
[01:05:06] [PASSED] Limited 16:235
[01:05:06] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[01:05:06] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[01:05:06] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[01:05:06] [PASSED] drm_test_check_disable_connector
[01:05:06] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[01:05:06] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[01:05:06] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[01:05:06] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[01:05:06] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[01:05:06] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[01:05:06] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[01:05:06] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[01:05:06] [PASSED] drm_test_check_output_bpc_dvi
[01:05:06] [PASSED] drm_test_check_output_bpc_format_vic_1
[01:05:06] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[01:05:06] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[01:05:06] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[01:05:06] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[01:05:06] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[01:05:06] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[01:05:06] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[01:05:06] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[01:05:06] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[01:05:06] [PASSED] drm_test_check_broadcast_rgb_value
[01:05:06] [PASSED] drm_test_check_bpc_8_value
[01:05:06] [PASSED] drm_test_check_bpc_10_value
[01:05:06] [PASSED] drm_test_check_bpc_12_value
[01:05:06] [PASSED] drm_test_check_format_value
[01:05:06] [PASSED] drm_test_check_tmds_char_value
[01:05:06] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[01:05:06] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[01:05:06] [PASSED] drm_test_check_mode_valid
[01:05:06] [PASSED] drm_test_check_mode_valid_reject
[01:05:06] [PASSED] drm_test_check_mode_valid_reject_rate
[01:05:06] [PASSED] drm_test_check_mode_valid_reject_max_clock
[01:05:06] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[01:05:06] ================= drm_managed (2 subtests) =================
[01:05:06] [PASSED] drm_test_managed_release_action
[01:05:06] [PASSED] drm_test_managed_run_action
[01:05:06] =================== [PASSED] drm_managed ===================
[01:05:06] =================== drm_mm (6 subtests) ====================
[01:05:06] [PASSED] drm_test_mm_init
[01:05:06] [PASSED] drm_test_mm_debug
[01:05:06] [PASSED] drm_test_mm_align32
[01:05:06] [PASSED] drm_test_mm_align64
[01:05:06] [PASSED] drm_test_mm_lowest
[01:05:06] [PASSED] drm_test_mm_highest
[01:05:06] ===================== [PASSED] drm_mm ======================
[01:05:06] ============= drm_modes_analog_tv (5 subtests) =============
[01:05:06] [PASSED] drm_test_modes_analog_tv_mono_576i
[01:05:06] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[01:05:06] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[01:05:06] [PASSED] drm_test_modes_analog_tv_pal_576i
[01:05:06] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[01:05:06] =============== [PASSED] drm_modes_analog_tv ===============
[01:05:06] ============== drm_plane_helper (2 subtests) ===============
[01:05:06] =============== drm_test_check_plane_state ================
[01:05:06] [PASSED] clipping_simple
[01:05:06] [PASSED] clipping_rotate_reflect
[01:05:06] [PASSED] positioning_simple
[01:05:06] [PASSED] upscaling
[01:05:06] [PASSED] downscaling
[01:05:06] [PASSED] rounding1
[01:05:06] [PASSED] rounding2
[01:05:06] [PASSED] rounding3
[01:05:06] [PASSED] rounding4
[01:05:06] =========== [PASSED] drm_test_check_plane_state ============
[01:05:06] =========== drm_test_check_invalid_plane_state ============
[01:05:06] [PASSED] positioning_invalid
[01:05:06] [PASSED] upscaling_invalid
[01:05:06] [PASSED] downscaling_invalid
[01:05:06] ======= [PASSED] drm_test_check_invalid_plane_state ========
[01:05:06] ================ [PASSED] drm_plane_helper =================
[01:05:06] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[01:05:06] ====== drm_test_connector_helper_tv_get_modes_check =======
[01:05:06] [PASSED] None
[01:05:06] [PASSED] PAL
[01:05:06] [PASSED] NTSC
[01:05:06] [PASSED] Both, NTSC Default
[01:05:06] [PASSED] Both, PAL Default
[01:05:06] [PASSED] Both, NTSC Default, with PAL on command-line
[01:05:06] [PASSED] Both, PAL Default, with NTSC on command-line
[01:05:06] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[01:05:06] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[01:05:06] ================== drm_rect (9 subtests) ===================
[01:05:06] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[01:05:06] [PASSED] drm_test_rect_clip_scaled_not_clipped
[01:05:06] [PASSED] drm_test_rect_clip_scaled_clipped
[01:05:06] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[01:05:06] ================= drm_test_rect_intersect =================
[01:05:06] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[01:05:06] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[01:05:06] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[01:05:06] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[01:05:06] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[01:05:06] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[01:05:06] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[01:05:06] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[01:05:06] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[01:05:06] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[01:05:06] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[01:05:06] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[01:05:06] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[01:05:06] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[01:05:06] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[01:05:06] ============= [PASSED] drm_test_rect_intersect =============
[01:05:06] ================ drm_test_rect_calc_hscale ================
[01:05:06] [PASSED] normal use
[01:05:06] [PASSED] out of max range
[01:05:06] [PASSED] out of min range
[01:05:06] [PASSED] zero dst
[01:05:06] [PASSED] negative src
[01:05:06] [PASSED] negative dst
[01:05:06] ============ [PASSED] drm_test_rect_calc_hscale ============
[01:05:06] ================ drm_test_rect_calc_vscale ================
[01:05:06] [PASSED] normal use
stty: 'standard input': Inappropriate ioctl for device
[01:05:06] [PASSED] out of max range
[01:05:06] [PASSED] out of min range
[01:05:06] [PASSED] zero dst
[01:05:06] [PASSED] negative src
[01:05:06] [PASSED] negative dst
[01:05:06] ============ [PASSED] drm_test_rect_calc_vscale ============
[01:05:06] ================== drm_test_rect_rotate ===================
[01:05:06] [PASSED] reflect-x
[01:05:06] [PASSED] reflect-y
[01:05:06] [PASSED] rotate-0
[01:05:06] [PASSED] rotate-90
[01:05:06] [PASSED] rotate-180
[01:05:06] [PASSED] rotate-270
[01:05:06] ============== [PASSED] drm_test_rect_rotate ===============
[01:05:06] ================ drm_test_rect_rotate_inv =================
[01:05:06] [PASSED] reflect-x
[01:05:06] [PASSED] reflect-y
[01:05:06] [PASSED] rotate-0
[01:05:06] [PASSED] rotate-90
[01:05:06] [PASSED] rotate-180
[01:05:06] [PASSED] rotate-270
[01:05:06] ============ [PASSED] drm_test_rect_rotate_inv =============
[01:05:06] ==================== [PASSED] drm_rect =====================
[01:05:06] ============ drm_sysfb_modeset_test (1 subtest) ============
[01:05:06] ============ drm_test_sysfb_build_fourcc_list =============
[01:05:06] [PASSED] no native formats
[01:05:06] [PASSED] XRGB8888 as native format
[01:05:06] [PASSED] remove duplicates
[01:05:06] [PASSED] convert alpha formats
[01:05:06] [PASSED] random formats
[01:05:06] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[01:05:06] ============= [PASSED] drm_sysfb_modeset_test ==============
[01:05:06] ============================================================
[01:05:06] Testing complete. Ran 622 tests: passed: 622
[01:05:06] Elapsed time: 26.877s total, 1.728s configuring, 24.729s building, 0.390s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[01:05:06] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[01:05:08] 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
[01:05:17] Starting KUnit Kernel (1/1)...
[01:05:17] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[01:05:18] ================= ttm_device (5 subtests) ==================
[01:05:18] [PASSED] ttm_device_init_basic
[01:05:18] [PASSED] ttm_device_init_multiple
[01:05:18] [PASSED] ttm_device_fini_basic
[01:05:18] [PASSED] ttm_device_init_no_vma_man
[01:05:18] ================== ttm_device_init_pools ==================
[01:05:18] [PASSED] No DMA allocations, no DMA32 required
[01:05:18] [PASSED] DMA allocations, DMA32 required
[01:05:18] [PASSED] No DMA allocations, DMA32 required
[01:05:18] [PASSED] DMA allocations, no DMA32 required
[01:05:18] ============== [PASSED] ttm_device_init_pools ==============
[01:05:18] =================== [PASSED] ttm_device ====================
[01:05:18] ================== ttm_pool (8 subtests) ===================
[01:05:18] ================== ttm_pool_alloc_basic ===================
[01:05:18] [PASSED] One page
[01:05:18] [PASSED] More than one page
[01:05:18] [PASSED] Above the allocation limit
[01:05:18] [PASSED] One page, with coherent DMA mappings enabled
[01:05:18] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[01:05:18] ============== [PASSED] ttm_pool_alloc_basic ===============
[01:05:18] ============== ttm_pool_alloc_basic_dma_addr ==============
[01:05:18] [PASSED] One page
[01:05:18] [PASSED] More than one page
[01:05:18] [PASSED] Above the allocation limit
[01:05:18] [PASSED] One page, with coherent DMA mappings enabled
[01:05:18] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[01:05:18] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[01:05:18] [PASSED] ttm_pool_alloc_order_caching_match
[01:05:18] [PASSED] ttm_pool_alloc_caching_mismatch
[01:05:18] [PASSED] ttm_pool_alloc_order_mismatch
[01:05:18] [PASSED] ttm_pool_free_dma_alloc
[01:05:18] [PASSED] ttm_pool_free_no_dma_alloc
[01:05:18] [PASSED] ttm_pool_fini_basic
[01:05:18] ==================== [PASSED] ttm_pool =====================
[01:05:18] ================ ttm_resource (8 subtests) =================
[01:05:18] ================= ttm_resource_init_basic =================
[01:05:18] [PASSED] Init resource in TTM_PL_SYSTEM
[01:05:18] [PASSED] Init resource in TTM_PL_VRAM
[01:05:18] [PASSED] Init resource in a private placement
[01:05:18] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[01:05:18] ============= [PASSED] ttm_resource_init_basic =============
[01:05:18] [PASSED] ttm_resource_init_pinned
[01:05:18] [PASSED] ttm_resource_fini_basic
[01:05:18] [PASSED] ttm_resource_manager_init_basic
[01:05:18] [PASSED] ttm_resource_manager_usage_basic
[01:05:18] [PASSED] ttm_resource_manager_set_used_basic
[01:05:18] [PASSED] ttm_sys_man_alloc_basic
[01:05:18] [PASSED] ttm_sys_man_free_basic
[01:05:18] ================== [PASSED] ttm_resource ===================
[01:05:18] =================== ttm_tt (15 subtests) ===================
[01:05:18] ==================== ttm_tt_init_basic ====================
[01:05:18] [PASSED] Page-aligned size
[01:05:18] [PASSED] Extra pages requested
[01:05:18] ================ [PASSED] ttm_tt_init_basic ================
[01:05:18] [PASSED] ttm_tt_init_misaligned
[01:05:18] [PASSED] ttm_tt_fini_basic
[01:05:18] [PASSED] ttm_tt_fini_sg
[01:05:18] [PASSED] ttm_tt_fini_shmem
[01:05:18] [PASSED] ttm_tt_create_basic
[01:05:18] [PASSED] ttm_tt_create_invalid_bo_type
[01:05:18] [PASSED] ttm_tt_create_ttm_exists
[01:05:18] [PASSED] ttm_tt_create_failed
[01:05:18] [PASSED] ttm_tt_destroy_basic
[01:05:18] [PASSED] ttm_tt_populate_null_ttm
[01:05:18] [PASSED] ttm_tt_populate_populated_ttm
[01:05:18] [PASSED] ttm_tt_unpopulate_basic
[01:05:18] [PASSED] ttm_tt_unpopulate_empty_ttm
[01:05:18] [PASSED] ttm_tt_swapin_basic
[01:05:18] ===================== [PASSED] ttm_tt ======================
[01:05:18] =================== ttm_bo (14 subtests) ===================
[01:05:18] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[01:05:18] [PASSED] Cannot be interrupted and sleeps
[01:05:18] [PASSED] Cannot be interrupted, locks straight away
[01:05:18] [PASSED] Can be interrupted, sleeps
[01:05:18] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[01:05:18] [PASSED] ttm_bo_reserve_locked_no_sleep
[01:05:18] [PASSED] ttm_bo_reserve_no_wait_ticket
[01:05:18] [PASSED] ttm_bo_reserve_double_resv
[01:05:18] [PASSED] ttm_bo_reserve_interrupted
[01:05:18] [PASSED] ttm_bo_reserve_deadlock
[01:05:18] [PASSED] ttm_bo_unreserve_basic
[01:05:18] [PASSED] ttm_bo_unreserve_pinned
[01:05:18] [PASSED] ttm_bo_unreserve_bulk
[01:05:18] [PASSED] ttm_bo_fini_basic
[01:05:18] [PASSED] ttm_bo_fini_shared_resv
[01:05:18] [PASSED] ttm_bo_pin_basic
[01:05:18] [PASSED] ttm_bo_pin_unpin_resource
[01:05:18] [PASSED] ttm_bo_multiple_pin_one_unpin
[01:05:18] ===================== [PASSED] ttm_bo ======================
[01:05:18] ============== ttm_bo_validate (21 subtests) ===============
[01:05:18] ============== ttm_bo_init_reserved_sys_man ===============
[01:05:18] [PASSED] Buffer object for userspace
[01:05:18] [PASSED] Kernel buffer object
[01:05:18] [PASSED] Shared buffer object
[01:05:18] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[01:05:18] ============== ttm_bo_init_reserved_mock_man ==============
[01:05:18] [PASSED] Buffer object for userspace
[01:05:18] [PASSED] Kernel buffer object
[01:05:18] [PASSED] Shared buffer object
[01:05:18] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[01:05:18] [PASSED] ttm_bo_init_reserved_resv
[01:05:18] ================== ttm_bo_validate_basic ==================
[01:05:18] [PASSED] Buffer object for userspace
[01:05:18] [PASSED] Kernel buffer object
[01:05:18] [PASSED] Shared buffer object
[01:05:18] ============== [PASSED] ttm_bo_validate_basic ==============
[01:05:18] [PASSED] ttm_bo_validate_invalid_placement
[01:05:18] ============= ttm_bo_validate_same_placement ==============
[01:05:18] [PASSED] System manager
[01:05:18] [PASSED] VRAM manager
[01:05:18] ========= [PASSED] ttm_bo_validate_same_placement ==========
[01:05:18] [PASSED] ttm_bo_validate_failed_alloc
[01:05:18] [PASSED] ttm_bo_validate_pinned
[01:05:18] [PASSED] ttm_bo_validate_busy_placement
[01:05:18] ================ ttm_bo_validate_multihop =================
[01:05:18] [PASSED] Buffer object for userspace
[01:05:18] [PASSED] Kernel buffer object
[01:05:18] [PASSED] Shared buffer object
[01:05:18] ============ [PASSED] ttm_bo_validate_multihop =============
[01:05:18] ========== ttm_bo_validate_no_placement_signaled ==========
[01:05:18] [PASSED] Buffer object in system domain, no page vector
[01:05:18] [PASSED] Buffer object in system domain with an existing page vector
[01:05:18] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[01:05:18] ======== ttm_bo_validate_no_placement_not_signaled ========
[01:05:18] [PASSED] Buffer object for userspace
[01:05:18] [PASSED] Kernel buffer object
[01:05:18] [PASSED] Shared buffer object
[01:05:18] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[01:05:18] [PASSED] ttm_bo_validate_move_fence_signaled
[01:05:18] ========= ttm_bo_validate_move_fence_not_signaled =========
[01:05:18] [PASSED] Waits for GPU
[01:05:18] [PASSED] Tries to lock straight away
[01:05:18] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[01:05:18] [PASSED] ttm_bo_validate_happy_evict
[01:05:18] [PASSED] ttm_bo_validate_all_pinned_evict
[01:05:18] [PASSED] ttm_bo_validate_allowed_only_evict
[01:05:18] [PASSED] ttm_bo_validate_deleted_evict
[01:05:18] [PASSED] ttm_bo_validate_busy_domain_evict
[01:05:18] [PASSED] ttm_bo_validate_evict_gutting
[01:05:18] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[01:05:18] ================= [PASSED] ttm_bo_validate =================
[01:05:18] ============================================================
[01:05:18] Testing complete. Ran 101 tests: passed: 101
[01:05:18] Elapsed time: 11.376s total, 1.679s configuring, 9.480s building, 0.179s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 20+ messages in thread* ✗ Xe.CI.BAT: failure for Fix a couple of wedge corner-case memory leaks (rev3)
2025-10-13 22:31 [PATCH 0/7] Fix a couple of wedge corner-case memory leaks Stuart Summers
` (8 preceding siblings ...)
2025-10-14 1:05 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-14 1:50 ` Patchwork
2025-10-14 10:02 ` ✗ Xe.CI.Full: " Patchwork
10 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2025-10-14 1:50 UTC (permalink / raw)
To: Summers, Stuart; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 5647 bytes --]
== Series Details ==
Series: Fix a couple of wedge corner-case memory leaks (rev3)
URL : https://patchwork.freedesktop.org/series/155352/
State : failure
== Summary ==
CI Bug Log - changes from xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada_BAT -> xe-pw-155352v3_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-155352v3_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-155352v3_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 (11 -> 11)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-155352v3_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@core_hotunplug@unbind-rebind:
- bat-lnl-2: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/bat-lnl-2/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/bat-lnl-2/igt@core_hotunplug@unbind-rebind.html
- bat-dg2-oem2: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/bat-dg2-oem2/igt@core_hotunplug@unbind-rebind.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/bat-dg2-oem2/igt@core_hotunplug@unbind-rebind.html
- bat-adlp-vm: [PASS][5] -> [ABORT][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/bat-adlp-vm/igt@core_hotunplug@unbind-rebind.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/bat-adlp-vm/igt@core_hotunplug@unbind-rebind.html
- bat-lnl-1: [PASS][7] -> [ABORT][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/bat-lnl-1/igt@core_hotunplug@unbind-rebind.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/bat-lnl-1/igt@core_hotunplug@unbind-rebind.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- bat-bmg-2: [PASS][9] -> [ABORT][10] +1 other test abort
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/bat-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/bat-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
- bat-adlp-7: [PASS][11] -> [ABORT][12] +1 other test abort
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/bat-adlp-7/igt@sriov_basic@enable-vfs-autoprobe-on.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/bat-adlp-7/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1:
- bat-bmg-1: [PASS][13] -> [ABORT][14] +1 other test abort
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/bat-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/bat-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
- bat-atsm-2: [PASS][15] -> [ABORT][16] +1 other test abort
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/bat-atsm-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@core_hotunplug@unbind-rebind:
- {bat-ptl-vm}: [PASS][17] -> [ABORT][18]
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/bat-ptl-vm/igt@core_hotunplug@unbind-rebind.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/bat-ptl-vm/igt@core_hotunplug@unbind-rebind.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- {bat-ptl-1}: [PASS][19] -> [ABORT][20] +1 other test abort
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/bat-ptl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/bat-ptl-1/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1:
- {bat-ptl-2}: [PASS][21] -> [ABORT][22] +1 other test abort
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/bat-ptl-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/bat-ptl-2/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-1.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
Build changes
-------------
* Linux: xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada -> xe-pw-155352v3
IGT_8582: 8582
xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada: c917f7d11493984be9f381ca0a7667bd3e587ada
xe-pw-155352v3: 155352v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/index.html
[-- Attachment #2: Type: text/html, Size: 6441 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread* ✗ Xe.CI.Full: failure for Fix a couple of wedge corner-case memory leaks (rev3)
2025-10-13 22:31 [PATCH 0/7] Fix a couple of wedge corner-case memory leaks Stuart Summers
` (9 preceding siblings ...)
2025-10-14 1:50 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2025-10-14 10:02 ` Patchwork
10 siblings, 0 replies; 20+ messages in thread
From: Patchwork @ 2025-10-14 10:02 UTC (permalink / raw)
To: Summers, Stuart; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 35132 bytes --]
== Series Details ==
Series: Fix a couple of wedge corner-case memory leaks (rev3)
URL : https://patchwork.freedesktop.org/series/155352/
State : failure
== Summary ==
CI Bug Log - changes from xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada_FULL -> xe-pw-155352v3_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-155352v3_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-155352v3_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-155352v3_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@core_hotunplug@hotreplug-lateclose:
- shard-adlp: NOTRUN -> [ABORT][1] +3 other tests abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-9/igt@core_hotunplug@hotreplug-lateclose.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-adlp: [PASS][2] -> [ABORT][3] +3 other tests abort
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-adlp-8/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-6/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early:
- shard-dg2-set2: [PASS][4] -> [ABORT][5] +17 other tests abort
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create:
- shard-lnl: NOTRUN -> [ABORT][6]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-lnl-8/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- shard-lnl: [PASS][7] -> [ABORT][8] +18 other tests abort
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-lnl-8/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-lnl-3/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
* igt@xe_pmu@engine-activity-idle@engine-drm_xe_engine_class_video_enhance1:
- shard-bmg: [PASS][9] -> [ABORT][10] +19 other tests abort
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-3/igt@xe_pmu@engine-activity-idle@engine-drm_xe_engine_class_video_enhance1.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-bmg-3/igt@xe_pmu@engine-activity-idle@engine-drm_xe_engine_class_video_enhance1.html
#### Warnings ####
* igt@xe_configfs@survivability-mode:
- shard-dg2-set2: [SKIP][11] ([Intel XE#6010]) -> [ABORT][12]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-435/igt@xe_configfs@survivability-mode.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-434/igt@xe_configfs@survivability-mode.html
- shard-lnl: [SKIP][13] ([Intel XE#6010]) -> [ABORT][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-lnl-1/igt@xe_configfs@survivability-mode.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-lnl-7/igt@xe_configfs@survivability-mode.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@xe_fault_injection@inject-fault-probe-function-xe_wa_gt_init}:
- shard-dg2-set2: [PASS][15] -> [ABORT][16] +2 other tests abort
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-464/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_gt_init.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-464/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_gt_init.html
- shard-lnl: [PASS][17] -> [ABORT][18] +2 other tests abort
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-lnl-7/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_gt_init.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-lnl-2/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_gt_init.html
* {igt@xe_pmu@engine-activity-render-node-load}:
- shard-adlp: [PASS][19] -> [ABORT][20] +2 other tests abort
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-adlp-8/igt@xe_pmu@engine-activity-render-node-load.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-8/igt@xe_pmu@engine-activity-render-node-load.html
* {igt@xe_pmu@engine-activity-render-node-load-idle}:
- shard-bmg: [PASS][21] -> [ABORT][22] +8 other tests abort
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-2/igt@xe_pmu@engine-activity-render-node-load-idle.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-bmg-7/igt@xe_pmu@engine-activity-render-node-load-idle.html
Known issues
------------
Here are the changes found in xe-pw-155352v3_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][23] ([Intel XE#316]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-adlp: NOTRUN -> [DMESG-FAIL][24] ([Intel XE#4543]) +1 other test dmesg-fail
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-adlp: NOTRUN -> [SKIP][25] ([Intel XE#607])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-9/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#367])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-lnl-8/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-adlp: NOTRUN -> [SKIP][27] ([Intel XE#367]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-6/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs:
- shard-adlp: NOTRUN -> [SKIP][28] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-1/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
- shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2887])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-lnl-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][30] ([Intel XE#787]) +5 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-1/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-bmg-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-adlp: NOTRUN -> [SKIP][32] ([Intel XE#2907]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_content_protection@mei-interface:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1468])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-lnl-8/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#1424])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-lnl-8/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-adlp: NOTRUN -> [SKIP][35] ([Intel XE#309])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: [PASS][36] -> [SKIP][37] ([Intel XE#2291]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-adlp: NOTRUN -> [SKIP][38] ([Intel XE#4331])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-9/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [PASS][39] -> [SKIP][40] ([Intel XE#2373])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-3/igt@kms_feature_discovery@display-2x.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-bmg-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-flip-vs-modeset-vs-hang:
- shard-adlp: NOTRUN -> [SKIP][41] ([Intel XE#310]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-6/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-bmg: [PASS][42] -> [SKIP][43] ([Intel XE#2316]) +5 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-3/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-adlp: NOTRUN -> [SKIP][44] ([Intel XE#455]) +4 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1401] / [Intel XE#1745])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1401])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
- shard-adlp: NOTRUN -> [SKIP][47] ([Intel XE#651]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-adlp: NOTRUN -> [SKIP][48] ([Intel XE#656]) +9 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#3374] / [Intel XE#3544])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-lnl-8/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][50] ([Intel XE#346])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-6/igt@kms_joiner@basic-big-joiner.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-adlp: NOTRUN -> [SKIP][51] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-9/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-adlp: NOTRUN -> [SKIP][52] ([Intel XE#1122] / [Intel XE#1406] / [Intel XE#5580])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-9/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-basic:
- shard-adlp: NOTRUN -> [SKIP][53] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-6/igt@kms_psr@fbc-pr-basic.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][54] -> [FAIL][55] ([Intel XE#4459]) +1 other test fail
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-lnl-5/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-bmg: [PASS][56] -> [INCOMPLETE][57] ([Intel XE#2594])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-bmg-2/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_eudebug@basic-vm-bind-discovery:
- shard-adlp: NOTRUN -> [SKIP][58] ([Intel XE#4837] / [Intel XE#5565]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-6/igt@xe_eudebug@basic-vm-bind-discovery.html
* igt@xe_evict@evict-small-multi-vm-cm:
- shard-adlp: NOTRUN -> [SKIP][59] ([Intel XE#261] / [Intel XE#688])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-6/igt@xe_evict@evict-small-multi-vm-cm.html
* igt@xe_evict_ccs@evict-overcommit-standalone-nofree-reopen:
- shard-adlp: NOTRUN -> [SKIP][60] ([Intel XE#688])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-9/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-reopen.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
- shard-adlp: NOTRUN -> [SKIP][61] ([Intel XE#1392] / [Intel XE#5575]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-1/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1392])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-imm:
- shard-adlp: NOTRUN -> [SKIP][63] ([Intel XE#288] / [Intel XE#5561]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-6/igt@xe_exec_fault_mode@twice-userptr-invalidate-imm.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc:
- shard-adlp: NOTRUN -> [SKIP][64] ([Intel XE#4915]) +45 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-6/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-malloc.html
* igt@xe_mmap@pci-membarrier-parallel:
- shard-adlp: NOTRUN -> [SKIP][65] ([Intel XE#5100])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-6/igt@xe_mmap@pci-membarrier-parallel.html
* igt@xe_oa@syncs-syncobj-none:
- shard-adlp: NOTRUN -> [SKIP][66] ([Intel XE#3573])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-6/igt@xe_oa@syncs-syncobj-none.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-adlp: NOTRUN -> [SKIP][67] ([Intel XE#4733] / [Intel XE#5594])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-9/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-adlp: NOTRUN -> [SKIP][68] ([Intel XE#944])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-6/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_render_copy@render-stress-1-copies:
- shard-adlp: NOTRUN -> [SKIP][69] ([Intel XE#4814] / [Intel XE#5614])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-adlp-6/igt@xe_render_copy@render-stress-1-copies.html
#### Possible fixes ####
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-bmg: [SKIP][70] ([Intel XE#2291]) -> [PASS][71]
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-4/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-bmg-5/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-bmg: [SKIP][72] ([Intel XE#2316]) -> [PASS][73] +2 other tests pass
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-bmg-1/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@xe_module_load@load:
- shard-dg2-set2: ([PASS][74], [PASS][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [SKIP][85], [PASS][86], [PASS][87], [PASS][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92], [PASS][93], [PASS][94], [PASS][95], [PASS][96], [PASS][97], [PASS][98], [PASS][99]) ([Intel XE#378]) -> ([PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-464/igt@xe_module_load@load.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-464/igt@xe_module_load@load.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-436/igt@xe_module_load@load.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-436/igt@xe_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-464/igt@xe_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-466/igt@xe_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-466/igt@xe_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-466/igt@xe_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-463/igt@xe_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-434/igt@xe_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-436/igt@xe_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-464/igt@xe_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-434/igt@xe_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-435/igt@xe_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-435/igt@xe_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-435/igt@xe_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-432/igt@xe_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-432/igt@xe_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-432/igt@xe_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-435/igt@xe_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-432/igt@xe_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-433/igt@xe_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-433/igt@xe_module_load@load.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-463/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-463/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-dg2-434/igt@xe_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-466/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-466/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-432/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-432/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-436/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-466/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-435/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-464/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-464/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-433/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-433/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-434/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-464/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-432/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-435/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-434/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-434/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-436/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-436/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-463/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-463/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-435/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-463/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-dg2-432/igt@xe_module_load@load.html
#### Warnings ####
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [FAIL][124] ([Intel XE#1178]) -> [SKIP][125] ([Intel XE#2341])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-1/igt@kms_content_protection@lic-type-0.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][126] ([Intel XE#2311]) -> [SKIP][127] ([Intel XE#2312]) +7 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][128] ([Intel XE#2312]) -> [SKIP][129] ([Intel XE#2311]) +4 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][130] ([Intel XE#2312]) -> [SKIP][131] ([Intel XE#5390]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][132] ([Intel XE#5390]) -> [SKIP][133] ([Intel XE#2312]) +4 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][134] ([Intel XE#2312]) -> [SKIP][135] ([Intel XE#2313]) +6 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][136] ([Intel XE#2313]) -> [SKIP][137] ([Intel XE#2312]) +8 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][138] ([Intel XE#5021]) -> [SKIP][139] ([Intel XE#4596])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-yf.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[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#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[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#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[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#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565
[Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575
[Intel XE#5580]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5580
[Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
[Intel XE#5614]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5614
[Intel XE#6010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6010
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[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#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* Linux: xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada -> xe-pw-155352v3
IGT_8582: 8582
xe-3911-c917f7d11493984be9f381ca0a7667bd3e587ada: c917f7d11493984be9f381ca0a7667bd3e587ada
xe-pw-155352v3: 155352v3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155352v3/index.html
[-- Attachment #2: Type: text/html, Size: 38631 bytes --]
^ permalink raw reply [flat|nested] 20+ messages in thread