* [RFC PATCH 1/4] drm/sched: Add pending job list iterator
2025-10-02 5:16 [RFC PATCH 0/4] Fix DRM scheduler layering violations in Xe Matthew Brost
@ 2025-10-02 5:16 ` Matthew Brost
2025-10-07 7:28 ` Christian König
2025-10-02 5:16 ` [RFC PATCH 2/4] drm/sched: Add several job helpers to avoid drivers touching scheduler state Matthew Brost
` (6 subsequent siblings)
7 siblings, 1 reply; 15+ messages in thread
From: Matthew Brost @ 2025-10-02 5:16 UTC (permalink / raw)
To: dri-devel, intel-xe; +Cc: alexdeucher, dakr, christian.koenig, pstanner
Stop open coding pending job list in drivers. Add pending job list
iterator which safely walks DRM scheduler list either locklessly
asserting DRM scheduler is stopped or takes pending job list lock.
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
---
include/drm/gpu_scheduler.h | 64 +++++++++++++++++++++++++++++++++++++
1 file changed, 64 insertions(+)
diff --git a/include/drm/gpu_scheduler.h b/include/drm/gpu_scheduler.h
index fb88301b3c45..a2dcabab8284 100644
--- a/include/drm/gpu_scheduler.h
+++ b/include/drm/gpu_scheduler.h
@@ -698,4 +698,68 @@ void drm_sched_entity_modify_sched(struct drm_sched_entity *entity,
struct drm_gpu_scheduler **sched_list,
unsigned int num_sched_list);
+/* Inlines */
+
+/**
+ * struct drm_sched_iter_pending_job - DRM scheduler pending job iterator state
+ * @sched: DRM scheduler associated with pending job iterator
+ * @stopped: DRM scheduler stopped state associated with pending job iterator
+ */
+struct drm_sched_iter_pending_job {
+ struct drm_gpu_scheduler *sched;
+ bool stopped;
+};
+
+/* Drivers should never call this directly */
+static inline struct drm_sched_iter_pending_job
+__drm_sched_iter_pending_job_begin(struct drm_gpu_scheduler *sched, bool stopped)
+{
+ struct drm_sched_iter_pending_job iter = {
+ .sched = sched,
+ .stopped = stopped,
+ };
+
+ if (stopped)
+ WARN_ON(!READ_ONCE(sched->pause_submit));
+ else
+ spin_lock(&sched->job_list_lock);
+
+ return iter;
+}
+
+/* Drivers should never call this directly */
+static inline void
+__drm_sched_iter_pending_job_end(const struct drm_sched_iter_pending_job iter)
+{
+ if (iter.stopped)
+ WARN_ON(!READ_ONCE(iter.sched->pause_submit));
+ else
+ spin_unlock(&iter.sched->job_list_lock);
+}
+
+DEFINE_CLASS(drm_sched_iter_pending_job, struct drm_sched_iter_pending_job,
+ __drm_sched_iter_pending_job_end(_T);,
+ __drm_sched_iter_pending_job_begin(__sched, __stopped),
+ struct drm_gpu_scheduler * __sched, bool __stopped);
+static inline void
+*class_drm_sched_iter_pending_job_lock_ptr(class_drm_sched_iter_pending_job_t *_T)
+{return _T; }
+#define class_drm_sched_iter_pending_job_is_conditional false
+
+/**
+ * drm_sched_for_each_pending_job() - Iterator for each pending job in scheduler
+ * @__job: Current pending job being iterated over
+ * @__sched: DRM scheduler to iterate over pending jobs
+ * @__entity: DRM scheduler entity to filter jobs, NULL indicates no filter
+ * @__stopped: DRM scheduler stopped state
+ *
+ * Iterator for each pending job in scheduler, filtering on an entity, and
+ * enforcing locking rules (either scheduler fully stoppped or correctly takes
+ * job_list_lock).
+ */
+#define drm_sched_for_each_pending_job(__job, __sched, __entitiy, __stopped) \
+ scoped_guard(drm_sched_iter_pending_job, __sched, __stopped) \
+ list_for_each_entry(__job, &(__sched)->pending_list, list) \
+ for_each_if(!__entitiy || (__job)->entity == (__entitiy))
+
#endif
--
2.34.1
^ permalink raw reply related [flat|nested] 15+ messages in thread* Re: [RFC PATCH 1/4] drm/sched: Add pending job list iterator
2025-10-02 5:16 ` [RFC PATCH 1/4] drm/sched: Add pending job list iterator Matthew Brost
@ 2025-10-07 7:28 ` Christian König
2025-10-07 8:09 ` Matthew Brost
0 siblings, 1 reply; 15+ messages in thread
From: Christian König @ 2025-10-07 7:28 UTC (permalink / raw)
To: Matthew Brost, dri-devel, intel-xe
Cc: alexdeucher, dakr, pstanner, Philipp Stanner
On 02.10.25 07:16, Matthew Brost wrote:
> Stop open coding pending job list in drivers. Add pending job list
> iterator which safely walks DRM scheduler list either locklessly
> asserting DRM scheduler is stopped or takes pending job list lock.
Taking the job list lock and walking the pending list while the scheduler is not stopped is most likely a NO-GO.
As far as I understand it that is exactly what Philip rejected as looking into scheduler internals during the discussion on XDC.
So why is that actually needed? For debugging or something functional?
Regards,
Christian.
>
> Signed-off-by: Matthew Brost <matthew.brost@intel.com>
> ---
> include/drm/gpu_scheduler.h | 64 +++++++++++++++++++++++++++++++++++++
> 1 file changed, 64 insertions(+)
>
> diff --git a/include/drm/gpu_scheduler.h b/include/drm/gpu_scheduler.h
> index fb88301b3c45..a2dcabab8284 100644
> --- a/include/drm/gpu_scheduler.h
> +++ b/include/drm/gpu_scheduler.h
> @@ -698,4 +698,68 @@ void drm_sched_entity_modify_sched(struct drm_sched_entity *entity,
> struct drm_gpu_scheduler **sched_list,
> unsigned int num_sched_list);
>
> +/* Inlines */
> +
> +/**
> + * struct drm_sched_iter_pending_job - DRM scheduler pending job iterator state
> + * @sched: DRM scheduler associated with pending job iterator
> + * @stopped: DRM scheduler stopped state associated with pending job iterator
> + */
> +struct drm_sched_iter_pending_job {
> + struct drm_gpu_scheduler *sched;
> + bool stopped;
> +};
> +
> +/* Drivers should never call this directly */
> +static inline struct drm_sched_iter_pending_job
> +__drm_sched_iter_pending_job_begin(struct drm_gpu_scheduler *sched, bool stopped)
> +{
> + struct drm_sched_iter_pending_job iter = {
> + .sched = sched,
> + .stopped = stopped,
> + };
> +
> + if (stopped)
> + WARN_ON(!READ_ONCE(sched->pause_submit));
> + else
> + spin_lock(&sched->job_list_lock);
> +
> + return iter;
> +}
> +
> +/* Drivers should never call this directly */
> +static inline void
> +__drm_sched_iter_pending_job_end(const struct drm_sched_iter_pending_job iter)
> +{
> + if (iter.stopped)
> + WARN_ON(!READ_ONCE(iter.sched->pause_submit));
> + else
> + spin_unlock(&iter.sched->job_list_lock);
> +}
> +
> +DEFINE_CLASS(drm_sched_iter_pending_job, struct drm_sched_iter_pending_job,
> + __drm_sched_iter_pending_job_end(_T);,
> + __drm_sched_iter_pending_job_begin(__sched, __stopped),
> + struct drm_gpu_scheduler * __sched, bool __stopped);
> +static inline void
> +*class_drm_sched_iter_pending_job_lock_ptr(class_drm_sched_iter_pending_job_t *_T)
> +{return _T; }
> +#define class_drm_sched_iter_pending_job_is_conditional false
> +
> +/**
> + * drm_sched_for_each_pending_job() - Iterator for each pending job in scheduler
> + * @__job: Current pending job being iterated over
> + * @__sched: DRM scheduler to iterate over pending jobs
> + * @__entity: DRM scheduler entity to filter jobs, NULL indicates no filter
> + * @__stopped: DRM scheduler stopped state
> + *
> + * Iterator for each pending job in scheduler, filtering on an entity, and
> + * enforcing locking rules (either scheduler fully stoppped or correctly takes
> + * job_list_lock).
> + */
> +#define drm_sched_for_each_pending_job(__job, __sched, __entitiy, __stopped) \
> + scoped_guard(drm_sched_iter_pending_job, __sched, __stopped) \
> + list_for_each_entry(__job, &(__sched)->pending_list, list) \
> + for_each_if(!__entitiy || (__job)->entity == (__entitiy))
> +
> #endif
^ permalink raw reply [flat|nested] 15+ messages in thread* Re: [RFC PATCH 1/4] drm/sched: Add pending job list iterator
2025-10-07 7:28 ` Christian König
@ 2025-10-07 8:09 ` Matthew Brost
2025-10-07 8:28 ` Matthew Brost
0 siblings, 1 reply; 15+ messages in thread
From: Matthew Brost @ 2025-10-07 8:09 UTC (permalink / raw)
To: Christian König
Cc: dri-devel, intel-xe, alexdeucher, dakr, pstanner, Philipp Stanner
On Tue, Oct 07, 2025 at 09:28:56AM +0200, Christian König wrote:
> On 02.10.25 07:16, Matthew Brost wrote:
> > Stop open coding pending job list in drivers. Add pending job list
> > iterator which safely walks DRM scheduler list either locklessly
> > asserting DRM scheduler is stopped or takes pending job list lock.
>
> Taking the job list lock and walking the pending list while the scheduler is not stopped is most likely a NO-GO.
>
I agree. But this patch doesn’t do that — it actually does the opposite.
It ensures that if you need to walk the scheduler list locklessly, the
scheduler is stopped at both the beginning and end of the iterator, or
it correctly takes the pending list lock.
So, what’s the issue? Or is there just some confusion about what this
patch is actually doing?
> As far as I understand it that is exactly what Philip rejected as looking into scheduler internals during the discussion on XDC.
>
I thought we agreed on having a well-defined iterator for walking the
pending list, ensuring correct usage, rather than having drivers walk
the pending list themselves. From my understanding, this is exactly what
we agreed upon.
> So why is that actually needed? For debugging or something functional?
>
Drivers inevitably need to walk the pending list during recovery flows
(such as resets, resubmissions, VF migration, etc.). This ensures that a
driver knows what it’s doing when it does so, and avoids directly
touching scheduler internals. Instead, it should just call
drm_sched_for_each_pending_job.
This has actually been helpful in Xe already — when I was working on
scheduler backend changes, it helped catch cases where I accidentally
flipped the stopped flag while walking the job list. Without this, it
could have randomly blown up later if a perfectly timed race condition
occured (e.g., free_job fired).
Matt
> Regards,
> Christian.
>
> >
> > Signed-off-by: Matthew Brost <matthew.brost@intel.com>
> > ---
> > include/drm/gpu_scheduler.h | 64 +++++++++++++++++++++++++++++++++++++
> > 1 file changed, 64 insertions(+)
> >
> > diff --git a/include/drm/gpu_scheduler.h b/include/drm/gpu_scheduler.h
> > index fb88301b3c45..a2dcabab8284 100644
> > --- a/include/drm/gpu_scheduler.h
> > +++ b/include/drm/gpu_scheduler.h
> > @@ -698,4 +698,68 @@ void drm_sched_entity_modify_sched(struct drm_sched_entity *entity,
> > struct drm_gpu_scheduler **sched_list,
> > unsigned int num_sched_list);
> >
> > +/* Inlines */
> > +
> > +/**
> > + * struct drm_sched_iter_pending_job - DRM scheduler pending job iterator state
> > + * @sched: DRM scheduler associated with pending job iterator
> > + * @stopped: DRM scheduler stopped state associated with pending job iterator
> > + */
> > +struct drm_sched_iter_pending_job {
> > + struct drm_gpu_scheduler *sched;
> > + bool stopped;
> > +};
> > +
> > +/* Drivers should never call this directly */
> > +static inline struct drm_sched_iter_pending_job
> > +__drm_sched_iter_pending_job_begin(struct drm_gpu_scheduler *sched, bool stopped)
> > +{
> > + struct drm_sched_iter_pending_job iter = {
> > + .sched = sched,
> > + .stopped = stopped,
> > + };
> > +
> > + if (stopped)
> > + WARN_ON(!READ_ONCE(sched->pause_submit));
> > + else
> > + spin_lock(&sched->job_list_lock);
> > +
> > + return iter;
> > +}
> > +
> > +/* Drivers should never call this directly */
> > +static inline void
> > +__drm_sched_iter_pending_job_end(const struct drm_sched_iter_pending_job iter)
> > +{
> > + if (iter.stopped)
> > + WARN_ON(!READ_ONCE(iter.sched->pause_submit));
> > + else
> > + spin_unlock(&iter.sched->job_list_lock);
> > +}
> > +
> > +DEFINE_CLASS(drm_sched_iter_pending_job, struct drm_sched_iter_pending_job,
> > + __drm_sched_iter_pending_job_end(_T);,
> > + __drm_sched_iter_pending_job_begin(__sched, __stopped),
> > + struct drm_gpu_scheduler * __sched, bool __stopped);
> > +static inline void
> > +*class_drm_sched_iter_pending_job_lock_ptr(class_drm_sched_iter_pending_job_t *_T)
> > +{return _T; }
> > +#define class_drm_sched_iter_pending_job_is_conditional false
> > +
> > +/**
> > + * drm_sched_for_each_pending_job() - Iterator for each pending job in scheduler
> > + * @__job: Current pending job being iterated over
> > + * @__sched: DRM scheduler to iterate over pending jobs
> > + * @__entity: DRM scheduler entity to filter jobs, NULL indicates no filter
> > + * @__stopped: DRM scheduler stopped state
> > + *
> > + * Iterator for each pending job in scheduler, filtering on an entity, and
> > + * enforcing locking rules (either scheduler fully stoppped or correctly takes
> > + * job_list_lock).
> > + */
> > +#define drm_sched_for_each_pending_job(__job, __sched, __entitiy, __stopped) \
> > + scoped_guard(drm_sched_iter_pending_job, __sched, __stopped) \
> > + list_for_each_entry(__job, &(__sched)->pending_list, list) \
> > + for_each_if(!__entitiy || (__job)->entity == (__entitiy))
> > +
> > #endif
>
^ permalink raw reply [flat|nested] 15+ messages in thread* Re: [RFC PATCH 1/4] drm/sched: Add pending job list iterator
2025-10-07 8:09 ` Matthew Brost
@ 2025-10-07 8:28 ` Matthew Brost
2025-10-07 8:44 ` Christian König
0 siblings, 1 reply; 15+ messages in thread
From: Matthew Brost @ 2025-10-07 8:28 UTC (permalink / raw)
To: Christian König
Cc: dri-devel, intel-xe, alexdeucher, dakr, pstanner, Philipp Stanner
On Tue, Oct 07, 2025 at 01:09:34AM -0700, Matthew Brost wrote:
> On Tue, Oct 07, 2025 at 09:28:56AM +0200, Christian König wrote:
> > On 02.10.25 07:16, Matthew Brost wrote:
> > > Stop open coding pending job list in drivers. Add pending job list
> > > iterator which safely walks DRM scheduler list either locklessly
> > > asserting DRM scheduler is stopped or takes pending job list lock.
> >
> > Taking the job list lock and walking the pending list while the scheduler is not stopped is most likely a NO-GO.
Oops, I misread your statement—it's late here.
The use case for walking the scheduler with acquiring the job list lock
and without being stopped is in debugfs for Xe, where it prints out
pending job information. That seems valid. There are couple of other
upstream cases where this is done but likely not needed.
I checked and found that AMD acquires job_list_lock and walks the
pending list in two cases within amdgpu_debugfs.c. PVR also acquires the
lock in imagination/pvr_queue.c.
If this is really controversial, we don’t strictly need this in Xe and
can remove it. But of course, AMD GPU and PVR would need to be fixed as
well.
Matt
> >
>
> I agree. But this patch doesn’t do that — it actually does the opposite.
>
> It ensures that if you need to walk the scheduler list locklessly, the
> scheduler is stopped at both the beginning and end of the iterator, or
> it correctly takes the pending list lock.
>
> So, what’s the issue? Or is there just some confusion about what this
> patch is actually doing?
>
> > As far as I understand it that is exactly what Philip rejected as looking into scheduler internals during the discussion on XDC.
> >
>
> I thought we agreed on having a well-defined iterator for walking the
> pending list, ensuring correct usage, rather than having drivers walk
> the pending list themselves. From my understanding, this is exactly what
> we agreed upon.
>
> > So why is that actually needed? For debugging or something functional?
> >
>
> Drivers inevitably need to walk the pending list during recovery flows
> (such as resets, resubmissions, VF migration, etc.). This ensures that a
> driver knows what it’s doing when it does so, and avoids directly
> touching scheduler internals. Instead, it should just call
> drm_sched_for_each_pending_job.
>
> This has actually been helpful in Xe already — when I was working on
> scheduler backend changes, it helped catch cases where I accidentally
> flipped the stopped flag while walking the job list. Without this, it
> could have randomly blown up later if a perfectly timed race condition
> occured (e.g., free_job fired).
>
> Matt
>
> > Regards,
> > Christian.
> >
> > >
> > > Signed-off-by: Matthew Brost <matthew.brost@intel.com>
> > > ---
> > > include/drm/gpu_scheduler.h | 64 +++++++++++++++++++++++++++++++++++++
> > > 1 file changed, 64 insertions(+)
> > >
> > > diff --git a/include/drm/gpu_scheduler.h b/include/drm/gpu_scheduler.h
> > > index fb88301b3c45..a2dcabab8284 100644
> > > --- a/include/drm/gpu_scheduler.h
> > > +++ b/include/drm/gpu_scheduler.h
> > > @@ -698,4 +698,68 @@ void drm_sched_entity_modify_sched(struct drm_sched_entity *entity,
> > > struct drm_gpu_scheduler **sched_list,
> > > unsigned int num_sched_list);
> > >
> > > +/* Inlines */
> > > +
> > > +/**
> > > + * struct drm_sched_iter_pending_job - DRM scheduler pending job iterator state
> > > + * @sched: DRM scheduler associated with pending job iterator
> > > + * @stopped: DRM scheduler stopped state associated with pending job iterator
> > > + */
> > > +struct drm_sched_iter_pending_job {
> > > + struct drm_gpu_scheduler *sched;
> > > + bool stopped;
> > > +};
> > > +
> > > +/* Drivers should never call this directly */
> > > +static inline struct drm_sched_iter_pending_job
> > > +__drm_sched_iter_pending_job_begin(struct drm_gpu_scheduler *sched, bool stopped)
> > > +{
> > > + struct drm_sched_iter_pending_job iter = {
> > > + .sched = sched,
> > > + .stopped = stopped,
> > > + };
> > > +
> > > + if (stopped)
> > > + WARN_ON(!READ_ONCE(sched->pause_submit));
> > > + else
> > > + spin_lock(&sched->job_list_lock);
> > > +
> > > + return iter;
> > > +}
> > > +
> > > +/* Drivers should never call this directly */
> > > +static inline void
> > > +__drm_sched_iter_pending_job_end(const struct drm_sched_iter_pending_job iter)
> > > +{
> > > + if (iter.stopped)
> > > + WARN_ON(!READ_ONCE(iter.sched->pause_submit));
> > > + else
> > > + spin_unlock(&iter.sched->job_list_lock);
> > > +}
> > > +
> > > +DEFINE_CLASS(drm_sched_iter_pending_job, struct drm_sched_iter_pending_job,
> > > + __drm_sched_iter_pending_job_end(_T);,
> > > + __drm_sched_iter_pending_job_begin(__sched, __stopped),
> > > + struct drm_gpu_scheduler * __sched, bool __stopped);
> > > +static inline void
> > > +*class_drm_sched_iter_pending_job_lock_ptr(class_drm_sched_iter_pending_job_t *_T)
> > > +{return _T; }
> > > +#define class_drm_sched_iter_pending_job_is_conditional false
> > > +
> > > +/**
> > > + * drm_sched_for_each_pending_job() - Iterator for each pending job in scheduler
> > > + * @__job: Current pending job being iterated over
> > > + * @__sched: DRM scheduler to iterate over pending jobs
> > > + * @__entity: DRM scheduler entity to filter jobs, NULL indicates no filter
> > > + * @__stopped: DRM scheduler stopped state
> > > + *
> > > + * Iterator for each pending job in scheduler, filtering on an entity, and
> > > + * enforcing locking rules (either scheduler fully stoppped or correctly takes
> > > + * job_list_lock).
> > > + */
> > > +#define drm_sched_for_each_pending_job(__job, __sched, __entitiy, __stopped) \
> > > + scoped_guard(drm_sched_iter_pending_job, __sched, __stopped) \
> > > + list_for_each_entry(__job, &(__sched)->pending_list, list) \
> > > + for_each_if(!__entitiy || (__job)->entity == (__entitiy))
> > > +
> > > #endif
> >
^ permalink raw reply [flat|nested] 15+ messages in thread* Re: [RFC PATCH 1/4] drm/sched: Add pending job list iterator
2025-10-07 8:28 ` Matthew Brost
@ 2025-10-07 8:44 ` Christian König
2025-10-07 9:44 ` Matthew Brost
0 siblings, 1 reply; 15+ messages in thread
From: Christian König @ 2025-10-07 8:44 UTC (permalink / raw)
To: Matthew Brost
Cc: dri-devel, intel-xe, alexdeucher, dakr, pstanner, Philipp Stanner
On 07.10.25 10:28, Matthew Brost wrote:
> On Tue, Oct 07, 2025 at 01:09:34AM -0700, Matthew Brost wrote:
>> On Tue, Oct 07, 2025 at 09:28:56AM +0200, Christian König wrote:
>>> On 02.10.25 07:16, Matthew Brost wrote:
>>>> Stop open coding pending job list in drivers. Add pending job list
>>>> iterator which safely walks DRM scheduler list either locklessly
>>>> asserting DRM scheduler is stopped or takes pending job list lock.
>>>
>>> Taking the job list lock and walking the pending list while the scheduler is not stopped is most likely a NO-GO.
>
> Oops, I misread your statement—it's late here.
>
> The use case for walking the scheduler with acquiring the job list lock
> and without being stopped is in debugfs for Xe, where it prints out
> pending job information. That seems valid. There are couple of other
> upstream cases where this is done but likely not needed.
Yeah, I thought it would be something like that.
> I checked and found that AMD acquires job_list_lock and walks the
> pending list in two cases within amdgpu_debugfs.c. PVR also acquires the
> lock in imagination/pvr_queue.c.
>
> If this is really controversial, we don’t strictly need this in Xe and
> can remove it. But of course, AMD GPU and PVR would need to be fixed as
> well.
I think for debugging it is valid, but we should then have two different iterators.
One for debugging which can only be used when CONFIG_DEBUG/DEBUGFS is enabled.
And a different one for the functional side, e.g. iterating while the scheduler is stopped.
Christian.
>
> Matt
>
>>>
>>
>> I agree. But this patch doesn’t do that — it actually does the opposite.
>>
>> It ensures that if you need to walk the scheduler list locklessly, the
>> scheduler is stopped at both the beginning and end of the iterator, or
>> it correctly takes the pending list lock.
>>
>> So, what’s the issue? Or is there just some confusion about what this
>> patch is actually doing?
>>
>>> As far as I understand it that is exactly what Philip rejected as looking into scheduler internals during the discussion on XDC.
>>>
>>
>> I thought we agreed on having a well-defined iterator for walking the
>> pending list, ensuring correct usage, rather than having drivers walk
>> the pending list themselves. From my understanding, this is exactly what
>> we agreed upon.
>>
>>> So why is that actually needed? For debugging or something functional?
>>>
>>
>> Drivers inevitably need to walk the pending list during recovery flows
>> (such as resets, resubmissions, VF migration, etc.). This ensures that a
>> driver knows what it’s doing when it does so, and avoids directly
>> touching scheduler internals. Instead, it should just call
>> drm_sched_for_each_pending_job.
>>
>> This has actually been helpful in Xe already — when I was working on
>> scheduler backend changes, it helped catch cases where I accidentally
>> flipped the stopped flag while walking the job list. Without this, it
>> could have randomly blown up later if a perfectly timed race condition
>> occured (e.g., free_job fired).
>>
>> Matt
>>
>>> Regards,
>>> Christian.
>>>
>>>>
>>>> Signed-off-by: Matthew Brost <matthew.brost@intel.com>
>>>> ---
>>>> include/drm/gpu_scheduler.h | 64 +++++++++++++++++++++++++++++++++++++
>>>> 1 file changed, 64 insertions(+)
>>>>
>>>> diff --git a/include/drm/gpu_scheduler.h b/include/drm/gpu_scheduler.h
>>>> index fb88301b3c45..a2dcabab8284 100644
>>>> --- a/include/drm/gpu_scheduler.h
>>>> +++ b/include/drm/gpu_scheduler.h
>>>> @@ -698,4 +698,68 @@ void drm_sched_entity_modify_sched(struct drm_sched_entity *entity,
>>>> struct drm_gpu_scheduler **sched_list,
>>>> unsigned int num_sched_list);
>>>>
>>>> +/* Inlines */
>>>> +
>>>> +/**
>>>> + * struct drm_sched_iter_pending_job - DRM scheduler pending job iterator state
>>>> + * @sched: DRM scheduler associated with pending job iterator
>>>> + * @stopped: DRM scheduler stopped state associated with pending job iterator
>>>> + */
>>>> +struct drm_sched_iter_pending_job {
>>>> + struct drm_gpu_scheduler *sched;
>>>> + bool stopped;
>>>> +};
>>>> +
>>>> +/* Drivers should never call this directly */
>>>> +static inline struct drm_sched_iter_pending_job
>>>> +__drm_sched_iter_pending_job_begin(struct drm_gpu_scheduler *sched, bool stopped)
>>>> +{
>>>> + struct drm_sched_iter_pending_job iter = {
>>>> + .sched = sched,
>>>> + .stopped = stopped,
>>>> + };
>>>> +
>>>> + if (stopped)
>>>> + WARN_ON(!READ_ONCE(sched->pause_submit));
>>>> + else
>>>> + spin_lock(&sched->job_list_lock);
>>>> +
>>>> + return iter;
>>>> +}
>>>> +
>>>> +/* Drivers should never call this directly */
>>>> +static inline void
>>>> +__drm_sched_iter_pending_job_end(const struct drm_sched_iter_pending_job iter)
>>>> +{
>>>> + if (iter.stopped)
>>>> + WARN_ON(!READ_ONCE(iter.sched->pause_submit));
>>>> + else
>>>> + spin_unlock(&iter.sched->job_list_lock);
>>>> +}
>>>> +
>>>> +DEFINE_CLASS(drm_sched_iter_pending_job, struct drm_sched_iter_pending_job,
>>>> + __drm_sched_iter_pending_job_end(_T);,
>>>> + __drm_sched_iter_pending_job_begin(__sched, __stopped),
>>>> + struct drm_gpu_scheduler * __sched, bool __stopped);
>>>> +static inline void
>>>> +*class_drm_sched_iter_pending_job_lock_ptr(class_drm_sched_iter_pending_job_t *_T)
>>>> +{return _T; }
>>>> +#define class_drm_sched_iter_pending_job_is_conditional false
>>>> +
>>>> +/**
>>>> + * drm_sched_for_each_pending_job() - Iterator for each pending job in scheduler
>>>> + * @__job: Current pending job being iterated over
>>>> + * @__sched: DRM scheduler to iterate over pending jobs
>>>> + * @__entity: DRM scheduler entity to filter jobs, NULL indicates no filter
>>>> + * @__stopped: DRM scheduler stopped state
>>>> + *
>>>> + * Iterator for each pending job in scheduler, filtering on an entity, and
>>>> + * enforcing locking rules (either scheduler fully stoppped or correctly takes
>>>> + * job_list_lock).
>>>> + */
>>>> +#define drm_sched_for_each_pending_job(__job, __sched, __entitiy, __stopped) \
>>>> + scoped_guard(drm_sched_iter_pending_job, __sched, __stopped) \
>>>> + list_for_each_entry(__job, &(__sched)->pending_list, list) \
>>>> + for_each_if(!__entitiy || (__job)->entity == (__entitiy))
>>>> +
>>>> #endif
>>>
^ permalink raw reply [flat|nested] 15+ messages in thread* Re: [RFC PATCH 1/4] drm/sched: Add pending job list iterator
2025-10-07 8:44 ` Christian König
@ 2025-10-07 9:44 ` Matthew Brost
2025-10-07 9:51 ` Danilo Krummrich
0 siblings, 1 reply; 15+ messages in thread
From: Matthew Brost @ 2025-10-07 9:44 UTC (permalink / raw)
To: Christian König
Cc: dri-devel, intel-xe, alexdeucher, dakr, pstanner, Philipp Stanner
On Tue, Oct 07, 2025 at 10:44:00AM +0200, Christian König wrote:
> On 07.10.25 10:28, Matthew Brost wrote:
> > On Tue, Oct 07, 2025 at 01:09:34AM -0700, Matthew Brost wrote:
> >> On Tue, Oct 07, 2025 at 09:28:56AM +0200, Christian König wrote:
> >>> On 02.10.25 07:16, Matthew Brost wrote:
> >>>> Stop open coding pending job list in drivers. Add pending job list
> >>>> iterator which safely walks DRM scheduler list either locklessly
> >>>> asserting DRM scheduler is stopped or takes pending job list lock.
> >>>
> >>> Taking the job list lock and walking the pending list while the scheduler is not stopped is most likely a NO-GO.
> >
> > Oops, I misread your statement—it's late here.
> >
> > The use case for walking the scheduler with acquiring the job list lock
> > and without being stopped is in debugfs for Xe, where it prints out
> > pending job information. That seems valid. There are couple of other
> > upstream cases where this is done but likely not needed.
>
> Yeah, I thought it would be something like that.
>
> > I checked and found that AMD acquires job_list_lock and walks the
> > pending list in two cases within amdgpu_debugfs.c. PVR also acquires the
> > lock in imagination/pvr_queue.c.
> >
> > If this is really controversial, we don’t strictly need this in Xe and
> > can remove it. But of course, AMD GPU and PVR would need to be fixed as
> > well.
>
> I think for debugging it is valid, but we should then have two different iterators.
>
> One for debugging which can only be used when CONFIG_DEBUG/DEBUGFS is enabled.
>
> And a different one for the functional side, e.g. iterating while the scheduler is stopped.
>
Honestly I'd just lean towards dropping the debug version then. It is
basically useless information in Xe as the number of pending jobs can
dervived from the ring's seqnos which is also printed.
Matt
> Christian.
>
> >
> > Matt
> >
> >>>
> >>
> >> I agree. But this patch doesn’t do that — it actually does the opposite.
> >>
> >> It ensures that if you need to walk the scheduler list locklessly, the
> >> scheduler is stopped at both the beginning and end of the iterator, or
> >> it correctly takes the pending list lock.
> >>
> >> So, what’s the issue? Or is there just some confusion about what this
> >> patch is actually doing?
> >>
> >>> As far as I understand it that is exactly what Philip rejected as looking into scheduler internals during the discussion on XDC.
> >>>
> >>
> >> I thought we agreed on having a well-defined iterator for walking the
> >> pending list, ensuring correct usage, rather than having drivers walk
> >> the pending list themselves. From my understanding, this is exactly what
> >> we agreed upon.
> >>
> >>> So why is that actually needed? For debugging or something functional?
> >>>
> >>
> >> Drivers inevitably need to walk the pending list during recovery flows
> >> (such as resets, resubmissions, VF migration, etc.). This ensures that a
> >> driver knows what it’s doing when it does so, and avoids directly
> >> touching scheduler internals. Instead, it should just call
> >> drm_sched_for_each_pending_job.
> >>
> >> This has actually been helpful in Xe already — when I was working on
> >> scheduler backend changes, it helped catch cases where I accidentally
> >> flipped the stopped flag while walking the job list. Without this, it
> >> could have randomly blown up later if a perfectly timed race condition
> >> occured (e.g., free_job fired).
> >>
> >> Matt
> >>
> >>> Regards,
> >>> Christian.
> >>>
> >>>>
> >>>> Signed-off-by: Matthew Brost <matthew.brost@intel.com>
> >>>> ---
> >>>> include/drm/gpu_scheduler.h | 64 +++++++++++++++++++++++++++++++++++++
> >>>> 1 file changed, 64 insertions(+)
> >>>>
> >>>> diff --git a/include/drm/gpu_scheduler.h b/include/drm/gpu_scheduler.h
> >>>> index fb88301b3c45..a2dcabab8284 100644
> >>>> --- a/include/drm/gpu_scheduler.h
> >>>> +++ b/include/drm/gpu_scheduler.h
> >>>> @@ -698,4 +698,68 @@ void drm_sched_entity_modify_sched(struct drm_sched_entity *entity,
> >>>> struct drm_gpu_scheduler **sched_list,
> >>>> unsigned int num_sched_list);
> >>>>
> >>>> +/* Inlines */
> >>>> +
> >>>> +/**
> >>>> + * struct drm_sched_iter_pending_job - DRM scheduler pending job iterator state
> >>>> + * @sched: DRM scheduler associated with pending job iterator
> >>>> + * @stopped: DRM scheduler stopped state associated with pending job iterator
> >>>> + */
> >>>> +struct drm_sched_iter_pending_job {
> >>>> + struct drm_gpu_scheduler *sched;
> >>>> + bool stopped;
> >>>> +};
> >>>> +
> >>>> +/* Drivers should never call this directly */
> >>>> +static inline struct drm_sched_iter_pending_job
> >>>> +__drm_sched_iter_pending_job_begin(struct drm_gpu_scheduler *sched, bool stopped)
> >>>> +{
> >>>> + struct drm_sched_iter_pending_job iter = {
> >>>> + .sched = sched,
> >>>> + .stopped = stopped,
> >>>> + };
> >>>> +
> >>>> + if (stopped)
> >>>> + WARN_ON(!READ_ONCE(sched->pause_submit));
> >>>> + else
> >>>> + spin_lock(&sched->job_list_lock);
> >>>> +
> >>>> + return iter;
> >>>> +}
> >>>> +
> >>>> +/* Drivers should never call this directly */
> >>>> +static inline void
> >>>> +__drm_sched_iter_pending_job_end(const struct drm_sched_iter_pending_job iter)
> >>>> +{
> >>>> + if (iter.stopped)
> >>>> + WARN_ON(!READ_ONCE(iter.sched->pause_submit));
> >>>> + else
> >>>> + spin_unlock(&iter.sched->job_list_lock);
> >>>> +}
> >>>> +
> >>>> +DEFINE_CLASS(drm_sched_iter_pending_job, struct drm_sched_iter_pending_job,
> >>>> + __drm_sched_iter_pending_job_end(_T);,
> >>>> + __drm_sched_iter_pending_job_begin(__sched, __stopped),
> >>>> + struct drm_gpu_scheduler * __sched, bool __stopped);
> >>>> +static inline void
> >>>> +*class_drm_sched_iter_pending_job_lock_ptr(class_drm_sched_iter_pending_job_t *_T)
> >>>> +{return _T; }
> >>>> +#define class_drm_sched_iter_pending_job_is_conditional false
> >>>> +
> >>>> +/**
> >>>> + * drm_sched_for_each_pending_job() - Iterator for each pending job in scheduler
> >>>> + * @__job: Current pending job being iterated over
> >>>> + * @__sched: DRM scheduler to iterate over pending jobs
> >>>> + * @__entity: DRM scheduler entity to filter jobs, NULL indicates no filter
> >>>> + * @__stopped: DRM scheduler stopped state
> >>>> + *
> >>>> + * Iterator for each pending job in scheduler, filtering on an entity, and
> >>>> + * enforcing locking rules (either scheduler fully stoppped or correctly takes
> >>>> + * job_list_lock).
> >>>> + */
> >>>> +#define drm_sched_for_each_pending_job(__job, __sched, __entitiy, __stopped) \
> >>>> + scoped_guard(drm_sched_iter_pending_job, __sched, __stopped) \
> >>>> + list_for_each_entry(__job, &(__sched)->pending_list, list) \
> >>>> + for_each_if(!__entitiy || (__job)->entity == (__entitiy))
> >>>> +
> >>>> #endif
> >>>
>
^ permalink raw reply [flat|nested] 15+ messages in thread* Re: [RFC PATCH 1/4] drm/sched: Add pending job list iterator
2025-10-07 9:44 ` Matthew Brost
@ 2025-10-07 9:51 ` Danilo Krummrich
0 siblings, 0 replies; 15+ messages in thread
From: Danilo Krummrich @ 2025-10-07 9:51 UTC (permalink / raw)
To: Matthew Brost
Cc: Christian König, dri-devel, intel-xe, alexdeucher, pstanner,
Philipp Stanner
On Tue Oct 7, 2025 at 11:44 AM CEST, Matthew Brost wrote:
> Honestly I'd just lean towards dropping the debug version then. It is
> basically useless information in Xe as the number of pending jobs can
> dervived from the ring's seqnos which is also printed.
Yes, either do that or provide a dedicated debugfs layer in the scheduler
itself.
For printing driver specific job information we can easily add a callback.
^ permalink raw reply [flat|nested] 15+ messages in thread
* [RFC PATCH 2/4] drm/sched: Add several job helpers to avoid drivers touching scheduler state
2025-10-02 5:16 [RFC PATCH 0/4] Fix DRM scheduler layering violations in Xe Matthew Brost
2025-10-02 5:16 ` [RFC PATCH 1/4] drm/sched: Add pending job list iterator Matthew Brost
@ 2025-10-02 5:16 ` Matthew Brost
2025-10-02 5:16 ` [RFC PATCH 3/4] drm/xe: Add dedicated message lock Matthew Brost
` (5 subsequent siblings)
7 siblings, 0 replies; 15+ messages in thread
From: Matthew Brost @ 2025-10-02 5:16 UTC (permalink / raw)
To: dri-devel, intel-xe; +Cc: alexdeucher, dakr, christian.koenig, pstanner
Add helpers to find first pending job, pending job count, and a jobs
signaled state. Expected to used driver side on recovery and debug
flows.
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
---
include/drm/gpu_scheduler.h | 52 +++++++++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
diff --git a/include/drm/gpu_scheduler.h b/include/drm/gpu_scheduler.h
index a2dcabab8284..9c25ab88b069 100644
--- a/include/drm/gpu_scheduler.h
+++ b/include/drm/gpu_scheduler.h
@@ -762,4 +762,56 @@ static inline void
list_for_each_entry(__job, &(__sched)->pending_list, list) \
for_each_if(!__entitiy || (__job)->entity == (__entitiy))
+/**
+ * drm_sched_first_pending_job() - DRM scheduler first pending job
+ * @sched: DRM scheduler
+ *
+ * Find DRM scheduler first pending job, drivers should only call this function
+ * when scheduler is stopped or job can immediately disappear resulting in a
+ * UAF.
+ *
+ * Return: First pending job or NULL
+ */
+static inline struct drm_sched_job *
+drm_sched_first_pending_job(struct drm_gpu_scheduler *sched)
+{
+ WARN_ON(!READ_ONCE(sched->pause_submit));
+ guard(spinlock)(&sched->job_list_lock);
+ return list_first_entry_or_null(&sched->pending_list,
+ struct drm_sched_job, list);
+}
+
+/**
+ * drm_sched_pending_job_count() - DRM scheduler pending job count
+ * @sched: DRM scheduler
+ *
+ * Determine DRM scheduler pending job count. If scheduler if not stopped, this
+ * value can immediately change, thus drivers must guard against using to count
+ * to anything memory unsafe. Use with caution.
+ *
+ * Return: Number of pending jobs
+ */
+static inline int drm_sched_pending_job_count(struct drm_gpu_scheduler *sched)
+{
+ guard(spinlock)(&sched->job_list_lock);
+ return list_count_nodes(&sched->pending_list);
+}
+
+/**
+ * drm_sched_job_is_signaled() - DRM scheduler job is signaled
+ * @job: DRM scheduler job
+ *
+ * Determine if DRM scheduler job is signaled. DRM scheduler should be stopped
+ * to obtain a stable snapshot of state.
+ *
+ * Return: True if job is signaled, False otherwise
+ */
+static inline bool drm_sched_job_is_signaled(struct drm_sched_job *job)
+{
+ struct drm_sched_fence *s_fence = job->s_fence;
+
+ WARN_ON(!READ_ONCE(job->sched->pause_submit));
+ return s_fence->parent && dma_fence_is_signaled(s_fence->parent);
+}
+
#endif
--
2.34.1
^ permalink raw reply related [flat|nested] 15+ messages in thread* [RFC PATCH 3/4] drm/xe: Add dedicated message lock
2025-10-02 5:16 [RFC PATCH 0/4] Fix DRM scheduler layering violations in Xe Matthew Brost
2025-10-02 5:16 ` [RFC PATCH 1/4] drm/sched: Add pending job list iterator Matthew Brost
2025-10-02 5:16 ` [RFC PATCH 2/4] drm/sched: Add several job helpers to avoid drivers touching scheduler state Matthew Brost
@ 2025-10-02 5:16 ` Matthew Brost
2025-10-02 5:16 ` [RFC PATCH 4/4] drm/xe: Stop abusing DRM scheduler internals Matthew Brost
` (4 subsequent siblings)
7 siblings, 0 replies; 15+ messages in thread
From: Matthew Brost @ 2025-10-02 5:16 UTC (permalink / raw)
To: dri-devel, intel-xe; +Cc: alexdeucher, dakr, christian.koenig, pstanner
Stop abusing DRM scheduler job list lock for messages, add dedicated
message lock.
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
---
drivers/gpu/drm/xe/xe_gpu_scheduler.c | 3 ++-
drivers/gpu/drm/xe/xe_gpu_scheduler.h | 4 ++--
drivers/gpu/drm/xe/xe_gpu_scheduler_types.h | 2 ++
3 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_gpu_scheduler.c b/drivers/gpu/drm/xe/xe_gpu_scheduler.c
index 455ccaf17314..bfd1aebe70e6 100644
--- a/drivers/gpu/drm/xe/xe_gpu_scheduler.c
+++ b/drivers/gpu/drm/xe/xe_gpu_scheduler.c
@@ -77,6 +77,7 @@ int xe_sched_init(struct xe_gpu_scheduler *sched,
};
sched->ops = xe_ops;
+ spin_lock_init(&sched->msg_lock);
INIT_LIST_HEAD(&sched->msgs);
INIT_WORK(&sched->work_process_msg, xe_sched_process_msg_work);
@@ -130,7 +131,7 @@ void xe_sched_add_msg(struct xe_gpu_scheduler *sched,
void xe_sched_add_msg_locked(struct xe_gpu_scheduler *sched,
struct xe_sched_msg *msg)
{
- lockdep_assert_held(&sched->base.job_list_lock);
+ lockdep_assert_held(&sched->msg_lock);
list_add_tail(&msg->link, &sched->msgs);
xe_sched_process_msg_queue(sched);
diff --git a/drivers/gpu/drm/xe/xe_gpu_scheduler.h b/drivers/gpu/drm/xe/xe_gpu_scheduler.h
index e548b2aed95a..04f85c4f7e80 100644
--- a/drivers/gpu/drm/xe/xe_gpu_scheduler.h
+++ b/drivers/gpu/drm/xe/xe_gpu_scheduler.h
@@ -32,12 +32,12 @@ void xe_sched_add_msg_locked(struct xe_gpu_scheduler *sched,
static inline void xe_sched_msg_lock(struct xe_gpu_scheduler *sched)
{
- spin_lock(&sched->base.job_list_lock);
+ spin_lock(&sched->msg_lock);
}
static inline void xe_sched_msg_unlock(struct xe_gpu_scheduler *sched)
{
- spin_unlock(&sched->base.job_list_lock);
+ spin_unlock(&sched->msg_lock);
}
static inline void xe_sched_stop(struct xe_gpu_scheduler *sched)
diff --git a/drivers/gpu/drm/xe/xe_gpu_scheduler_types.h b/drivers/gpu/drm/xe/xe_gpu_scheduler_types.h
index 6731b13da8bb..63d9bf92583c 100644
--- a/drivers/gpu/drm/xe/xe_gpu_scheduler_types.h
+++ b/drivers/gpu/drm/xe/xe_gpu_scheduler_types.h
@@ -47,6 +47,8 @@ struct xe_gpu_scheduler {
const struct xe_sched_backend_ops *ops;
/** @msgs: list of messages to be processed in @work_process_msg */
struct list_head msgs;
+ /** @msg_lock: Message lock */
+ spinlock_t msg_lock;
/** @work_process_msg: processes messages */
struct work_struct work_process_msg;
};
--
2.34.1
^ permalink raw reply related [flat|nested] 15+ messages in thread* [RFC PATCH 4/4] drm/xe: Stop abusing DRM scheduler internals
2025-10-02 5:16 [RFC PATCH 0/4] Fix DRM scheduler layering violations in Xe Matthew Brost
` (2 preceding siblings ...)
2025-10-02 5:16 ` [RFC PATCH 3/4] drm/xe: Add dedicated message lock Matthew Brost
@ 2025-10-02 5:16 ` Matthew Brost
2025-10-02 6:01 ` ✗ CI.checkpatch: warning for Fix DRM scheduler layering violations in Xe Patchwork
` (3 subsequent siblings)
7 siblings, 0 replies; 15+ messages in thread
From: Matthew Brost @ 2025-10-02 5:16 UTC (permalink / raw)
To: dri-devel, intel-xe; +Cc: alexdeucher, dakr, christian.koenig, pstanner
Use new pending job list iterator and new helper functions in Xe to
avoid reaching into DRM scheduler internals.
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
---
drivers/gpu/drm/xe/xe_gpu_scheduler.h | 27 +++++--------------
drivers/gpu/drm/xe/xe_guc_submit.c | 34 +++++++++++-------------
drivers/gpu/drm/xe/xe_guc_submit_types.h | 1 -
3 files changed, 21 insertions(+), 41 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_gpu_scheduler.h b/drivers/gpu/drm/xe/xe_gpu_scheduler.h
index 04f85c4f7e80..ccfb7962e6c1 100644
--- a/drivers/gpu/drm/xe/xe_gpu_scheduler.h
+++ b/drivers/gpu/drm/xe/xe_gpu_scheduler.h
@@ -7,7 +7,7 @@
#define _XE_GPU_SCHEDULER_H_
#include "xe_gpu_scheduler_types.h"
-#include "xe_sched_job_types.h"
+#include "xe_sched_job.h"
int xe_sched_init(struct xe_gpu_scheduler *sched,
const struct drm_sched_backend_ops *ops,
@@ -54,13 +54,9 @@ static inline void xe_sched_resubmit_jobs(struct xe_gpu_scheduler *sched)
{
struct drm_sched_job *s_job;
- list_for_each_entry(s_job, &sched->base.pending_list, list) {
- struct drm_sched_fence *s_fence = s_job->s_fence;
- struct dma_fence *hw_fence = s_fence->parent;
-
- if (hw_fence && !dma_fence_is_signaled(hw_fence))
+ drm_sched_for_each_pending_job(s_job, &sched->base, NULL, true)
+ if (!drm_sched_job_is_signaled(s_job))
sched->base.ops->run_job(s_job);
- }
}
static inline bool
@@ -69,25 +65,14 @@ xe_sched_invalidate_job(struct xe_sched_job *job, int threshold)
return drm_sched_invalidate_job(&job->drm, threshold);
}
-static inline void xe_sched_add_pending_job(struct xe_gpu_scheduler *sched,
- struct xe_sched_job *job)
-{
- spin_lock(&sched->base.job_list_lock);
- list_add(&job->drm.list, &sched->base.pending_list);
- spin_unlock(&sched->base.job_list_lock);
-}
-
static inline
struct xe_sched_job *xe_sched_first_pending_job(struct xe_gpu_scheduler *sched)
{
- struct xe_sched_job *job;
+ struct drm_sched_job *job;
- spin_lock(&sched->base.job_list_lock);
- job = list_first_entry_or_null(&sched->base.pending_list,
- struct xe_sched_job, drm.list);
- spin_unlock(&sched->base.job_list_lock);
+ job = drm_sched_first_pending_job(&sched->base);
- return job;
+ return job ? to_xe_sched_job(job) : NULL;
}
static inline int
diff --git a/drivers/gpu/drm/xe/xe_guc_submit.c b/drivers/gpu/drm/xe/xe_guc_submit.c
index 53024eb5670b..da13c1380cb3 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit.c
+++ b/drivers/gpu/drm/xe/xe_guc_submit.c
@@ -1217,7 +1217,7 @@ static enum drm_gpu_sched_stat
guc_exec_queue_timedout_job(struct drm_sched_job *drm_job)
{
struct xe_sched_job *job = to_xe_sched_job(drm_job);
- struct xe_sched_job *tmp_job;
+ struct drm_sched_job *tmp_job;
struct xe_exec_queue *q = job->q;
struct xe_gpu_scheduler *sched = &q->guc->sched;
struct xe_guc *guc = exec_queue_to_guc(q);
@@ -1226,7 +1226,6 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job)
unsigned int fw_ref;
int err = -ETIME;
pid_t pid = -1;
- int i = 0;
bool wedged = false, skip_timeout_check;
/*
@@ -1391,21 +1390,19 @@ guc_exec_queue_timedout_job(struct drm_sched_job *drm_job)
* Fence state now stable, stop / start scheduler which cleans up any
* fences that are complete
*/
- xe_sched_add_pending_job(sched, job);
+ xe_sched_job_set_error(job, err);
xe_sched_submission_start(sched);
xe_guc_exec_queue_trigger_cleanup(q);
/* Mark all outstanding jobs as bad, thus completing them */
- spin_lock(&sched->base.job_list_lock);
- list_for_each_entry(tmp_job, &sched->base.pending_list, drm.list)
- xe_sched_job_set_error(tmp_job, !i++ ? err : -ECANCELED);
- spin_unlock(&sched->base.job_list_lock);
+ drm_sched_for_each_pending_job(tmp_job, &sched->base, NULL, false)
+ xe_sched_job_set_error(to_xe_sched_job(tmp_job), -ECANCELED);
/* Start fence signaling */
xe_hw_fence_irq_start(q->fence_irq);
- return DRM_GPU_SCHED_STAT_RESET;
+ return DRM_GPU_SCHED_STAT_NO_HANG;
sched_enable:
enable_scheduling(q);
@@ -2478,30 +2475,30 @@ xe_guc_exec_queue_snapshot_capture(struct xe_exec_queue *q)
if (snapshot->parallel_execution)
guc_exec_queue_wq_snapshot_capture(q, snapshot);
- spin_lock(&sched->base.job_list_lock);
- snapshot->pending_list_size = list_count_nodes(&sched->base.pending_list);
+ snapshot->pending_list_size = drm_sched_pending_job_count(&sched->base);
snapshot->pending_list = kmalloc_array(snapshot->pending_list_size,
sizeof(struct pending_list_snapshot),
GFP_ATOMIC);
if (snapshot->pending_list) {
struct xe_sched_job *job_iter;
+ struct drm_sched_job *drm_job;
i = 0;
- list_for_each_entry(job_iter, &sched->base.pending_list, drm.list) {
+ drm_sched_for_each_pending_job(drm_job, &sched->base, NULL, false) {
+ job_iter = to_xe_sched_job(drm_job);
+
+ if (i >= snapshot->pending_list_size)
+ break;
+
snapshot->pending_list[i].seqno =
xe_sched_job_seqno(job_iter);
snapshot->pending_list[i].fence =
dma_fence_is_signaled(job_iter->fence) ? 1 : 0;
- snapshot->pending_list[i].finished =
- dma_fence_is_signaled(&job_iter->drm.s_fence->finished)
- ? 1 : 0;
i++;
}
}
- spin_unlock(&sched->base.job_list_lock);
-
return snapshot;
}
@@ -2562,10 +2559,9 @@ xe_guc_exec_queue_snapshot_print(struct xe_guc_submit_exec_queue_snapshot *snaps
for (i = 0; snapshot->pending_list && i < snapshot->pending_list_size;
i++)
- drm_printf(p, "\tJob: seqno=%d, fence=%d, finished=%d\n",
+ drm_printf(p, "\tJob: seqno=%d, fence=%d\n",
snapshot->pending_list[i].seqno,
- snapshot->pending_list[i].fence,
- snapshot->pending_list[i].finished);
+ snapshot->pending_list[i].fence);
}
/**
diff --git a/drivers/gpu/drm/xe/xe_guc_submit_types.h b/drivers/gpu/drm/xe/xe_guc_submit_types.h
index dc7456c34583..59d88dd66e6e 100644
--- a/drivers/gpu/drm/xe/xe_guc_submit_types.h
+++ b/drivers/gpu/drm/xe/xe_guc_submit_types.h
@@ -64,7 +64,6 @@ struct guc_submit_parallel_scratch {
struct pending_list_snapshot {
u32 seqno;
bool fence;
- bool finished;
};
/**
--
2.34.1
^ permalink raw reply related [flat|nested] 15+ messages in thread* ✗ CI.checkpatch: warning for Fix DRM scheduler layering violations in Xe
2025-10-02 5:16 [RFC PATCH 0/4] Fix DRM scheduler layering violations in Xe Matthew Brost
` (3 preceding siblings ...)
2025-10-02 5:16 ` [RFC PATCH 4/4] drm/xe: Stop abusing DRM scheduler internals Matthew Brost
@ 2025-10-02 6:01 ` Patchwork
2025-10-02 6:02 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2025-10-02 6:01 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
== Series Details ==
Series: Fix DRM scheduler layering violations in Xe
URL : https://patchwork.freedesktop.org/series/155314/
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 0f68169114399f5a6a4aa710e4123a2ec8a47e9c
Author: Matthew Brost <matthew.brost@intel.com>
Date: Wed Oct 1 22:16:04 2025 -0700
drm/xe: Stop abusing DRM scheduler internals
Use new pending job list iterator and new helper functions in Xe to
avoid reaching into DRM scheduler internals.
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
+ /mt/dim checkpatch 5f87abb254011980c8332008cfff72d2cfab4952 drm-intel
3ea8291237e0 drm/sched: Add pending job list iterator
-:60: ERROR:SPACING: space required after that ';' (ctx:VxO)
#60: FILE: include/drm/gpu_scheduler.h:741:
+ __drm_sched_iter_pending_job_end(_T);,
^
-:62: ERROR:POINTER_LOCATION: "foo * bar" should be "foo *bar"
#62: FILE: include/drm/gpu_scheduler.h:743:
+ struct drm_gpu_scheduler * __sched, bool __stopped);
-:76: WARNING:TYPO_SPELLING: 'stoppped' may be misspelled - perhaps 'stopped'?
#76: FILE: include/drm/gpu_scheduler.h:757:
+ * enforcing locking rules (either scheduler fully stoppped or correctly takes
^^^^^^^^
-:79: ERROR:COMPLEX_MACRO: Macros with complex values should be enclosed in parentheses
#79: FILE: include/drm/gpu_scheduler.h:760:
+#define drm_sched_for_each_pending_job(__job, __sched, __entitiy, __stopped) \
+ scoped_guard(drm_sched_iter_pending_job, __sched, __stopped) \
+ list_for_each_entry(__job, &(__sched)->pending_list, list) \
+ for_each_if(!__entitiy || (__job)->entity == (__entitiy))
BUT SEE:
do {} while (0) advice is over-stated in a few situations:
The more obvious case is macros, like MODULE_PARM_DESC, invoked at
file-scope, where C disallows code (it must be in functions). See
$exceptions if you have one to add by name.
More troublesome is declarative macros used at top of new scope,
like DECLARE_PER_CPU. These might just compile with a do-while-0
wrapper, but would be incorrect. Most of these are handled by
detecting struct,union,etc declaration primitives in $exceptions.
Theres also macros called inside an if (block), which "return" an
expression. These cannot do-while, and need a ({}) wrapper.
Enjoy this qualification while we work to improve our heuristics.
-:79: CHECK:MACRO_ARG_REUSE: Macro argument reuse '__job' - possible side-effects?
#79: FILE: include/drm/gpu_scheduler.h:760:
+#define drm_sched_for_each_pending_job(__job, __sched, __entitiy, __stopped) \
+ scoped_guard(drm_sched_iter_pending_job, __sched, __stopped) \
+ list_for_each_entry(__job, &(__sched)->pending_list, list) \
+ for_each_if(!__entitiy || (__job)->entity == (__entitiy))
-:79: CHECK:MACRO_ARG_REUSE: Macro argument reuse '__sched' - possible side-effects?
#79: FILE: include/drm/gpu_scheduler.h:760:
+#define drm_sched_for_each_pending_job(__job, __sched, __entitiy, __stopped) \
+ scoped_guard(drm_sched_iter_pending_job, __sched, __stopped) \
+ list_for_each_entry(__job, &(__sched)->pending_list, list) \
+ for_each_if(!__entitiy || (__job)->entity == (__entitiy))
-:79: CHECK:MACRO_ARG_REUSE: Macro argument reuse '__entitiy' - possible side-effects?
#79: FILE: include/drm/gpu_scheduler.h:760:
+#define drm_sched_for_each_pending_job(__job, __sched, __entitiy, __stopped) \
+ scoped_guard(drm_sched_iter_pending_job, __sched, __stopped) \
+ list_for_each_entry(__job, &(__sched)->pending_list, list) \
+ for_each_if(!__entitiy || (__job)->entity == (__entitiy))
-:79: CHECK:MACRO_ARG_PRECEDENCE: Macro argument '__entitiy' may be better as '(__entitiy)' to avoid precedence issues
#79: FILE: include/drm/gpu_scheduler.h:760:
+#define drm_sched_for_each_pending_job(__job, __sched, __entitiy, __stopped) \
+ scoped_guard(drm_sched_iter_pending_job, __sched, __stopped) \
+ list_for_each_entry(__job, &(__sched)->pending_list, list) \
+ for_each_if(!__entitiy || (__job)->entity == (__entitiy))
-:81: WARNING:SUSPECT_CODE_INDENT: suspect code indent for conditional statements (8, 8)
#81: FILE: include/drm/gpu_scheduler.h:762:
+ list_for_each_entry(__job, &(__sched)->pending_list, list) \
+ for_each_if(!__entitiy || (__job)->entity == (__entitiy))
total: 3 errors, 2 warnings, 4 checks, 68 lines checked
50de46faaa3d drm/sched: Add several job helpers to avoid drivers touching scheduler state
22b3e7bd3988 drm/xe: Add dedicated message lock
0f6816911439 drm/xe: Stop abusing DRM scheduler internals
^ permalink raw reply [flat|nested] 15+ messages in thread* ✓ CI.KUnit: success for Fix DRM scheduler layering violations in Xe
2025-10-02 5:16 [RFC PATCH 0/4] Fix DRM scheduler layering violations in Xe Matthew Brost
` (4 preceding siblings ...)
2025-10-02 6:01 ` ✗ CI.checkpatch: warning for Fix DRM scheduler layering violations in Xe Patchwork
@ 2025-10-02 6:02 ` Patchwork
2025-10-02 6:38 ` ✓ Xe.CI.BAT: " Patchwork
2025-10-02 7:58 ` ✗ Xe.CI.Full: failure " Patchwork
7 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2025-10-02 6:02 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
== Series Details ==
Series: Fix DRM scheduler layering violations in Xe
URL : https://patchwork.freedesktop.org/series/155314/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[06:01:13] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[06:01:17] 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
[06:01:46] Starting KUnit Kernel (1/1)...
[06:01:46] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[06:01:47] ================== guc_buf (11 subtests) ===================
[06:01:47] [PASSED] test_smallest
[06:01:47] [PASSED] test_largest
[06:01:47] [PASSED] test_granular
[06:01:47] [PASSED] test_unique
[06:01:47] [PASSED] test_overlap
[06:01:47] [PASSED] test_reusable
[06:01:47] [PASSED] test_too_big
[06:01:47] [PASSED] test_flush
[06:01:47] [PASSED] test_lookup
[06:01:47] [PASSED] test_data
[06:01:47] [PASSED] test_class
[06:01:47] ===================== [PASSED] guc_buf =====================
[06:01:47] =================== guc_dbm (7 subtests) ===================
[06:01:47] [PASSED] test_empty
[06:01:47] [PASSED] test_default
[06:01:47] ======================== test_size ========================
[06:01:47] [PASSED] 4
[06:01:47] [PASSED] 8
[06:01:47] [PASSED] 32
[06:01:47] [PASSED] 256
[06:01:47] ==================== [PASSED] test_size ====================
[06:01:47] ======================= test_reuse ========================
[06:01:47] [PASSED] 4
[06:01:47] [PASSED] 8
[06:01:47] [PASSED] 32
[06:01:47] [PASSED] 256
[06:01:47] =================== [PASSED] test_reuse ====================
[06:01:47] =================== test_range_overlap ====================
[06:01:47] [PASSED] 4
[06:01:47] [PASSED] 8
[06:01:47] [PASSED] 32
[06:01:47] [PASSED] 256
[06:01:47] =============== [PASSED] test_range_overlap ================
[06:01:47] =================== test_range_compact ====================
[06:01:47] [PASSED] 4
[06:01:47] [PASSED] 8
[06:01:47] [PASSED] 32
[06:01:47] [PASSED] 256
[06:01:47] =============== [PASSED] test_range_compact ================
[06:01:47] ==================== test_range_spare =====================
[06:01:47] [PASSED] 4
[06:01:47] [PASSED] 8
[06:01:47] [PASSED] 32
[06:01:47] [PASSED] 256
[06:01:47] ================ [PASSED] test_range_spare =================
[06:01:47] ===================== [PASSED] guc_dbm =====================
[06:01:47] =================== guc_idm (6 subtests) ===================
[06:01:47] [PASSED] bad_init
[06:01:47] [PASSED] no_init
[06:01:47] [PASSED] init_fini
[06:01:47] [PASSED] check_used
[06:01:47] [PASSED] check_quota
[06:01:47] [PASSED] check_all
[06:01:47] ===================== [PASSED] guc_idm =====================
[06:01:47] ================== no_relay (3 subtests) ===================
[06:01:47] [PASSED] xe_drops_guc2pf_if_not_ready
[06:01:47] [PASSED] xe_drops_guc2vf_if_not_ready
[06:01:47] [PASSED] xe_rejects_send_if_not_ready
[06:01:47] ==================== [PASSED] no_relay =====================
[06:01:47] ================== pf_relay (14 subtests) ==================
[06:01:47] [PASSED] pf_rejects_guc2pf_too_short
[06:01:47] [PASSED] pf_rejects_guc2pf_too_long
[06:01:47] [PASSED] pf_rejects_guc2pf_no_payload
[06:01:47] [PASSED] pf_fails_no_payload
[06:01:47] [PASSED] pf_fails_bad_origin
[06:01:47] [PASSED] pf_fails_bad_type
[06:01:47] [PASSED] pf_txn_reports_error
[06:01:47] [PASSED] pf_txn_sends_pf2guc
[06:01:47] [PASSED] pf_sends_pf2guc
[06:01:47] [SKIPPED] pf_loopback_nop
[06:01:47] [SKIPPED] pf_loopback_echo
[06:01:47] [SKIPPED] pf_loopback_fail
[06:01:47] [SKIPPED] pf_loopback_busy
[06:01:47] [SKIPPED] pf_loopback_retry
[06:01:47] ==================== [PASSED] pf_relay =====================
[06:01:47] ================== vf_relay (3 subtests) ===================
[06:01:47] [PASSED] vf_rejects_guc2vf_too_short
[06:01:47] [PASSED] vf_rejects_guc2vf_too_long
[06:01:47] [PASSED] vf_rejects_guc2vf_no_payload
[06:01:47] ==================== [PASSED] vf_relay =====================
[06:01:47] ===================== lmtt (1 subtest) =====================
[06:01:47] ======================== test_ops =========================
[06:01:47] [PASSED] 2-level
[06:01:47] [PASSED] multi-level
[06:01:47] ==================== [PASSED] test_ops =====================
[06:01:47] ====================== [PASSED] lmtt =======================
[06:01:47] ================= pf_service (11 subtests) =================
[06:01:47] [PASSED] pf_negotiate_any
[06:01:47] [PASSED] pf_negotiate_base_match
[06:01:47] [PASSED] pf_negotiate_base_newer
[06:01:47] [PASSED] pf_negotiate_base_next
[06:01:47] [SKIPPED] pf_negotiate_base_older
[06:01:47] [PASSED] pf_negotiate_base_prev
[06:01:47] [PASSED] pf_negotiate_latest_match
[06:01:47] [PASSED] pf_negotiate_latest_newer
[06:01:47] [PASSED] pf_negotiate_latest_next
[06:01:47] [SKIPPED] pf_negotiate_latest_older
[06:01:47] [SKIPPED] pf_negotiate_latest_prev
[06:01:47] =================== [PASSED] pf_service ====================
[06:01:47] ================= xe_guc_g2g (2 subtests) ==================
[06:01:47] ============== xe_live_guc_g2g_kunit_default ==============
[06:01:47] ========= [SKIPPED] xe_live_guc_g2g_kunit_default ==========
[06:01:47] ============== xe_live_guc_g2g_kunit_allmem ===============
[06:01:47] ========== [SKIPPED] xe_live_guc_g2g_kunit_allmem ==========
[06:01:47] =================== [SKIPPED] xe_guc_g2g ===================
[06:01:47] =================== xe_mocs (2 subtests) ===================
[06:01:47] ================ xe_live_mocs_kernel_kunit ================
[06:01:47] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[06:01:47] ================ xe_live_mocs_reset_kunit =================
[06:01:47] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[06:01:47] ==================== [SKIPPED] xe_mocs =====================
[06:01:47] ================= xe_migrate (2 subtests) ==================
[06:01:47] ================= xe_migrate_sanity_kunit =================
[06:01:47] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[06:01:47] ================== xe_validate_ccs_kunit ==================
[06:01:47] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[06:01:47] =================== [SKIPPED] xe_migrate ===================
[06:01:47] ================== xe_dma_buf (1 subtest) ==================
[06:01:47] ==================== xe_dma_buf_kunit =====================
[06:01:47] ================ [SKIPPED] xe_dma_buf_kunit ================
[06:01:47] =================== [SKIPPED] xe_dma_buf ===================
[06:01:47] ================= xe_bo_shrink (1 subtest) =================
[06:01:47] =================== xe_bo_shrink_kunit ====================
[06:01:47] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[06:01:47] ================== [SKIPPED] xe_bo_shrink ==================
[06:01:47] ==================== xe_bo (2 subtests) ====================
[06:01:47] ================== xe_ccs_migrate_kunit ===================
[06:01:47] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[06:01:47] ==================== xe_bo_evict_kunit ====================
[06:01:47] =============== [SKIPPED] xe_bo_evict_kunit ================
[06:01:47] ===================== [SKIPPED] xe_bo ======================
[06:01:47] ==================== args (11 subtests) ====================
[06:01:47] [PASSED] count_args_test
[06:01:47] [PASSED] call_args_example
[06:01:47] [PASSED] call_args_test
[06:01:47] [PASSED] drop_first_arg_example
[06:01:47] [PASSED] drop_first_arg_test
[06:01:47] [PASSED] first_arg_example
[06:01:47] [PASSED] first_arg_test
[06:01:47] [PASSED] last_arg_example
[06:01:47] [PASSED] last_arg_test
[06:01:47] [PASSED] pick_arg_example
[06:01:47] [PASSED] sep_comma_example
[06:01:47] ====================== [PASSED] args =======================
[06:01:47] =================== xe_pci (3 subtests) ====================
[06:01:47] ==================== check_graphics_ip ====================
[06:01:47] [PASSED] 12.00 Xe_LP
[06:01:47] [PASSED] 12.10 Xe_LP+
[06:01:47] [PASSED] 12.55 Xe_HPG
[06:01:47] [PASSED] 12.60 Xe_HPC
[06:01:47] [PASSED] 12.70 Xe_LPG
[06:01:47] [PASSED] 12.71 Xe_LPG
[06:01:47] [PASSED] 12.74 Xe_LPG+
[06:01:47] [PASSED] 20.01 Xe2_HPG
[06:01:47] [PASSED] 20.02 Xe2_HPG
[06:01:47] [PASSED] 20.04 Xe2_LPG
[06:01:47] [PASSED] 30.00 Xe3_LPG
[06:01:47] [PASSED] 30.01 Xe3_LPG
[06:01:47] [PASSED] 30.03 Xe3_LPG
[06:01:47] ================ [PASSED] check_graphics_ip ================
[06:01:47] ===================== check_media_ip ======================
[06:01:47] [PASSED] 12.00 Xe_M
[06:01:47] [PASSED] 12.55 Xe_HPM
[06:01:47] [PASSED] 13.00 Xe_LPM+
[06:01:47] [PASSED] 13.01 Xe2_HPM
[06:01:47] [PASSED] 20.00 Xe2_LPM
[06:01:47] [PASSED] 30.00 Xe3_LPM
[06:01:47] [PASSED] 30.02 Xe3_LPM
[06:01:47] ================= [PASSED] check_media_ip ==================
[06:01:47] ================= check_platform_gt_count =================
[06:01:47] [PASSED] 0x9A60 (TIGERLAKE)
[06:01:47] [PASSED] 0x9A68 (TIGERLAKE)
[06:01:47] [PASSED] 0x9A70 (TIGERLAKE)
[06:01:47] [PASSED] 0x9A40 (TIGERLAKE)
[06:01:47] [PASSED] 0x9A49 (TIGERLAKE)
[06:01:47] [PASSED] 0x9A59 (TIGERLAKE)
[06:01:47] [PASSED] 0x9A78 (TIGERLAKE)
[06:01:47] [PASSED] 0x9AC0 (TIGERLAKE)
[06:01:47] [PASSED] 0x9AC9 (TIGERLAKE)
[06:01:47] [PASSED] 0x9AD9 (TIGERLAKE)
[06:01:47] [PASSED] 0x9AF8 (TIGERLAKE)
[06:01:47] [PASSED] 0x4C80 (ROCKETLAKE)
[06:01:47] [PASSED] 0x4C8A (ROCKETLAKE)
[06:01:47] [PASSED] 0x4C8B (ROCKETLAKE)
[06:01:47] [PASSED] 0x4C8C (ROCKETLAKE)
[06:01:47] [PASSED] 0x4C90 (ROCKETLAKE)
[06:01:47] [PASSED] 0x4C9A (ROCKETLAKE)
[06:01:47] [PASSED] 0x4680 (ALDERLAKE_S)
[06:01:47] [PASSED] 0x4682 (ALDERLAKE_S)
[06:01:47] [PASSED] 0x4688 (ALDERLAKE_S)
[06:01:47] [PASSED] 0x468A (ALDERLAKE_S)
[06:01:47] [PASSED] 0x468B (ALDERLAKE_S)
[06:01:47] [PASSED] 0x4690 (ALDERLAKE_S)
[06:01:47] [PASSED] 0x4692 (ALDERLAKE_S)
[06:01:47] [PASSED] 0x4693 (ALDERLAKE_S)
[06:01:47] [PASSED] 0x46A0 (ALDERLAKE_P)
[06:01:47] [PASSED] 0x46A1 (ALDERLAKE_P)
[06:01:47] [PASSED] 0x46A2 (ALDERLAKE_P)
[06:01:47] [PASSED] 0x46A3 (ALDERLAKE_P)
[06:01:47] [PASSED] 0x46A6 (ALDERLAKE_P)
[06:01:47] [PASSED] 0x46A8 (ALDERLAKE_P)
[06:01:47] [PASSED] 0x46AA (ALDERLAKE_P)
[06:01:47] [PASSED] 0x462A (ALDERLAKE_P)
[06:01:47] [PASSED] 0x4626 (ALDERLAKE_P)
[06:01:47] [PASSED] 0x4628 (ALDERLAKE_P)
[06:01:47] [PASSED] 0x46B0 (ALDERLAKE_P)
[06:01:47] [PASSED] 0x46B1 (ALDERLAKE_P)
[06:01:47] [PASSED] 0x46B2 (ALDERLAKE_P)
[06:01:47] [PASSED] 0x46B3 (ALDERLAKE_P)
[06:01:47] [PASSED] 0x46C0 (ALDERLAKE_P)
[06:01:47] [PASSED] 0x46C1 (ALDERLAKE_P)
[06:01:47] [PASSED] 0x46C2 (ALDERLAKE_P)
[06:01:47] [PASSED] 0x46C3 (ALDERLAKE_P)
[06:01:47] [PASSED] 0x46D0 (ALDERLAKE_N)
[06:01:47] [PASSED] 0x46D1 (ALDERLAKE_N)
[06:01:47] [PASSED] 0x46D2 (ALDERLAKE_N)
[06:01:47] [PASSED] 0x46D3 (ALDERLAKE_N)
[06:01:47] [PASSED] 0x46D4 (ALDERLAKE_N)
[06:01:47] [PASSED] 0xA721 (ALDERLAKE_P)
[06:01:47] [PASSED] 0xA7A1 (ALDERLAKE_P)
[06:01:47] [PASSED] 0xA7A9 (ALDERLAKE_P)
[06:01:47] [PASSED] 0xA7AC (ALDERLAKE_P)
[06:01:47] [PASSED] 0xA7AD (ALDERLAKE_P)
[06:01:47] [PASSED] 0xA720 (ALDERLAKE_P)
[06:01:47] [PASSED] 0xA7A0 (ALDERLAKE_P)
[06:01:47] [PASSED] 0xA7A8 (ALDERLAKE_P)
[06:01:47] [PASSED] 0xA7AA (ALDERLAKE_P)
[06:01:47] [PASSED] 0xA7AB (ALDERLAKE_P)
[06:01:47] [PASSED] 0xA780 (ALDERLAKE_S)
[06:01:47] [PASSED] 0xA781 (ALDERLAKE_S)
[06:01:47] [PASSED] 0xA782 (ALDERLAKE_S)
[06:01:47] [PASSED] 0xA783 (ALDERLAKE_S)
[06:01:47] [PASSED] 0xA788 (ALDERLAKE_S)
[06:01:47] [PASSED] 0xA789 (ALDERLAKE_S)
[06:01:47] [PASSED] 0xA78A (ALDERLAKE_S)
[06:01:47] [PASSED] 0xA78B (ALDERLAKE_S)
[06:01:47] [PASSED] 0x4905 (DG1)
[06:01:47] [PASSED] 0x4906 (DG1)
[06:01:47] [PASSED] 0x4907 (DG1)
[06:01:47] [PASSED] 0x4908 (DG1)
[06:01:47] [PASSED] 0x4909 (DG1)
[06:01:47] [PASSED] 0x56C0 (DG2)
[06:01:47] [PASSED] 0x56C2 (DG2)
[06:01:47] [PASSED] 0x56C1 (DG2)
[06:01:47] [PASSED] 0x7D51 (METEORLAKE)
[06:01:47] [PASSED] 0x7DD1 (METEORLAKE)
[06:01:47] [PASSED] 0x7D41 (METEORLAKE)
[06:01:47] [PASSED] 0x7D67 (METEORLAKE)
[06:01:47] [PASSED] 0xB640 (METEORLAKE)
[06:01:47] [PASSED] 0x56A0 (DG2)
[06:01:47] [PASSED] 0x56A1 (DG2)
[06:01:47] [PASSED] 0x56A2 (DG2)
[06:01:47] [PASSED] 0x56BE (DG2)
[06:01:47] [PASSED] 0x56BF (DG2)
[06:01:47] [PASSED] 0x5690 (DG2)
[06:01:47] [PASSED] 0x5691 (DG2)
[06:01:47] [PASSED] 0x5692 (DG2)
[06:01:47] [PASSED] 0x56A5 (DG2)
[06:01:47] [PASSED] 0x56A6 (DG2)
[06:01:47] [PASSED] 0x56B0 (DG2)
[06:01:47] [PASSED] 0x56B1 (DG2)
[06:01:47] [PASSED] 0x56BA (DG2)
[06:01:47] [PASSED] 0x56BB (DG2)
[06:01:47] [PASSED] 0x56BC (DG2)
[06:01:47] [PASSED] 0x56BD (DG2)
[06:01:47] [PASSED] 0x5693 (DG2)
[06:01:47] [PASSED] 0x5694 (DG2)
[06:01:47] [PASSED] 0x5695 (DG2)
[06:01:47] [PASSED] 0x56A3 (DG2)
[06:01:47] [PASSED] 0x56A4 (DG2)
[06:01:47] [PASSED] 0x56B2 (DG2)
[06:01:47] [PASSED] 0x56B3 (DG2)
[06:01:47] [PASSED] 0x5696 (DG2)
[06:01:47] [PASSED] 0x5697 (DG2)
[06:01:47] [PASSED] 0xB69 (PVC)
[06:01:47] [PASSED] 0xB6E (PVC)
[06:01:47] [PASSED] 0xBD4 (PVC)
[06:01:47] [PASSED] 0xBD5 (PVC)
[06:01:47] [PASSED] 0xBD6 (PVC)
[06:01:47] [PASSED] 0xBD7 (PVC)
[06:01:47] [PASSED] 0xBD8 (PVC)
[06:01:47] [PASSED] 0xBD9 (PVC)
[06:01:47] [PASSED] 0xBDA (PVC)
[06:01:47] [PASSED] 0xBDB (PVC)
[06:01:47] [PASSED] 0xBE0 (PVC)
[06:01:47] [PASSED] 0xBE1 (PVC)
[06:01:47] [PASSED] 0xBE5 (PVC)
[06:01:47] [PASSED] 0x7D40 (METEORLAKE)
[06:01:47] [PASSED] 0x7D45 (METEORLAKE)
[06:01:47] [PASSED] 0x7D55 (METEORLAKE)
[06:01:47] [PASSED] 0x7D60 (METEORLAKE)
[06:01:47] [PASSED] 0x7DD5 (METEORLAKE)
[06:01:47] [PASSED] 0x6420 (LUNARLAKE)
[06:01:47] [PASSED] 0x64A0 (LUNARLAKE)
[06:01:47] [PASSED] 0x64B0 (LUNARLAKE)
[06:01:47] [PASSED] 0xE202 (BATTLEMAGE)
[06:01:47] [PASSED] 0xE209 (BATTLEMAGE)
[06:01:47] [PASSED] 0xE20B (BATTLEMAGE)
[06:01:47] [PASSED] 0xE20C (BATTLEMAGE)
[06:01:47] [PASSED] 0xE20D (BATTLEMAGE)
[06:01:47] [PASSED] 0xE210 (BATTLEMAGE)
[06:01:47] [PASSED] 0xE211 (BATTLEMAGE)
[06:01:47] [PASSED] 0xE212 (BATTLEMAGE)
[06:01:47] [PASSED] 0xE216 (BATTLEMAGE)
[06:01:47] [PASSED] 0xE220 (BATTLEMAGE)
[06:01:47] [PASSED] 0xE221 (BATTLEMAGE)
[06:01:47] [PASSED] 0xE222 (BATTLEMAGE)
[06:01:47] [PASSED] 0xE223 (BATTLEMAGE)
[06:01:47] [PASSED] 0xB080 (PANTHERLAKE)
[06:01:47] [PASSED] 0xB081 (PANTHERLAKE)
[06:01:47] [PASSED] 0xB082 (PANTHERLAKE)
[06:01:47] [PASSED] 0xB083 (PANTHERLAKE)
[06:01:47] [PASSED] 0xB084 (PANTHERLAKE)
[06:01:47] [PASSED] 0xB085 (PANTHERLAKE)
[06:01:47] [PASSED] 0xB086 (PANTHERLAKE)
[06:01:47] [PASSED] 0xB087 (PANTHERLAKE)
[06:01:47] [PASSED] 0xB08F (PANTHERLAKE)
[06:01:47] [PASSED] 0xB090 (PANTHERLAKE)
[06:01:47] [PASSED] 0xB0A0 (PANTHERLAKE)
[06:01:47] [PASSED] 0xB0B0 (PANTHERLAKE)
[06:01:47] [PASSED] 0xFD80 (PANTHERLAKE)
[06:01:47] [PASSED] 0xFD81 (PANTHERLAKE)
[06:01:47] ============= [PASSED] check_platform_gt_count =============
[06:01:47] ===================== [PASSED] xe_pci ======================
[06:01:47] =================== xe_rtp (2 subtests) ====================
[06:01:47] =============== xe_rtp_process_to_sr_tests ================
[06:01:47] [PASSED] coalesce-same-reg
[06:01:47] [PASSED] no-match-no-add
[06:01:47] [PASSED] match-or
[06:01:47] [PASSED] match-or-xfail
[06:01:47] [PASSED] no-match-no-add-multiple-rules
[06:01:47] [PASSED] two-regs-two-entries
[06:01:47] [PASSED] clr-one-set-other
[06:01:47] [PASSED] set-field
[06:01:47] [PASSED] conflict-duplicate
[06:01:47] [PASSED] conflict-not-disjoint
[06:01:47] [PASSED] conflict-reg-type
[06:01:47] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[06:01:47] ================== xe_rtp_process_tests ===================
[06:01:47] [PASSED] active1
[06:01:47] [PASSED] active2
[06:01:47] [PASSED] active-inactive
[06:01:47] [PASSED] inactive-active
[06:01:47] [PASSED] inactive-1st_or_active-inactive
[06:01:47] [PASSED] inactive-2nd_or_active-inactive
[06:01:47] [PASSED] inactive-last_or_active-inactive
[06:01:47] [PASSED] inactive-no_or_active-inactive
[06:01:47] ============== [PASSED] xe_rtp_process_tests ===============
[06:01:47] ===================== [PASSED] xe_rtp ======================
[06:01:47] ==================== xe_wa (1 subtest) =====================
[06:01:47] ======================== xe_wa_gt =========================
[06:01:47] [PASSED] TIGERLAKE B0
[06:01:47] [PASSED] DG1 A0
[06:01:47] [PASSED] DG1 B0
[06:01:47] [PASSED] ALDERLAKE_S A0
[06:01:47] [PASSED] ALDERLAKE_S B0
stty: 'standard input': Inappropriate ioctl for device
[06:01:47] [PASSED] ALDERLAKE_S C0
[06:01:47] [PASSED] ALDERLAKE_S D0
[06:01:47] [PASSED] ALDERLAKE_P A0
[06:01:47] [PASSED] ALDERLAKE_P B0
[06:01:47] [PASSED] ALDERLAKE_P C0
[06:01:47] [PASSED] ALDERLAKE_S RPLS D0
[06:01:47] [PASSED] ALDERLAKE_P RPLU E0
[06:01:47] [PASSED] DG2 G10 C0
[06:01:47] [PASSED] DG2 G11 B1
[06:01:47] [PASSED] DG2 G12 A1
[06:01:47] [PASSED] METEORLAKE 12.70(Xe_LPG) A0 13.00(Xe_LPM+) A0
[06:01:47] [PASSED] METEORLAKE 12.71(Xe_LPG) A0 13.00(Xe_LPM+) A0
[06:01:47] [PASSED] METEORLAKE 12.74(Xe_LPG+) A0 13.00(Xe_LPM+) A0
[06:01:47] [PASSED] LUNARLAKE 20.04(Xe2_LPG) A0 20.00(Xe2_LPM) A0
[06:01:47] [PASSED] LUNARLAKE 20.04(Xe2_LPG) B0 20.00(Xe2_LPM) A0
[06:01:47] [PASSED] BATTLEMAGE 20.01(Xe2_HPG) A0 13.01(Xe2_HPM) A1
[06:01:47] [PASSED] PANTHERLAKE 30.00(Xe3_LPG) A0 30.00(Xe3_LPM) A0
[06:01:47] ==================== [PASSED] xe_wa_gt =====================
[06:01:47] ====================== [PASSED] xe_wa ======================
[06:01:47] ============================================================
[06:01:47] Testing complete. Ran 306 tests: passed: 288, skipped: 18
[06:01:47] Elapsed time: 33.764s total, 4.271s configuring, 29.127s building, 0.328s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[06:01:47] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[06:01:49] 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
[06:02:12] Starting KUnit Kernel (1/1)...
[06:02:12] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[06:02:12] ============ drm_test_pick_cmdline (2 subtests) ============
[06:02:12] [PASSED] drm_test_pick_cmdline_res_1920_1080_60
[06:02:12] =============== drm_test_pick_cmdline_named ===============
[06:02:12] [PASSED] NTSC
[06:02:12] [PASSED] NTSC-J
[06:02:12] [PASSED] PAL
[06:02:12] [PASSED] PAL-M
[06:02:12] =========== [PASSED] drm_test_pick_cmdline_named ===========
[06:02:12] ============== [PASSED] drm_test_pick_cmdline ==============
[06:02:12] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[06:02:12] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[06:02:12] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[06:02:12] =========== drm_validate_clone_mode (2 subtests) ===========
[06:02:12] ============== drm_test_check_in_clone_mode ===============
[06:02:12] [PASSED] in_clone_mode
[06:02:12] [PASSED] not_in_clone_mode
[06:02:12] ========== [PASSED] drm_test_check_in_clone_mode ===========
[06:02:12] =============== drm_test_check_valid_clones ===============
[06:02:12] [PASSED] not_in_clone_mode
[06:02:12] [PASSED] valid_clone
[06:02:12] [PASSED] invalid_clone
[06:02:12] =========== [PASSED] drm_test_check_valid_clones ===========
[06:02:12] ============= [PASSED] drm_validate_clone_mode =============
[06:02:12] ============= drm_validate_modeset (1 subtest) =============
[06:02:12] [PASSED] drm_test_check_connector_changed_modeset
[06:02:12] ============== [PASSED] drm_validate_modeset ===============
[06:02:12] ====== drm_test_bridge_get_current_state (2 subtests) ======
[06:02:12] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[06:02:12] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[06:02:12] ======== [PASSED] drm_test_bridge_get_current_state ========
[06:02:12] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[06:02:12] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[06:02:12] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[06:02:12] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[06:02:12] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[06:02:12] ============== drm_bridge_alloc (2 subtests) ===============
[06:02:12] [PASSED] drm_test_drm_bridge_alloc_basic
[06:02:12] [PASSED] drm_test_drm_bridge_alloc_get_put
[06:02:12] ================ [PASSED] drm_bridge_alloc =================
[06:02:12] ================== drm_buddy (7 subtests) ==================
[06:02:12] [PASSED] drm_test_buddy_alloc_limit
[06:02:12] [PASSED] drm_test_buddy_alloc_optimistic
[06:02:12] [PASSED] drm_test_buddy_alloc_pessimistic
[06:02:12] [PASSED] drm_test_buddy_alloc_pathological
[06:02:12] [PASSED] drm_test_buddy_alloc_contiguous
[06:02:12] [PASSED] drm_test_buddy_alloc_clear
[06:02:12] [PASSED] drm_test_buddy_alloc_range_bias
[06:02:12] ==================== [PASSED] drm_buddy ====================
[06:02:12] ============= drm_cmdline_parser (40 subtests) =============
[06:02:12] [PASSED] drm_test_cmdline_force_d_only
[06:02:12] [PASSED] drm_test_cmdline_force_D_only_dvi
[06:02:12] [PASSED] drm_test_cmdline_force_D_only_hdmi
[06:02:12] [PASSED] drm_test_cmdline_force_D_only_not_digital
[06:02:12] [PASSED] drm_test_cmdline_force_e_only
[06:02:12] [PASSED] drm_test_cmdline_res
[06:02:12] [PASSED] drm_test_cmdline_res_vesa
[06:02:12] [PASSED] drm_test_cmdline_res_vesa_rblank
[06:02:12] [PASSED] drm_test_cmdline_res_rblank
[06:02:12] [PASSED] drm_test_cmdline_res_bpp
[06:02:12] [PASSED] drm_test_cmdline_res_refresh
[06:02:12] [PASSED] drm_test_cmdline_res_bpp_refresh
[06:02:12] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[06:02:12] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[06:02:12] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[06:02:12] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[06:02:12] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[06:02:12] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[06:02:12] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[06:02:12] [PASSED] drm_test_cmdline_res_margins_force_on
[06:02:12] [PASSED] drm_test_cmdline_res_vesa_margins
[06:02:12] [PASSED] drm_test_cmdline_name
[06:02:12] [PASSED] drm_test_cmdline_name_bpp
[06:02:12] [PASSED] drm_test_cmdline_name_option
[06:02:12] [PASSED] drm_test_cmdline_name_bpp_option
[06:02:12] [PASSED] drm_test_cmdline_rotate_0
[06:02:12] [PASSED] drm_test_cmdline_rotate_90
[06:02:12] [PASSED] drm_test_cmdline_rotate_180
[06:02:12] [PASSED] drm_test_cmdline_rotate_270
[06:02:12] [PASSED] drm_test_cmdline_hmirror
[06:02:12] [PASSED] drm_test_cmdline_vmirror
[06:02:12] [PASSED] drm_test_cmdline_margin_options
[06:02:12] [PASSED] drm_test_cmdline_multiple_options
[06:02:12] [PASSED] drm_test_cmdline_bpp_extra_and_option
[06:02:12] [PASSED] drm_test_cmdline_extra_and_option
[06:02:12] [PASSED] drm_test_cmdline_freestanding_options
[06:02:12] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[06:02:12] [PASSED] drm_test_cmdline_panel_orientation
[06:02:12] ================ drm_test_cmdline_invalid =================
[06:02:12] [PASSED] margin_only
[06:02:12] [PASSED] interlace_only
[06:02:12] [PASSED] res_missing_x
[06:02:12] [PASSED] res_missing_y
[06:02:12] [PASSED] res_bad_y
[06:02:12] [PASSED] res_missing_y_bpp
[06:02:12] [PASSED] res_bad_bpp
[06:02:12] [PASSED] res_bad_refresh
[06:02:12] [PASSED] res_bpp_refresh_force_on_off
[06:02:12] [PASSED] res_invalid_mode
[06:02:12] [PASSED] res_bpp_wrong_place_mode
[06:02:12] [PASSED] name_bpp_refresh
[06:02:12] [PASSED] name_refresh
[06:02:12] [PASSED] name_refresh_wrong_mode
[06:02:12] [PASSED] name_refresh_invalid_mode
[06:02:12] [PASSED] rotate_multiple
[06:02:12] [PASSED] rotate_invalid_val
[06:02:12] [PASSED] rotate_truncated
[06:02:12] [PASSED] invalid_option
[06:02:12] [PASSED] invalid_tv_option
[06:02:12] [PASSED] truncated_tv_option
[06:02:12] ============ [PASSED] drm_test_cmdline_invalid =============
[06:02:12] =============== drm_test_cmdline_tv_options ===============
[06:02:12] [PASSED] NTSC
[06:02:12] [PASSED] NTSC_443
[06:02:12] [PASSED] NTSC_J
[06:02:12] [PASSED] PAL
[06:02:12] [PASSED] PAL_M
[06:02:12] [PASSED] PAL_N
[06:02:12] [PASSED] SECAM
[06:02:12] [PASSED] MONO_525
[06:02:12] [PASSED] MONO_625
[06:02:12] =========== [PASSED] drm_test_cmdline_tv_options ===========
[06:02:12] =============== [PASSED] drm_cmdline_parser ================
[06:02:12] ========== drmm_connector_hdmi_init (20 subtests) ==========
[06:02:12] [PASSED] drm_test_connector_hdmi_init_valid
[06:02:12] [PASSED] drm_test_connector_hdmi_init_bpc_8
[06:02:12] [PASSED] drm_test_connector_hdmi_init_bpc_10
[06:02:12] [PASSED] drm_test_connector_hdmi_init_bpc_12
[06:02:12] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[06:02:12] [PASSED] drm_test_connector_hdmi_init_bpc_null
[06:02:12] [PASSED] drm_test_connector_hdmi_init_formats_empty
[06:02:12] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[06:02:12] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[06:02:12] [PASSED] supported_formats=0x9 yuv420_allowed=1
[06:02:12] [PASSED] supported_formats=0x9 yuv420_allowed=0
[06:02:12] [PASSED] supported_formats=0x3 yuv420_allowed=1
[06:02:12] [PASSED] supported_formats=0x3 yuv420_allowed=0
[06:02:12] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[06:02:12] [PASSED] drm_test_connector_hdmi_init_null_ddc
[06:02:12] [PASSED] drm_test_connector_hdmi_init_null_product
[06:02:12] [PASSED] drm_test_connector_hdmi_init_null_vendor
[06:02:12] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[06:02:12] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[06:02:12] [PASSED] drm_test_connector_hdmi_init_product_valid
[06:02:12] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[06:02:12] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[06:02:12] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[06:02:12] ========= drm_test_connector_hdmi_init_type_valid =========
[06:02:12] [PASSED] HDMI-A
[06:02:12] [PASSED] HDMI-B
[06:02:12] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[06:02:12] ======== drm_test_connector_hdmi_init_type_invalid ========
[06:02:12] [PASSED] Unknown
[06:02:12] [PASSED] VGA
[06:02:12] [PASSED] DVI-I
[06:02:12] [PASSED] DVI-D
[06:02:12] [PASSED] DVI-A
[06:02:12] [PASSED] Composite
[06:02:12] [PASSED] SVIDEO
[06:02:12] [PASSED] LVDS
[06:02:12] [PASSED] Component
[06:02:12] [PASSED] DIN
[06:02:12] [PASSED] DP
[06:02:12] [PASSED] TV
[06:02:12] [PASSED] eDP
[06:02:12] [PASSED] Virtual
[06:02:12] [PASSED] DSI
[06:02:12] [PASSED] DPI
[06:02:12] [PASSED] Writeback
[06:02:12] [PASSED] SPI
[06:02:12] [PASSED] USB
[06:02:12] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[06:02:12] ============ [PASSED] drmm_connector_hdmi_init =============
[06:02:12] ============= drmm_connector_init (3 subtests) =============
[06:02:12] [PASSED] drm_test_drmm_connector_init
[06:02:12] [PASSED] drm_test_drmm_connector_init_null_ddc
[06:02:12] ========= drm_test_drmm_connector_init_type_valid =========
[06:02:12] [PASSED] Unknown
[06:02:12] [PASSED] VGA
[06:02:12] [PASSED] DVI-I
[06:02:12] [PASSED] DVI-D
[06:02:12] [PASSED] DVI-A
[06:02:12] [PASSED] Composite
[06:02:12] [PASSED] SVIDEO
[06:02:12] [PASSED] LVDS
[06:02:12] [PASSED] Component
[06:02:12] [PASSED] DIN
[06:02:12] [PASSED] DP
[06:02:12] [PASSED] HDMI-A
[06:02:12] [PASSED] HDMI-B
[06:02:12] [PASSED] TV
[06:02:12] [PASSED] eDP
[06:02:12] [PASSED] Virtual
[06:02:12] [PASSED] DSI
[06:02:12] [PASSED] DPI
[06:02:12] [PASSED] Writeback
[06:02:12] [PASSED] SPI
[06:02:12] [PASSED] USB
[06:02:12] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[06:02:12] =============== [PASSED] drmm_connector_init ===============
[06:02:12] ========= drm_connector_dynamic_init (6 subtests) ==========
[06:02:12] [PASSED] drm_test_drm_connector_dynamic_init
[06:02:12] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[06:02:12] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[06:02:12] [PASSED] drm_test_drm_connector_dynamic_init_properties
[06:02:12] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[06:02:12] [PASSED] Unknown
[06:02:12] [PASSED] VGA
[06:02:12] [PASSED] DVI-I
[06:02:12] [PASSED] DVI-D
[06:02:12] [PASSED] DVI-A
[06:02:12] [PASSED] Composite
[06:02:12] [PASSED] SVIDEO
[06:02:12] [PASSED] LVDS
[06:02:12] [PASSED] Component
[06:02:12] [PASSED] DIN
[06:02:12] [PASSED] DP
[06:02:12] [PASSED] HDMI-A
[06:02:12] [PASSED] HDMI-B
[06:02:12] [PASSED] TV
[06:02:12] [PASSED] eDP
[06:02:12] [PASSED] Virtual
[06:02:12] [PASSED] DSI
[06:02:12] [PASSED] DPI
[06:02:12] [PASSED] Writeback
[06:02:12] [PASSED] SPI
[06:02:12] [PASSED] USB
[06:02:12] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[06:02:12] ======== drm_test_drm_connector_dynamic_init_name =========
[06:02:12] [PASSED] Unknown
[06:02:12] [PASSED] VGA
[06:02:12] [PASSED] DVI-I
[06:02:12] [PASSED] DVI-D
[06:02:12] [PASSED] DVI-A
[06:02:12] [PASSED] Composite
[06:02:12] [PASSED] SVIDEO
[06:02:12] [PASSED] LVDS
[06:02:12] [PASSED] Component
[06:02:12] [PASSED] DIN
[06:02:12] [PASSED] DP
[06:02:12] [PASSED] HDMI-A
[06:02:12] [PASSED] HDMI-B
[06:02:12] [PASSED] TV
[06:02:12] [PASSED] eDP
[06:02:12] [PASSED] Virtual
[06:02:12] [PASSED] DSI
[06:02:12] [PASSED] DPI
[06:02:12] [PASSED] Writeback
[06:02:12] [PASSED] SPI
[06:02:12] [PASSED] USB
[06:02:12] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[06:02:12] =========== [PASSED] drm_connector_dynamic_init ============
[06:02:12] ==== drm_connector_dynamic_register_early (4 subtests) =====
[06:02:12] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[06:02:12] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[06:02:12] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[06:02:12] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[06:02:12] ====== [PASSED] drm_connector_dynamic_register_early =======
[06:02:12] ======= drm_connector_dynamic_register (7 subtests) ========
[06:02:12] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[06:02:12] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[06:02:12] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[06:02:12] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[06:02:12] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[06:02:12] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[06:02:12] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[06:02:12] ========= [PASSED] drm_connector_dynamic_register ==========
[06:02:12] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[06:02:12] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[06:02:12] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[06:02:12] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[06:02:12] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[06:02:12] ========== drm_test_get_tv_mode_from_name_valid ===========
[06:02:12] [PASSED] NTSC
[06:02:12] [PASSED] NTSC-443
[06:02:12] [PASSED] NTSC-J
[06:02:12] [PASSED] PAL
[06:02:12] [PASSED] PAL-M
[06:02:12] [PASSED] PAL-N
[06:02:12] [PASSED] SECAM
[06:02:12] [PASSED] Mono
[06:02:12] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[06:02:12] [PASSED] drm_test_get_tv_mode_from_name_truncated
[06:02:12] ============ [PASSED] drm_get_tv_mode_from_name ============
[06:02:12] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[06:02:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[06:02:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[06:02:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[06:02:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[06:02:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[06:02:12] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[06:02:12] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[06:02:12] [PASSED] VIC 96
[06:02:12] [PASSED] VIC 97
[06:02:12] [PASSED] VIC 101
[06:02:12] [PASSED] VIC 102
[06:02:12] [PASSED] VIC 106
[06:02:12] [PASSED] VIC 107
[06:02:12] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[06:02:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[06:02:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[06:02:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[06:02:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[06:02:12] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[06:02:12] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[06:02:12] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[06:02:12] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[06:02:12] [PASSED] Automatic
[06:02:12] [PASSED] Full
[06:02:12] [PASSED] Limited 16:235
[06:02:12] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[06:02:12] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[06:02:12] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[06:02:12] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[06:02:12] === drm_test_drm_hdmi_connector_get_output_format_name ====
[06:02:12] [PASSED] RGB
[06:02:12] [PASSED] YUV 4:2:0
[06:02:12] [PASSED] YUV 4:2:2
[06:02:12] [PASSED] YUV 4:4:4
[06:02:12] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[06:02:12] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[06:02:12] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[06:02:12] ============= drm_damage_helper (21 subtests) ==============
[06:02:12] [PASSED] drm_test_damage_iter_no_damage
[06:02:12] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[06:02:12] [PASSED] drm_test_damage_iter_no_damage_src_moved
[06:02:12] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[06:02:12] [PASSED] drm_test_damage_iter_no_damage_not_visible
[06:02:12] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[06:02:12] [PASSED] drm_test_damage_iter_no_damage_no_fb
[06:02:12] [PASSED] drm_test_damage_iter_simple_damage
[06:02:12] [PASSED] drm_test_damage_iter_single_damage
[06:02:12] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[06:02:12] [PASSED] drm_test_damage_iter_single_damage_outside_src
[06:02:12] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[06:02:12] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[06:02:12] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[06:02:12] [PASSED] drm_test_damage_iter_single_damage_src_moved
[06:02:12] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[06:02:12] [PASSED] drm_test_damage_iter_damage
[06:02:12] [PASSED] drm_test_damage_iter_damage_one_intersect
[06:02:12] [PASSED] drm_test_damage_iter_damage_one_outside
[06:02:12] [PASSED] drm_test_damage_iter_damage_src_moved
[06:02:12] [PASSED] drm_test_damage_iter_damage_not_visible
[06:02:12] ================ [PASSED] drm_damage_helper ================
[06:02:12] ============== drm_dp_mst_helper (3 subtests) ==============
[06:02:12] ============== drm_test_dp_mst_calc_pbn_mode ==============
[06:02:12] [PASSED] Clock 154000 BPP 30 DSC disabled
[06:02:12] [PASSED] Clock 234000 BPP 30 DSC disabled
[06:02:12] [PASSED] Clock 297000 BPP 24 DSC disabled
[06:02:12] [PASSED] Clock 332880 BPP 24 DSC enabled
[06:02:12] [PASSED] Clock 324540 BPP 24 DSC enabled
[06:02:12] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[06:02:12] ============== drm_test_dp_mst_calc_pbn_div ===============
[06:02:12] [PASSED] Link rate 2000000 lane count 4
[06:02:12] [PASSED] Link rate 2000000 lane count 2
[06:02:12] [PASSED] Link rate 2000000 lane count 1
[06:02:12] [PASSED] Link rate 1350000 lane count 4
[06:02:12] [PASSED] Link rate 1350000 lane count 2
[06:02:12] [PASSED] Link rate 1350000 lane count 1
[06:02:12] [PASSED] Link rate 1000000 lane count 4
[06:02:12] [PASSED] Link rate 1000000 lane count 2
[06:02:12] [PASSED] Link rate 1000000 lane count 1
[06:02:12] [PASSED] Link rate 810000 lane count 4
[06:02:12] [PASSED] Link rate 810000 lane count 2
[06:02:12] [PASSED] Link rate 810000 lane count 1
[06:02:12] [PASSED] Link rate 540000 lane count 4
[06:02:12] [PASSED] Link rate 540000 lane count 2
[06:02:12] [PASSED] Link rate 540000 lane count 1
[06:02:12] [PASSED] Link rate 270000 lane count 4
[06:02:12] [PASSED] Link rate 270000 lane count 2
[06:02:12] [PASSED] Link rate 270000 lane count 1
[06:02:12] [PASSED] Link rate 162000 lane count 4
[06:02:12] [PASSED] Link rate 162000 lane count 2
[06:02:12] [PASSED] Link rate 162000 lane count 1
[06:02:12] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[06:02:12] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[06:02:12] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[06:02:12] [PASSED] DP_POWER_UP_PHY with port number
[06:02:12] [PASSED] DP_POWER_DOWN_PHY with port number
[06:02:12] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[06:02:12] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[06:02:12] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[06:02:12] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[06:02:12] [PASSED] DP_QUERY_PAYLOAD with port number
[06:02:12] [PASSED] DP_QUERY_PAYLOAD with VCPI
[06:02:12] [PASSED] DP_REMOTE_DPCD_READ with port number
[06:02:12] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[06:02:12] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[06:02:12] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[06:02:12] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[06:02:12] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[06:02:12] [PASSED] DP_REMOTE_I2C_READ with port number
[06:02:12] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[06:02:12] [PASSED] DP_REMOTE_I2C_READ with transactions array
[06:02:12] [PASSED] DP_REMOTE_I2C_WRITE with port number
[06:02:12] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[06:02:12] [PASSED] DP_REMOTE_I2C_WRITE with data array
[06:02:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[06:02:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[06:02:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[06:02:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[06:02:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[06:02:12] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[06:02:12] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[06:02:12] ================ [PASSED] drm_dp_mst_helper ================
[06:02:12] ================== drm_exec (7 subtests) ===================
[06:02:12] [PASSED] sanitycheck
[06:02:12] [PASSED] test_lock
[06:02:12] [PASSED] test_lock_unlock
[06:02:12] [PASSED] test_duplicates
[06:02:12] [PASSED] test_prepare
[06:02:12] [PASSED] test_prepare_array
[06:02:12] [PASSED] test_multiple_loops
[06:02:12] ==================== [PASSED] drm_exec =====================
[06:02:12] =========== drm_format_helper_test (17 subtests) ===========
[06:02:12] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[06:02:12] [PASSED] single_pixel_source_buffer
[06:02:12] [PASSED] single_pixel_clip_rectangle
[06:02:12] [PASSED] well_known_colors
[06:02:12] [PASSED] destination_pitch
[06:02:12] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[06:02:12] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[06:02:12] [PASSED] single_pixel_source_buffer
[06:02:12] [PASSED] single_pixel_clip_rectangle
[06:02:12] [PASSED] well_known_colors
[06:02:12] [PASSED] destination_pitch
[06:02:12] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[06:02:12] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[06:02:12] [PASSED] single_pixel_source_buffer
[06:02:12] [PASSED] single_pixel_clip_rectangle
[06:02:12] [PASSED] well_known_colors
[06:02:12] [PASSED] destination_pitch
[06:02:12] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[06:02:12] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[06:02:12] [PASSED] single_pixel_source_buffer
[06:02:12] [PASSED] single_pixel_clip_rectangle
[06:02:12] [PASSED] well_known_colors
[06:02:12] [PASSED] destination_pitch
[06:02:12] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[06:02:12] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[06:02:12] [PASSED] single_pixel_source_buffer
[06:02:12] [PASSED] single_pixel_clip_rectangle
[06:02:12] [PASSED] well_known_colors
[06:02:12] [PASSED] destination_pitch
[06:02:12] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[06:02:12] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[06:02:12] [PASSED] single_pixel_source_buffer
[06:02:12] [PASSED] single_pixel_clip_rectangle
[06:02:12] [PASSED] well_known_colors
[06:02:12] [PASSED] destination_pitch
[06:02:12] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[06:02:12] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[06:02:12] [PASSED] single_pixel_source_buffer
[06:02:12] [PASSED] single_pixel_clip_rectangle
[06:02:12] [PASSED] well_known_colors
[06:02:12] [PASSED] destination_pitch
[06:02:12] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[06:02:12] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[06:02:12] [PASSED] single_pixel_source_buffer
[06:02:12] [PASSED] single_pixel_clip_rectangle
[06:02:12] [PASSED] well_known_colors
[06:02:12] [PASSED] destination_pitch
[06:02:12] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[06:02:12] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[06:02:12] [PASSED] single_pixel_source_buffer
[06:02:12] [PASSED] single_pixel_clip_rectangle
[06:02:12] [PASSED] well_known_colors
[06:02:12] [PASSED] destination_pitch
[06:02:12] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[06:02:12] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[06:02:12] [PASSED] single_pixel_source_buffer
[06:02:12] [PASSED] single_pixel_clip_rectangle
[06:02:12] [PASSED] well_known_colors
[06:02:12] [PASSED] destination_pitch
[06:02:12] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[06:02:12] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[06:02:12] [PASSED] single_pixel_source_buffer
[06:02:12] [PASSED] single_pixel_clip_rectangle
[06:02:12] [PASSED] well_known_colors
[06:02:12] [PASSED] destination_pitch
[06:02:12] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[06:02:12] ============== drm_test_fb_xrgb8888_to_mono ===============
[06:02:12] [PASSED] single_pixel_source_buffer
[06:02:12] [PASSED] single_pixel_clip_rectangle
[06:02:12] [PASSED] well_known_colors
[06:02:12] [PASSED] destination_pitch
[06:02:12] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[06:02:12] ==================== drm_test_fb_swab =====================
[06:02:12] [PASSED] single_pixel_source_buffer
[06:02:12] [PASSED] single_pixel_clip_rectangle
[06:02:12] [PASSED] well_known_colors
[06:02:12] [PASSED] destination_pitch
[06:02:12] ================ [PASSED] drm_test_fb_swab =================
[06:02:12] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[06:02:12] [PASSED] single_pixel_source_buffer
[06:02:12] [PASSED] single_pixel_clip_rectangle
[06:02:12] [PASSED] well_known_colors
[06:02:12] [PASSED] destination_pitch
[06:02:12] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[06:02:12] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[06:02:12] [PASSED] single_pixel_source_buffer
[06:02:12] [PASSED] single_pixel_clip_rectangle
[06:02:12] [PASSED] well_known_colors
[06:02:12] [PASSED] destination_pitch
[06:02:12] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[06:02:12] ================= drm_test_fb_clip_offset =================
[06:02:12] [PASSED] pass through
[06:02:12] [PASSED] horizontal offset
[06:02:12] [PASSED] vertical offset
[06:02:12] [PASSED] horizontal and vertical offset
[06:02:12] [PASSED] horizontal offset (custom pitch)
[06:02:12] [PASSED] vertical offset (custom pitch)
[06:02:12] [PASSED] horizontal and vertical offset (custom pitch)
[06:02:12] ============= [PASSED] drm_test_fb_clip_offset =============
[06:02:12] =================== drm_test_fb_memcpy ====================
[06:02:12] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[06:02:12] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[06:02:12] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[06:02:12] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[06:02:12] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[06:02:12] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[06:02:12] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[06:02:12] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[06:02:12] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[06:02:12] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[06:02:12] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[06:02:12] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[06:02:12] =============== [PASSED] drm_test_fb_memcpy ================
[06:02:12] ============= [PASSED] drm_format_helper_test ==============
[06:02:12] ================= drm_format (18 subtests) =================
[06:02:12] [PASSED] drm_test_format_block_width_invalid
[06:02:12] [PASSED] drm_test_format_block_width_one_plane
[06:02:12] [PASSED] drm_test_format_block_width_two_plane
[06:02:12] [PASSED] drm_test_format_block_width_three_plane
[06:02:12] [PASSED] drm_test_format_block_width_tiled
[06:02:12] [PASSED] drm_test_format_block_height_invalid
[06:02:12] [PASSED] drm_test_format_block_height_one_plane
[06:02:12] [PASSED] drm_test_format_block_height_two_plane
[06:02:12] [PASSED] drm_test_format_block_height_three_plane
[06:02:12] [PASSED] drm_test_format_block_height_tiled
[06:02:12] [PASSED] drm_test_format_min_pitch_invalid
[06:02:12] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[06:02:12] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[06:02:12] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[06:02:12] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[06:02:12] [PASSED] drm_test_format_min_pitch_two_plane
[06:02:12] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[06:02:12] [PASSED] drm_test_format_min_pitch_tiled
[06:02:12] =================== [PASSED] drm_format ====================
[06:02:12] ============== drm_framebuffer (10 subtests) ===============
[06:02:12] ========== drm_test_framebuffer_check_src_coords ==========
[06:02:12] [PASSED] Success: source fits into fb
[06:02:12] [PASSED] Fail: overflowing fb with x-axis coordinate
[06:02:12] [PASSED] Fail: overflowing fb with y-axis coordinate
[06:02:12] [PASSED] Fail: overflowing fb with source width
[06:02:12] [PASSED] Fail: overflowing fb with source height
[06:02:12] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[06:02:12] [PASSED] drm_test_framebuffer_cleanup
[06:02:12] =============== drm_test_framebuffer_create ===============
[06:02:12] [PASSED] ABGR8888 normal sizes
[06:02:12] [PASSED] ABGR8888 max sizes
[06:02:12] [PASSED] ABGR8888 pitch greater than min required
[06:02:12] [PASSED] ABGR8888 pitch less than min required
[06:02:12] [PASSED] ABGR8888 Invalid width
[06:02:12] [PASSED] ABGR8888 Invalid buffer handle
[06:02:12] [PASSED] No pixel format
[06:02:12] [PASSED] ABGR8888 Width 0
[06:02:12] [PASSED] ABGR8888 Height 0
[06:02:12] [PASSED] ABGR8888 Out of bound height * pitch combination
[06:02:12] [PASSED] ABGR8888 Large buffer offset
[06:02:12] [PASSED] ABGR8888 Buffer offset for inexistent plane
[06:02:12] [PASSED] ABGR8888 Invalid flag
[06:02:12] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[06:02:12] [PASSED] ABGR8888 Valid buffer modifier
[06:02:12] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[06:02:12] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[06:02:12] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[06:02:12] [PASSED] NV12 Normal sizes
[06:02:12] [PASSED] NV12 Max sizes
[06:02:12] [PASSED] NV12 Invalid pitch
[06:02:12] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[06:02:12] [PASSED] NV12 different modifier per-plane
[06:02:12] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[06:02:12] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[06:02:12] [PASSED] NV12 Modifier for inexistent plane
[06:02:12] [PASSED] NV12 Handle for inexistent plane
[06:02:12] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[06:02:12] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[06:02:12] [PASSED] YVU420 Normal sizes
[06:02:12] [PASSED] YVU420 Max sizes
[06:02:12] [PASSED] YVU420 Invalid pitch
[06:02:12] [PASSED] YVU420 Different pitches
[06:02:12] [PASSED] YVU420 Different buffer offsets/pitches
[06:02:12] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[06:02:12] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[06:02:12] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[06:02:12] [PASSED] YVU420 Valid modifier
[06:02:12] [PASSED] YVU420 Different modifiers per plane
[06:02:12] [PASSED] YVU420 Modifier for inexistent plane
[06:02:12] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[06:02:12] [PASSED] X0L2 Normal sizes
[06:02:12] [PASSED] X0L2 Max sizes
[06:02:12] [PASSED] X0L2 Invalid pitch
[06:02:12] [PASSED] X0L2 Pitch greater than minimum required
[06:02:12] [PASSED] X0L2 Handle for inexistent plane
[06:02:12] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[06:02:12] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[06:02:12] [PASSED] X0L2 Valid modifier
[06:02:12] [PASSED] X0L2 Modifier for inexistent plane
[06:02:12] =========== [PASSED] drm_test_framebuffer_create ===========
[06:02:12] [PASSED] drm_test_framebuffer_free
[06:02:12] [PASSED] drm_test_framebuffer_init
[06:02:12] [PASSED] drm_test_framebuffer_init_bad_format
[06:02:12] [PASSED] drm_test_framebuffer_init_dev_mismatch
[06:02:12] [PASSED] drm_test_framebuffer_lookup
[06:02:12] [PASSED] drm_test_framebuffer_lookup_inexistent
[06:02:12] [PASSED] drm_test_framebuffer_modifiers_not_supported
[06:02:12] ================= [PASSED] drm_framebuffer =================
[06:02:12] ================ drm_gem_shmem (8 subtests) ================
[06:02:12] [PASSED] drm_gem_shmem_test_obj_create
[06:02:12] [PASSED] drm_gem_shmem_test_obj_create_private
[06:02:12] [PASSED] drm_gem_shmem_test_pin_pages
[06:02:12] [PASSED] drm_gem_shmem_test_vmap
[06:02:12] [PASSED] drm_gem_shmem_test_get_pages_sgt
[06:02:12] [PASSED] drm_gem_shmem_test_get_sg_table
[06:02:12] [PASSED] drm_gem_shmem_test_madvise
[06:02:12] [PASSED] drm_gem_shmem_test_purge
[06:02:12] ================== [PASSED] drm_gem_shmem ==================
[06:02:12] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[06:02:12] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[06:02:12] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[06:02:12] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[06:02:12] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[06:02:12] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[06:02:12] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[06:02:12] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[06:02:12] [PASSED] Automatic
[06:02:12] [PASSED] Full
[06:02:12] [PASSED] Limited 16:235
[06:02:12] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[06:02:12] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[06:02:12] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[06:02:12] [PASSED] drm_test_check_disable_connector
[06:02:12] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[06:02:12] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[06:02:12] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[06:02:12] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[06:02:12] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[06:02:12] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[06:02:12] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[06:02:12] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[06:02:12] [PASSED] drm_test_check_output_bpc_dvi
[06:02:12] [PASSED] drm_test_check_output_bpc_format_vic_1
[06:02:12] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[06:02:12] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[06:02:12] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[06:02:12] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[06:02:12] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[06:02:12] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[06:02:12] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[06:02:12] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[06:02:12] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[06:02:12] [PASSED] drm_test_check_broadcast_rgb_value
[06:02:12] [PASSED] drm_test_check_bpc_8_value
[06:02:12] [PASSED] drm_test_check_bpc_10_value
[06:02:12] [PASSED] drm_test_check_bpc_12_value
[06:02:12] [PASSED] drm_test_check_format_value
[06:02:12] [PASSED] drm_test_check_tmds_char_value
[06:02:12] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[06:02:12] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[06:02:12] [PASSED] drm_test_check_mode_valid
[06:02:12] [PASSED] drm_test_check_mode_valid_reject
[06:02:12] [PASSED] drm_test_check_mode_valid_reject_rate
[06:02:12] [PASSED] drm_test_check_mode_valid_reject_max_clock
[06:02:12] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[06:02:12] ================= drm_managed (2 subtests) =================
[06:02:12] [PASSED] drm_test_managed_release_action
[06:02:12] [PASSED] drm_test_managed_run_action
[06:02:12] =================== [PASSED] drm_managed ===================
[06:02:12] =================== drm_mm (6 subtests) ====================
[06:02:12] [PASSED] drm_test_mm_init
[06:02:12] [PASSED] drm_test_mm_debug
[06:02:12] [PASSED] drm_test_mm_align32
[06:02:12] [PASSED] drm_test_mm_align64
[06:02:12] [PASSED] drm_test_mm_lowest
[06:02:12] [PASSED] drm_test_mm_highest
[06:02:12] ===================== [PASSED] drm_mm ======================
[06:02:12] ============= drm_modes_analog_tv (5 subtests) =============
[06:02:12] [PASSED] drm_test_modes_analog_tv_mono_576i
[06:02:12] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[06:02:12] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[06:02:12] [PASSED] drm_test_modes_analog_tv_pal_576i
[06:02:12] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[06:02:12] =============== [PASSED] drm_modes_analog_tv ===============
[06:02:12] ============== drm_plane_helper (2 subtests) ===============
[06:02:12] =============== drm_test_check_plane_state ================
[06:02:12] [PASSED] clipping_simple
[06:02:12] [PASSED] clipping_rotate_reflect
[06:02:12] [PASSED] positioning_simple
[06:02:12] [PASSED] upscaling
[06:02:12] [PASSED] downscaling
[06:02:12] [PASSED] rounding1
[06:02:12] [PASSED] rounding2
[06:02:12] [PASSED] rounding3
[06:02:12] [PASSED] rounding4
[06:02:12] =========== [PASSED] drm_test_check_plane_state ============
[06:02:12] =========== drm_test_check_invalid_plane_state ============
[06:02:12] [PASSED] positioning_invalid
[06:02:12] [PASSED] upscaling_invalid
[06:02:12] [PASSED] downscaling_invalid
[06:02:12] ======= [PASSED] drm_test_check_invalid_plane_state ========
[06:02:12] ================ [PASSED] drm_plane_helper =================
[06:02:12] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[06:02:12] ====== drm_test_connector_helper_tv_get_modes_check =======
[06:02:12] [PASSED] None
[06:02:12] [PASSED] PAL
[06:02:12] [PASSED] NTSC
[06:02:12] [PASSED] Both, NTSC Default
[06:02:12] [PASSED] Both, PAL Default
[06:02:12] [PASSED] Both, NTSC Default, with PAL on command-line
[06:02:12] [PASSED] Both, PAL Default, with NTSC on command-line
[06:02:12] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[06:02:12] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[06:02:12] ================== drm_rect (9 subtests) ===================
[06:02:13] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[06:02:13] [PASSED] drm_test_rect_clip_scaled_not_clipped
[06:02:13] [PASSED] drm_test_rect_clip_scaled_clipped
[06:02:13] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[06:02:13] ================= drm_test_rect_intersect =================
[06:02:13] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[06:02:13] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[06:02:13] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[06:02:13] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[06:02:13] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[06:02:13] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[06:02:13] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[06:02:13] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[06:02:13] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[06:02:13] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[06:02:13] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[06:02:13] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[06:02:13] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[06:02:13] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[06:02:13] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[06:02:13] ============= [PASSED] drm_test_rect_intersect =============
[06:02:13] ================ drm_test_rect_calc_hscale ================
[06:02:13] [PASSED] normal use
[06:02:13] [PASSED] out of max range
[06:02:13] [PASSED] out of min range
[06:02:13] [PASSED] zero dst
[06:02:13] [PASSED] negative src
[06:02:13] [PASSED] negative dst
[06:02:13] ============ [PASSED] drm_test_rect_calc_hscale ============
[06:02:13] ================ drm_test_rect_calc_vscale ================
[06:02:13] [PASSED] normal use
[06:02:13] [PASSED] out of max range
[06:02:13] [PASSED] out of min range
[06:02:13] [PASSED] zero dst
[06:02:13] [PASSED] negative src
stty: 'standard input': Inappropriate ioctl for device
[06:02:13] [PASSED] negative dst
[06:02:13] ============ [PASSED] drm_test_rect_calc_vscale ============
[06:02:13] ================== drm_test_rect_rotate ===================
[06:02:13] [PASSED] reflect-x
[06:02:13] [PASSED] reflect-y
[06:02:13] [PASSED] rotate-0
[06:02:13] [PASSED] rotate-90
[06:02:13] [PASSED] rotate-180
[06:02:13] [PASSED] rotate-270
[06:02:13] ============== [PASSED] drm_test_rect_rotate ===============
[06:02:13] ================ drm_test_rect_rotate_inv =================
[06:02:13] [PASSED] reflect-x
[06:02:13] [PASSED] reflect-y
[06:02:13] [PASSED] rotate-0
[06:02:13] [PASSED] rotate-90
[06:02:13] [PASSED] rotate-180
[06:02:13] [PASSED] rotate-270
[06:02:13] ============ [PASSED] drm_test_rect_rotate_inv =============
[06:02:13] ==================== [PASSED] drm_rect =====================
[06:02:13] ============ drm_sysfb_modeset_test (1 subtest) ============
[06:02:13] ============ drm_test_sysfb_build_fourcc_list =============
[06:02:13] [PASSED] no native formats
[06:02:13] [PASSED] XRGB8888 as native format
[06:02:13] [PASSED] remove duplicates
[06:02:13] [PASSED] convert alpha formats
[06:02:13] [PASSED] random formats
[06:02:13] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[06:02:13] ============= [PASSED] drm_sysfb_modeset_test ==============
[06:02:13] ============================================================
[06:02:13] Testing complete. Ran 621 tests: passed: 621
[06:02:13] Elapsed time: 25.630s total, 1.791s configuring, 23.673s building, 0.147s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[06:02:13] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[06:02:14] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[06:02:23] Starting KUnit Kernel (1/1)...
[06:02:23] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[06:02:24] ================= ttm_device (5 subtests) ==================
[06:02:24] [PASSED] ttm_device_init_basic
[06:02:24] [PASSED] ttm_device_init_multiple
[06:02:24] [PASSED] ttm_device_fini_basic
[06:02:24] [PASSED] ttm_device_init_no_vma_man
[06:02:24] ================== ttm_device_init_pools ==================
[06:02:24] [PASSED] No DMA allocations, no DMA32 required
[06:02:24] [PASSED] DMA allocations, DMA32 required
[06:02:24] [PASSED] No DMA allocations, DMA32 required
[06:02:24] [PASSED] DMA allocations, no DMA32 required
[06:02:24] ============== [PASSED] ttm_device_init_pools ==============
[06:02:24] =================== [PASSED] ttm_device ====================
[06:02:24] ================== ttm_pool (8 subtests) ===================
[06:02:24] ================== ttm_pool_alloc_basic ===================
[06:02:24] [PASSED] One page
[06:02:24] [PASSED] More than one page
[06:02:24] [PASSED] Above the allocation limit
[06:02:24] [PASSED] One page, with coherent DMA mappings enabled
[06:02:24] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[06:02:24] ============== [PASSED] ttm_pool_alloc_basic ===============
[06:02:24] ============== ttm_pool_alloc_basic_dma_addr ==============
[06:02:24] [PASSED] One page
[06:02:24] [PASSED] More than one page
[06:02:24] [PASSED] Above the allocation limit
[06:02:24] [PASSED] One page, with coherent DMA mappings enabled
[06:02:24] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[06:02:24] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[06:02:24] [PASSED] ttm_pool_alloc_order_caching_match
[06:02:24] [PASSED] ttm_pool_alloc_caching_mismatch
[06:02:24] [PASSED] ttm_pool_alloc_order_mismatch
[06:02:24] [PASSED] ttm_pool_free_dma_alloc
[06:02:24] [PASSED] ttm_pool_free_no_dma_alloc
[06:02:24] [PASSED] ttm_pool_fini_basic
[06:02:24] ==================== [PASSED] ttm_pool =====================
[06:02:24] ================ ttm_resource (8 subtests) =================
[06:02:24] ================= ttm_resource_init_basic =================
[06:02:24] [PASSED] Init resource in TTM_PL_SYSTEM
[06:02:24] [PASSED] Init resource in TTM_PL_VRAM
[06:02:24] [PASSED] Init resource in a private placement
[06:02:24] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[06:02:24] ============= [PASSED] ttm_resource_init_basic =============
[06:02:24] [PASSED] ttm_resource_init_pinned
[06:02:24] [PASSED] ttm_resource_fini_basic
[06:02:24] [PASSED] ttm_resource_manager_init_basic
[06:02:24] [PASSED] ttm_resource_manager_usage_basic
[06:02:24] [PASSED] ttm_resource_manager_set_used_basic
[06:02:24] [PASSED] ttm_sys_man_alloc_basic
[06:02:24] [PASSED] ttm_sys_man_free_basic
[06:02:24] ================== [PASSED] ttm_resource ===================
[06:02:24] =================== ttm_tt (15 subtests) ===================
[06:02:24] ==================== ttm_tt_init_basic ====================
[06:02:24] [PASSED] Page-aligned size
[06:02:24] [PASSED] Extra pages requested
[06:02:24] ================ [PASSED] ttm_tt_init_basic ================
[06:02:24] [PASSED] ttm_tt_init_misaligned
[06:02:24] [PASSED] ttm_tt_fini_basic
[06:02:24] [PASSED] ttm_tt_fini_sg
[06:02:24] [PASSED] ttm_tt_fini_shmem
[06:02:24] [PASSED] ttm_tt_create_basic
[06:02:24] [PASSED] ttm_tt_create_invalid_bo_type
[06:02:24] [PASSED] ttm_tt_create_ttm_exists
[06:02:24] [PASSED] ttm_tt_create_failed
[06:02:24] [PASSED] ttm_tt_destroy_basic
[06:02:24] [PASSED] ttm_tt_populate_null_ttm
[06:02:24] [PASSED] ttm_tt_populate_populated_ttm
[06:02:24] [PASSED] ttm_tt_unpopulate_basic
[06:02:24] [PASSED] ttm_tt_unpopulate_empty_ttm
[06:02:24] [PASSED] ttm_tt_swapin_basic
[06:02:24] ===================== [PASSED] ttm_tt ======================
[06:02:24] =================== ttm_bo (14 subtests) ===================
[06:02:24] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[06:02:24] [PASSED] Cannot be interrupted and sleeps
[06:02:24] [PASSED] Cannot be interrupted, locks straight away
[06:02:24] [PASSED] Can be interrupted, sleeps
[06:02:24] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[06:02:24] [PASSED] ttm_bo_reserve_locked_no_sleep
[06:02:24] [PASSED] ttm_bo_reserve_no_wait_ticket
[06:02:24] [PASSED] ttm_bo_reserve_double_resv
[06:02:24] [PASSED] ttm_bo_reserve_interrupted
[06:02:24] [PASSED] ttm_bo_reserve_deadlock
[06:02:24] [PASSED] ttm_bo_unreserve_basic
[06:02:24] [PASSED] ttm_bo_unreserve_pinned
[06:02:24] [PASSED] ttm_bo_unreserve_bulk
[06:02:24] [PASSED] ttm_bo_fini_basic
[06:02:24] [PASSED] ttm_bo_fini_shared_resv
[06:02:24] [PASSED] ttm_bo_pin_basic
[06:02:24] [PASSED] ttm_bo_pin_unpin_resource
[06:02:24] [PASSED] ttm_bo_multiple_pin_one_unpin
[06:02:24] ===================== [PASSED] ttm_bo ======================
[06:02:24] ============== ttm_bo_validate (21 subtests) ===============
[06:02:24] ============== ttm_bo_init_reserved_sys_man ===============
[06:02:24] [PASSED] Buffer object for userspace
[06:02:24] [PASSED] Kernel buffer object
[06:02:24] [PASSED] Shared buffer object
[06:02:24] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[06:02:24] ============== ttm_bo_init_reserved_mock_man ==============
[06:02:24] [PASSED] Buffer object for userspace
[06:02:24] [PASSED] Kernel buffer object
[06:02:24] [PASSED] Shared buffer object
[06:02:24] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[06:02:24] [PASSED] ttm_bo_init_reserved_resv
[06:02:24] ================== ttm_bo_validate_basic ==================
[06:02:24] [PASSED] Buffer object for userspace
[06:02:24] [PASSED] Kernel buffer object
[06:02:24] [PASSED] Shared buffer object
[06:02:24] ============== [PASSED] ttm_bo_validate_basic ==============
[06:02:24] [PASSED] ttm_bo_validate_invalid_placement
[06:02:24] ============= ttm_bo_validate_same_placement ==============
[06:02:24] [PASSED] System manager
[06:02:24] [PASSED] VRAM manager
[06:02:24] ========= [PASSED] ttm_bo_validate_same_placement ==========
[06:02:24] [PASSED] ttm_bo_validate_failed_alloc
[06:02:24] [PASSED] ttm_bo_validate_pinned
[06:02:24] [PASSED] ttm_bo_validate_busy_placement
[06:02:24] ================ ttm_bo_validate_multihop =================
[06:02:24] [PASSED] Buffer object for userspace
[06:02:24] [PASSED] Kernel buffer object
[06:02:24] [PASSED] Shared buffer object
[06:02:24] ============ [PASSED] ttm_bo_validate_multihop =============
[06:02:24] ========== ttm_bo_validate_no_placement_signaled ==========
[06:02:24] [PASSED] Buffer object in system domain, no page vector
[06:02:24] [PASSED] Buffer object in system domain with an existing page vector
[06:02:24] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[06:02:24] ======== ttm_bo_validate_no_placement_not_signaled ========
[06:02:24] [PASSED] Buffer object for userspace
[06:02:24] [PASSED] Kernel buffer object
[06:02:24] [PASSED] Shared buffer object
[06:02:24] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[06:02:24] [PASSED] ttm_bo_validate_move_fence_signaled
[06:02:24] ========= ttm_bo_validate_move_fence_not_signaled =========
[06:02:24] [PASSED] Waits for GPU
[06:02:24] [PASSED] Tries to lock straight away
[06:02:24] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[06:02:24] [PASSED] ttm_bo_validate_happy_evict
[06:02:24] [PASSED] ttm_bo_validate_all_pinned_evict
[06:02:24] [PASSED] ttm_bo_validate_allowed_only_evict
[06:02:24] [PASSED] ttm_bo_validate_deleted_evict
[06:02:24] [PASSED] ttm_bo_validate_busy_domain_evict
[06:02:24] [PASSED] ttm_bo_validate_evict_gutting
[06:02:24] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[06:02:24] ================= [PASSED] ttm_bo_validate =================
[06:02:24] ============================================================
[06:02:24] Testing complete. Ran 101 tests: passed: 101
[06:02:24] Elapsed time: 11.020s total, 1.677s configuring, 9.126s building, 0.187s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 15+ messages in thread* ✓ Xe.CI.BAT: success for Fix DRM scheduler layering violations in Xe
2025-10-02 5:16 [RFC PATCH 0/4] Fix DRM scheduler layering violations in Xe Matthew Brost
` (5 preceding siblings ...)
2025-10-02 6:02 ` ✓ CI.KUnit: success " Patchwork
@ 2025-10-02 6:38 ` Patchwork
2025-10-02 7:58 ` ✗ Xe.CI.Full: failure " Patchwork
7 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2025-10-02 6:38 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 866 bytes --]
== Series Details ==
Series: Fix DRM scheduler layering violations in Xe
URL : https://patchwork.freedesktop.org/series/155314/
State : success
== Summary ==
CI Bug Log - changes from xe-3853-5f87abb254011980c8332008cfff72d2cfab4952_BAT -> xe-pw-155314v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* Linux: xe-3853-5f87abb254011980c8332008cfff72d2cfab4952 -> xe-pw-155314v1
IGT_8568: 8568
xe-3853-5f87abb254011980c8332008cfff72d2cfab4952: 5f87abb254011980c8332008cfff72d2cfab4952
xe-pw-155314v1: 155314v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/index.html
[-- Attachment #2: Type: text/html, Size: 1414 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread* ✗ Xe.CI.Full: failure for Fix DRM scheduler layering violations in Xe
2025-10-02 5:16 [RFC PATCH 0/4] Fix DRM scheduler layering violations in Xe Matthew Brost
` (6 preceding siblings ...)
2025-10-02 6:38 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-10-02 7:58 ` Patchwork
7 siblings, 0 replies; 15+ messages in thread
From: Patchwork @ 2025-10-02 7:58 UTC (permalink / raw)
To: Matthew Brost; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 51078 bytes --]
== Series Details ==
Series: Fix DRM scheduler layering violations in Xe
URL : https://patchwork.freedesktop.org/series/155314/
State : failure
== Summary ==
CI Bug Log - changes from xe-3853-5f87abb254011980c8332008cfff72d2cfab4952_FULL -> xe-pw-155314v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-155314v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-155314v1_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-155314v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_drm_fdinfo@utilization-single-full-load-isolation:
- shard-bmg: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-5/igt@xe_drm_fdinfo@utilization-single-full-load-isolation.html
* igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-invalidate:
- shard-adlp: [PASS][2] -> [FAIL][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-adlp-2/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-invalidate.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-invalidate.html
Known issues
------------
Here are the changes found in xe-pw-155314v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2327])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-5/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#316]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-432/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][7] ([Intel XE#316]) +2 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-adlp: NOTRUN -> [DMESG-FAIL][8] ([Intel XE#4543]) +1 other test dmesg-fail
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#619])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#1124])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
- shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-436/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-adlp: NOTRUN -> [SKIP][12] ([Intel XE#367])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#367])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-5/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][14] ([Intel XE#787]) +11 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#787]) +146 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-466/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-8/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#455] / [Intel XE#787]) +24 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2887]) +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][19] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [PASS][20] -> [INCOMPLETE][21] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: [PASS][22] -> [INCOMPLETE][23] ([Intel XE#1727] / [Intel XE#3113] / [i915#14968])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-adlp: NOTRUN -> [SKIP][24] ([Intel XE#373]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#373]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-435/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2252])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-1/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html
* igt@kms_content_protection@atomic-dpms@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][27] ([Intel XE#1178])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-434/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#307])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-435/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-adlp: NOTRUN -> [SKIP][29] ([Intel XE#307])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2320]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#308]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2321])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-adlp: NOTRUN -> [SKIP][33] ([Intel XE#308])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic:
- shard-adlp: NOTRUN -> [SKIP][34] ([Intel XE#309]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-bmg: [PASS][35] -> [SKIP][36] ([Intel XE#2291]) +5 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [PASS][37] -> [FAIL][38] ([Intel XE#1475])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#323])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2286])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#4494])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-432/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#1137])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-435/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible:
- shard-bmg: [PASS][43] -> [SKIP][44] ([Intel XE#2316]) +6 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-bmg-8/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-adlp: NOTRUN -> [SKIP][45] ([Intel XE#310]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@dpms-off-confusion-interruptible@c-hdmi-a1:
- shard-adlp: [PASS][46] -> [DMESG-WARN][47] ([Intel XE#4543]) +4 other tests dmesg-warn
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-adlp-1/igt@kms_flip@dpms-off-confusion-interruptible@c-hdmi-a1.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-2/igt@kms_flip@dpms-off-confusion-interruptible@c-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1:
- shard-adlp: [PASS][48] -> [DMESG-WARN][49] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-2/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#455]) +7 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-adlp: NOTRUN -> [SKIP][51] ([Intel XE#656]) +10 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#651]) +8 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-suspend.html
* igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#5390]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff:
- shard-adlp: NOTRUN -> [SKIP][54] ([Intel XE#651]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2311])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render:
- shard-adlp: NOTRUN -> [SKIP][56] ([Intel XE#653]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2313]) +6 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#653]) +11 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2350])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_hdr@static-toggle:
- shard-bmg: [PASS][60] -> [SKIP][61] ([Intel XE#1503]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-bmg-2/igt@kms_hdr@static-toggle.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-6/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [PASS][62] -> [SKIP][63] ([Intel XE#3012])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-bmg-8/igt@kms_joiner@basic-force-big-joiner.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-adlp: [PASS][64] -> [DMESG-WARN][65] ([Intel XE#2953] / [Intel XE#4173]) +3 other tests dmesg-warn
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-adlp-4/igt@kms_pipe_crc_basic@suspend-read-crc.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-2/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#4359])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-435/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-adlp: NOTRUN -> [SKIP][67] ([Intel XE#1122])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#1129])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-432/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-432/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-adlp: NOTRUN -> [SKIP][70] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-adlp: NOTRUN -> [SKIP][71] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-cursor-plane-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-435/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [PASS][73] -> [SKIP][74] ([Intel XE#1435])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-bmg-2/igt@kms_setmode@clone-exclusive-crtc.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
- shard-adlp: NOTRUN -> [SKIP][75] ([Intel XE#455]) +7 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@kms_setmode@clone-exclusive-crtc.html
* igt@xe_eudebug_online@pagefault-read:
- shard-adlp: NOTRUN -> [SKIP][76] ([Intel XE#4837] / [Intel XE#5565]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@xe_eudebug_online@pagefault-read.html
* igt@xe_eudebug_online@reset-with-attention:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#4837]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-432/igt@xe_eudebug_online@reset-with-attention.html
* igt@xe_evict@evict-beng-small-multi-vm:
- shard-adlp: NOTRUN -> [SKIP][78] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@xe_evict@evict-beng-small-multi-vm.html
* igt@xe_exec_basic@many-userptr-invalidate-race:
- shard-adlp: [PASS][79] -> [DMESG-FAIL][80] ([Intel XE#3876])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-adlp-2/igt@xe_exec_basic@many-userptr-invalidate-race.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@xe_exec_basic@many-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind:
- shard-adlp: NOTRUN -> [SKIP][81] ([Intel XE#1392] / [Intel XE#5575]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2322])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind:
- shard-dg2-set2: [PASS][83] -> [SKIP][84] ([Intel XE#1392]) +6 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-dg2-463/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-rebind.html
* igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#1392])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-prefetch:
- shard-adlp: NOTRUN -> [SKIP][86] ([Intel XE#288] / [Intel XE#5561]) +5 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-prefetch.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#288]) +5 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-adlp: [PASS][88] -> [DMESG-WARN][89] ([Intel XE#3876])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-adlp-2/igt@xe_exec_reset@parallel-gt-reset.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@xe_exec_reset@parallel-gt-reset.html
- shard-dg2-set2: [PASS][90] -> [DMESG-WARN][91] ([Intel XE#3876])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip-nodebug:
- shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#4837])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-5/igt@xe_exec_sip_eudebug@breakpoint-writesip-nodebug.html
* igt@xe_exec_system_allocator@many-large-execqueues-mmap-huge:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#4943]) +3 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-1/igt@xe_exec_system_allocator@many-large-execqueues-mmap-huge.html
* igt@xe_exec_system_allocator@once-malloc-bo-unmap:
- shard-adlp: NOTRUN -> [SKIP][94] ([Intel XE#4915]) +54 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@xe_exec_system_allocator@once-malloc-bo-unmap.html
* igt@xe_exec_system_allocator@process-many-execqueues-free-race:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#4915]) +75 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-436/igt@xe_exec_system_allocator@process-many-execqueues-free-race.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-adlp: NOTRUN -> [SKIP][96] ([Intel XE#3573]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_oa@privileged-forked-access-vaddr:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#3573])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-432/igt@xe_oa@privileged-forked-access-vaddr.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#977])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-432/igt@xe_pat@pat-index-xe2.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][99] ([Intel XE#1173])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-463/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3hot-i2c:
- shard-adlp: NOTRUN -> [SKIP][100] ([Intel XE#5742])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@xe_pm@d3hot-i2c.html
* igt@xe_pm@s2idle-vm-bind-userptr:
- shard-adlp: [PASS][101] -> [DMESG-WARN][102] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4504]) +1 other test dmesg-warn
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-adlp-3/igt@xe_pm@s2idle-vm-bind-userptr.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-8/igt@xe_pm@s2idle-vm-bind-userptr.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-adlp: NOTRUN -> [SKIP][103] ([Intel XE#2284] / [Intel XE#366])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_pxp@regular-src-to-pxp-dest-rendercopy:
- shard-adlp: NOTRUN -> [SKIP][104] ([Intel XE#4733] / [Intel XE#5594])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html
* igt@xe_query@multigpu-query-gt-list:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#944])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-1/igt@xe_query@multigpu-query-gt-list.html
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#944]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-436/igt@xe_query@multigpu-query-gt-list.html
* igt@xe_query@multigpu-query-oa-units:
- shard-adlp: NOTRUN -> [SKIP][107] ([Intel XE#944])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-4/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#4351])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-435/igt@xe_sriov_scheduling@equal-throughput.html
#### Possible fixes ####
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][109] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][110]
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][111] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) -> [PASS][112]
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size:
- shard-adlp: [DMESG-WARN][113] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][114] +5 other tests pass
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-adlp-6/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-6/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-bmg: [SKIP][115] ([Intel XE#2291]) -> [PASS][116] +1 other test pass
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][117] ([Intel XE#4633]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [SKIP][119] ([Intel XE#4294]) -> [PASS][120]
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-8/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [SKIP][121] ([Intel XE#2373]) -> [PASS][122]
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-bmg-6/igt@kms_feature_discovery@display-2x.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-8/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-bmg: [SKIP][123] ([Intel XE#2316]) -> [PASS][124] +6 other tests pass
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-8/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@plain-flip-interruptible@d-hdmi-a1:
- shard-adlp: [DMESG-WARN][125] ([Intel XE#4543]) -> [PASS][126] +5 other tests pass
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-adlp-3/igt@kms_flip@plain-flip-interruptible@d-hdmi-a1.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-8/igt@kms_flip@plain-flip-interruptible@d-hdmi-a1.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y:
- shard-adlp: [DMESG-FAIL][127] ([Intel XE#4543]) -> [PASS][128]
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-b-hdmi-a-1-x-to-y.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y:
- shard-adlp: [FAIL][129] ([Intel XE#1874]) -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [SKIP][131] ([Intel XE#1435]) -> [PASS][132]
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
- shard-dg2-set2: [INCOMPLETE][133] -> [PASS][134]
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-dg2-435/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-436/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr:
- shard-dg2-set2: [INCOMPLETE][135] ([Intel XE#4842]) -> [PASS][136]
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-dg2-434/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-435/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][137] ([Intel XE#1392]) -> [PASS][138] +6 other tests pass
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
* {igt@xe_exec_system_allocator@many-large-execqueues-malloc-prefetch}:
- shard-lnl: [CRASH][139] ([Intel XE#6192]) -> [PASS][140] +9 other tests pass
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-lnl-1/igt@xe_exec_system_allocator@many-large-execqueues-malloc-prefetch.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-lnl-1/igt@xe_exec_system_allocator@many-large-execqueues-malloc-prefetch.html
* {igt@xe_exec_system_allocator@twice-large-malloc-prefetch-race}:
- shard-bmg: [CRASH][141] ([Intel XE#6192]) -> [PASS][142] +5 other tests pass
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-bmg-2/igt@xe_exec_system_allocator@twice-large-malloc-prefetch-race.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-6/igt@xe_exec_system_allocator@twice-large-malloc-prefetch-race.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: [DMESG-WARN][143] ([Intel XE#5893]) -> [PASS][144]
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-dg2-434/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-435/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [FAIL][145] ([Intel XE#4819]) -> [PASS][146] +1 other test pass
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-dg2-434/igt@xe_pmu@gt-frequency.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-466/igt@xe_pmu@gt-frequency.html
#### Warnings ####
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [FAIL][147] ([Intel XE#1178]) -> [SKIP][148] ([Intel XE#2341]) +1 other test skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-bmg-8/igt@kms_content_protection@lic-type-0.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: [DMESG-WARN][149] ([Intel XE#2953] / [Intel XE#4173]) -> [DMESG-WARN][150] ([Intel XE#2953] / [Intel XE#4173] / [Intel XE#4543])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-2/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y:
- shard-adlp: [FAIL][151] ([Intel XE#1874]) -> [DMESG-FAIL][152] ([Intel XE#4543])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-adlp-1/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-y-to-y.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][153] ([Intel XE#2312]) -> [SKIP][154] ([Intel XE#2311]) +11 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][155] ([Intel XE#5390]) -> [SKIP][156] ([Intel XE#2312]) +4 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][157] ([Intel XE#2312]) -> [SKIP][158] ([Intel XE#5390]) +6 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][159] ([Intel XE#2311]) -> [SKIP][160] ([Intel XE#2312]) +15 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][161] ([Intel XE#2313]) -> [SKIP][162] ([Intel XE#2312]) +15 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][163] ([Intel XE#2312]) -> [SKIP][164] ([Intel XE#2313]) +9 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][165] ([Intel XE#4596]) -> [SKIP][166] ([Intel XE#5021]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [FAIL][167] ([Intel XE#1729]) -> [SKIP][168] ([Intel XE#362])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-adlp: [ABORT][169] ([Intel XE#4917] / [Intel XE#5530]) -> [ABORT][170] ([Intel XE#5530])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-adlp-9/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-adlp-1/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: [SKIP][171] ([Intel XE#1061]) -> [FAIL][172] ([Intel XE#1173])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3853-5f87abb254011980c8332008cfff72d2cfab4952/shard-dg2-432/igt@xe_peer2peer@read.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/shard-dg2-463/igt@xe_peer2peer@read.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[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#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[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#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4359
[Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494
[Intel XE#4504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4504
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4819
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4842]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4842
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[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#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564
[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#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594
[Intel XE#5624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5624
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#5745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5745
[Intel XE#5786]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5786
[Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
[Intel XE#5977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5977
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#6192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6192
[Intel XE#6259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6259
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#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
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[i915#14968]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14968
Build changes
-------------
* Linux: xe-3853-5f87abb254011980c8332008cfff72d2cfab4952 -> xe-pw-155314v1
IGT_8568: 8568
xe-3853-5f87abb254011980c8332008cfff72d2cfab4952: 5f87abb254011980c8332008cfff72d2cfab4952
xe-pw-155314v1: 155314v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-155314v1/index.html
[-- Attachment #2: Type: text/html, Size: 58853 bytes --]
^ permalink raw reply [flat|nested] 15+ messages in thread