* [PATCH 1/2] drm/xe: Introduce flag to indicate possible fault injection
2025-05-12 16:19 [PATCH 0/2] Suppress some dumps during fault injection tests Michal Wajdeczko
@ 2025-05-12 16:19 ` Michal Wajdeczko
2025-05-12 18:36 ` John Harrison
2025-05-12 16:19 ` [PATCH 2/2] drm/xe/guc: Suppress Dead CTB Dump during fault injection tests Michal Wajdeczko
` (16 subsequent siblings)
17 siblings, 1 reply; 24+ messages in thread
From: Michal Wajdeczko @ 2025-05-12 16:19 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Satyanarayana K V P, John Harrison
When running some fault injection tests the driver might generate
a lot of error logs which might unnecessary stress our CI systems.
Introduce a flag exposed in debugfs that can be used by the fault
injection tests to give the driver a hint to suppress non-essential
error logs or dumps that might be otherwise generated.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: John Harrison <john.c.harrison@intel.com>
---
drivers/gpu/drm/xe/xe_debugfs.c | 5 +++++
drivers/gpu/drm/xe/xe_device.h | 12 ++++++++++++
drivers/gpu/drm/xe/xe_device_types.h | 9 +++++++++
3 files changed, 26 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_debugfs.c b/drivers/gpu/drm/xe/xe_debugfs.c
index d0503959a8ed..0567a57597d3 100644
--- a/drivers/gpu/drm/xe/xe_debugfs.c
+++ b/drivers/gpu/drm/xe/xe_debugfs.c
@@ -235,4 +235,9 @@ void xe_debugfs_register(struct xe_device *xe)
xe_pxp_debugfs_register(xe->pxp);
fault_create_debugfs_attr("fail_gt_reset", root, >_reset_failure);
+
+#if IS_ENABLED(CONFIG_FAULT_INJECTION)
+ debugfs_create_bool("fault_injection_in_progress", 0600, root,
+ &xe->fault_injection_in_progress);
+#endif
}
diff --git a/drivers/gpu/drm/xe/xe_device.h b/drivers/gpu/drm/xe/xe_device.h
index 0bc3bc8e6803..ea25d8161050 100644
--- a/drivers/gpu/drm/xe/xe_device.h
+++ b/drivers/gpu/drm/xe/xe_device.h
@@ -209,4 +209,16 @@ void xe_file_put(struct xe_file *xef);
#define LNL_FLUSH_WORK(wrk__) \
flush_work(wrk__)
+#if IS_ENABLED(CONFIG_FAULT_INJECTION)
+static inline bool xe_fault_injection_in_progress(struct xe_device *xe)
+{
+ return xe->fault_injection_in_progress;
+}
+#else
+static inline bool xe_fault_injection_in_progress(struct xe_device *xe)
+{
+ return false;
+}
+#endif
+
#endif
diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
index 06c65dace026..513a811a3121 100644
--- a/drivers/gpu/drm/xe/xe_device_types.h
+++ b/drivers/gpu/drm/xe/xe_device_types.h
@@ -578,6 +578,15 @@ struct xe_device {
u8 vm_inject_error_position;
#endif
+#if IS_ENABLED(CONFIG_FAULT_INJECTION)
+ /**
+ * @fault_injection_in_progress: flag used by the fault injection
+ * tests to allow the driver to suppress non-essential error dumps
+ * that might be otherwise generated due to an injected fault.
+ */
+ bool fault_injection_in_progress;
+#endif
+
/* private: */
#if IS_ENABLED(CONFIG_DRM_XE_DISPLAY)
--
2.47.1
^ permalink raw reply related [flat|nested] 24+ messages in thread* Re: [PATCH 1/2] drm/xe: Introduce flag to indicate possible fault injection
2025-05-12 16:19 ` [PATCH 1/2] drm/xe: Introduce flag to indicate possible fault injection Michal Wajdeczko
@ 2025-05-12 18:36 ` John Harrison
2025-05-12 20:20 ` Michal Wajdeczko
0 siblings, 1 reply; 24+ messages in thread
From: John Harrison @ 2025-05-12 18:36 UTC (permalink / raw)
To: Michal Wajdeczko, intel-xe; +Cc: Satyanarayana K V P
On 5/12/2025 9:19 AM, Michal Wajdeczko wrote:
> When running some fault injection tests the driver might generate
> a lot of error logs which might unnecessary stress our CI systems.
>
> Introduce a flag exposed in debugfs that can be used by the fault
> injection tests to give the driver a hint to suppress non-essential
> error logs or dumps that might be otherwise generated.
Why use debugfs? The whole point of the fault injection test is that it
replaces an existing function with something that just returns an error
code. Seems the perfect way to have a function which is simply "return
0;" in normal usage but modified by the injection test to return an
error code when a test is running. Which is what the original patch was
doing. That way everything is self contained, there are no extraneous
interfaces in unrelated subsystems.
Unless you are wanting a more generic 'test_in_progress' function that
is not specific to fault injection, then using debugfs seems like an
unnecessary complication.
John.
>
> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
> Cc: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
> Cc: John Harrison <john.c.harrison@intel.com>
> ---
> drivers/gpu/drm/xe/xe_debugfs.c | 5 +++++
> drivers/gpu/drm/xe/xe_device.h | 12 ++++++++++++
> drivers/gpu/drm/xe/xe_device_types.h | 9 +++++++++
> 3 files changed, 26 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_debugfs.c b/drivers/gpu/drm/xe/xe_debugfs.c
> index d0503959a8ed..0567a57597d3 100644
> --- a/drivers/gpu/drm/xe/xe_debugfs.c
> +++ b/drivers/gpu/drm/xe/xe_debugfs.c
> @@ -235,4 +235,9 @@ void xe_debugfs_register(struct xe_device *xe)
> xe_pxp_debugfs_register(xe->pxp);
>
> fault_create_debugfs_attr("fail_gt_reset", root, >_reset_failure);
> +
> +#if IS_ENABLED(CONFIG_FAULT_INJECTION)
> + debugfs_create_bool("fault_injection_in_progress", 0600, root,
> + &xe->fault_injection_in_progress);
> +#endif
> }
> diff --git a/drivers/gpu/drm/xe/xe_device.h b/drivers/gpu/drm/xe/xe_device.h
> index 0bc3bc8e6803..ea25d8161050 100644
> --- a/drivers/gpu/drm/xe/xe_device.h
> +++ b/drivers/gpu/drm/xe/xe_device.h
> @@ -209,4 +209,16 @@ void xe_file_put(struct xe_file *xef);
> #define LNL_FLUSH_WORK(wrk__) \
> flush_work(wrk__)
>
> +#if IS_ENABLED(CONFIG_FAULT_INJECTION)
> +static inline bool xe_fault_injection_in_progress(struct xe_device *xe)
> +{
> + return xe->fault_injection_in_progress;
> +}
> +#else
> +static inline bool xe_fault_injection_in_progress(struct xe_device *xe)
> +{
> + return false;
> +}
> +#endif
> +
> #endif
> diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/xe/xe_device_types.h
> index 06c65dace026..513a811a3121 100644
> --- a/drivers/gpu/drm/xe/xe_device_types.h
> +++ b/drivers/gpu/drm/xe/xe_device_types.h
> @@ -578,6 +578,15 @@ struct xe_device {
> u8 vm_inject_error_position;
> #endif
>
> +#if IS_ENABLED(CONFIG_FAULT_INJECTION)
> + /**
> + * @fault_injection_in_progress: flag used by the fault injection
> + * tests to allow the driver to suppress non-essential error dumps
> + * that might be otherwise generated due to an injected fault.
> + */
> + bool fault_injection_in_progress;
> +#endif
> +
> /* private: */
>
> #if IS_ENABLED(CONFIG_DRM_XE_DISPLAY)
^ permalink raw reply [flat|nested] 24+ messages in thread* Re: [PATCH 1/2] drm/xe: Introduce flag to indicate possible fault injection
2025-05-12 18:36 ` John Harrison
@ 2025-05-12 20:20 ` Michal Wajdeczko
2025-05-14 21:05 ` John Harrison
0 siblings, 1 reply; 24+ messages in thread
From: Michal Wajdeczko @ 2025-05-12 20:20 UTC (permalink / raw)
To: John Harrison, intel-xe; +Cc: Satyanarayana K V P
On 12.05.2025 20:36, John Harrison wrote:
> On 5/12/2025 9:19 AM, Michal Wajdeczko wrote:
>> When running some fault injection tests the driver might generate
>> a lot of error logs which might unnecessary stress our CI systems.
>>
>> Introduce a flag exposed in debugfs that can be used by the fault
>> injection tests to give the driver a hint to suppress non-essential
>> error logs or dumps that might be otherwise generated.
> Why use debugfs?
because IMO it's more tailored solution, as actually we just want some
flag to control level of diagnostics generated by the driver on error,
and as you already mentioned, modparam likely would be not accepted
> The whole point of the fault injection test is that it
> replaces an existing function with something that just returns an error
> code. Seems the perfect way to have a function which is simply "return
> 0;" in normal usage but modified by the injection test to return an
> error code when a test is running. Which is what the original patch was
> doing. That way everything is self contained, there are no extraneous
> interfaces in unrelated subsystems.
while at the first look this idea might solve the problem of controlling
the diagnostics level, the issue is that it would require exposing from
the driver either a dummy state function or promoting an existing
diagnostic function to be a fault-injectable. in both cases such
functions would then require configuration steps where any of advanced
fault-injection parameters will never be fully explored (like
probability, space) so this again sounds like overshooting
IMO instead of adding more and more functions as "fault-injectable" and
marking them then as 100% fail, we should try to find more atomic points
of failure (like no memory, no GGTT space, no VRAM, dead FW, broken FW
comm, lost MMIO) and then take advantage of the framework that would
inject faults all over with some randomness or deterministic and
potentially overlapping with each other. this would allow to write more
generic test that will list existing "injectable" functions, without a
need to hardcoding them in the test, where clearly our dummy state
function or diagnostic function wont fit and will require again special
handling
>
> Unless you are wanting a more generic 'test_in_progress' function that
> is not specific to fault injection, then using debugfs seems like an
> unnecessary complication.
yes, more generic approach is always better, and with debugfs/flag
approach it would likely enable us to suppress some dumps while doing
some CAT tests or live kunit negative GuC tests
>
> John.
>
>>
>> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>> Cc: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
>> Cc: John Harrison <john.c.harrison@intel.com>
>> ---
>> drivers/gpu/drm/xe/xe_debugfs.c | 5 +++++
>> drivers/gpu/drm/xe/xe_device.h | 12 ++++++++++++
>> drivers/gpu/drm/xe/xe_device_types.h | 9 +++++++++
>> 3 files changed, 26 insertions(+)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_debugfs.c b/drivers/gpu/drm/xe/
>> xe_debugfs.c
>> index d0503959a8ed..0567a57597d3 100644
>> --- a/drivers/gpu/drm/xe/xe_debugfs.c
>> +++ b/drivers/gpu/drm/xe/xe_debugfs.c
>> @@ -235,4 +235,9 @@ void xe_debugfs_register(struct xe_device *xe)
>> xe_pxp_debugfs_register(xe->pxp);
>> fault_create_debugfs_attr("fail_gt_reset", root,
>> >_reset_failure);
>> +
>> +#if IS_ENABLED(CONFIG_FAULT_INJECTION)
>> + debugfs_create_bool("fault_injection_in_progress", 0600, root,
>> + &xe->fault_injection_in_progress);
>> +#endif
>> }
>> diff --git a/drivers/gpu/drm/xe/xe_device.h b/drivers/gpu/drm/xe/
>> xe_device.h
>> index 0bc3bc8e6803..ea25d8161050 100644
>> --- a/drivers/gpu/drm/xe/xe_device.h
>> +++ b/drivers/gpu/drm/xe/xe_device.h
>> @@ -209,4 +209,16 @@ void xe_file_put(struct xe_file *xef);
>> #define LNL_FLUSH_WORK(wrk__) \
>> flush_work(wrk__)
>> +#if IS_ENABLED(CONFIG_FAULT_INJECTION)
>> +static inline bool xe_fault_injection_in_progress(struct xe_device *xe)
>> +{
>> + return xe->fault_injection_in_progress;
>> +}
>> +#else
>> +static inline bool xe_fault_injection_in_progress(struct xe_device *xe)
>> +{
>> + return false;
>> +}
>> +#endif
>> +
>> #endif
>> diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/
>> xe/xe_device_types.h
>> index 06c65dace026..513a811a3121 100644
>> --- a/drivers/gpu/drm/xe/xe_device_types.h
>> +++ b/drivers/gpu/drm/xe/xe_device_types.h
>> @@ -578,6 +578,15 @@ struct xe_device {
>> u8 vm_inject_error_position;
>> #endif
>> +#if IS_ENABLED(CONFIG_FAULT_INJECTION)
>> + /**
>> + * @fault_injection_in_progress: flag used by the fault injection
>> + * tests to allow the driver to suppress non-essential error dumps
>> + * that might be otherwise generated due to an injected fault.
>> + */
>> + bool fault_injection_in_progress;
>> +#endif
>> +
>> /* private: */
>> #if IS_ENABLED(CONFIG_DRM_XE_DISPLAY)
>
^ permalink raw reply [flat|nested] 24+ messages in thread* Re: [PATCH 1/2] drm/xe: Introduce flag to indicate possible fault injection
2025-05-12 20:20 ` Michal Wajdeczko
@ 2025-05-14 21:05 ` John Harrison
2025-05-15 10:25 ` Michal Wajdeczko
0 siblings, 1 reply; 24+ messages in thread
From: John Harrison @ 2025-05-14 21:05 UTC (permalink / raw)
To: Michal Wajdeczko, intel-xe; +Cc: Satyanarayana K V P
On 5/12/2025 1:20 PM, Michal Wajdeczko wrote:
> On 12.05.2025 20:36, John Harrison wrote:
>> On 5/12/2025 9:19 AM, Michal Wajdeczko wrote:
>>> When running some fault injection tests the driver might generate
>>> a lot of error logs which might unnecessary stress our CI systems.
>>>
>>> Introduce a flag exposed in debugfs that can be used by the fault
>>> injection tests to give the driver a hint to suppress non-essential
>>> error logs or dumps that might be otherwise generated.
>> Why use debugfs?
> because IMO it's more tailored solution, as actually we just want some
> flag to control level of diagnostics generated by the driver on error,
> and as you already mentioned, modparam likely would be not accepted
Tailored to what? It is certainly not tailored to testing module load
because debugfs does not exist until module load is completed. And a lot
of the fault injection tests are testing the error paths during load.
debugfs will simply not work at all for those.
>
>> The whole point of the fault injection test is that it
>> replaces an existing function with something that just returns an error
>> code. Seems the perfect way to have a function which is simply "return
>> 0;" in normal usage but modified by the injection test to return an
>> error code when a test is running. Which is what the original patch was
>> doing. That way everything is self contained, there are no extraneous
>> interfaces in unrelated subsystems.
> while at the first look this idea might solve the problem of controlling
> the diagnostics level, the issue is that it would require exposing from
> the driver either a dummy state function or promoting an existing
> diagnostic function to be a fault-injectable. in both cases such
As opposed to requiring an entire new debugfs interface? A single
exposed function seems simpler to me.
> functions would then require configuration steps where any of advanced
> fault-injection parameters will never be fully explored (like
> probability, space) so this again sounds like overshooting
I have no idea what you mean by this. What configuration do you need for
a function which is literally just 'return true/false'? You can do
whatever fancy fault injection test you like. That is totally
independent of nobbling one 'is_fault_injection_acitve()' function to
prevent excess debug spam during any and every fault injection test.
>
> IMO instead of adding more and more functions as "fault-injectable" and
> marking them then as 100% fail, we should try to find more atomic points
> of failure (like no memory, no GGTT space, no VRAM, dead FW, broken FW
> comm, lost MMIO) and then take advantage of the framework that would
> inject faults all over with some randomness or deterministic and
> potentially overlapping with each other. this would allow to write more
> generic test that will list existing "injectable" functions, without a
> need to hardcoding them in the test, where clearly our dummy state
> function or diagnostic function wont fit and will require again special
> handling
I'm not sure if you are arguing for a re-write of the fault injection
framework in the kernel as a whole or just complaining that our IGT
implementation is sub-optimal? But if you look at the corresponding IGT
patch, the code to nobble the 'is_injection_active()' function is
trivial - it just re-uses code that already exits for nobbling the test
target functions. So it is just one extra call at the start of each
test. There is no complexity or fragile hard-coding. And it does not
matter what fault injection test is going to be run - how complex or
trivial.
>> Unless you are wanting a more generic 'test_in_progress' function that
>> is not specific to fault injection, then using debugfs seems like an
>> unnecessary complication.
> yes, more generic approach is always better, and with debugfs/flag
> approach it would likely enable us to suppress some dumps while doing
> some CAT tests or live kunit negative GuC tests
Except when generic means unusable because it is not available yet (see
above about module load testing). And kunit tests already have an
infrastructure and API all of their own for controlling how executing is
done during the test. Not sure what you mean by CAT tests?
John.
>
>> John.
>>
>>> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>>> Cc: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
>>> Cc: John Harrison <john.c.harrison@intel.com>
>>> ---
>>> drivers/gpu/drm/xe/xe_debugfs.c | 5 +++++
>>> drivers/gpu/drm/xe/xe_device.h | 12 ++++++++++++
>>> drivers/gpu/drm/xe/xe_device_types.h | 9 +++++++++
>>> 3 files changed, 26 insertions(+)
>>>
>>> diff --git a/drivers/gpu/drm/xe/xe_debugfs.c b/drivers/gpu/drm/xe/
>>> xe_debugfs.c
>>> index d0503959a8ed..0567a57597d3 100644
>>> --- a/drivers/gpu/drm/xe/xe_debugfs.c
>>> +++ b/drivers/gpu/drm/xe/xe_debugfs.c
>>> @@ -235,4 +235,9 @@ void xe_debugfs_register(struct xe_device *xe)
>>> xe_pxp_debugfs_register(xe->pxp);
>>> fault_create_debugfs_attr("fail_gt_reset", root,
>>> >_reset_failure);
>>> +
>>> +#if IS_ENABLED(CONFIG_FAULT_INJECTION)
>>> + debugfs_create_bool("fault_injection_in_progress", 0600, root,
>>> + &xe->fault_injection_in_progress);
>>> +#endif
>>> }
>>> diff --git a/drivers/gpu/drm/xe/xe_device.h b/drivers/gpu/drm/xe/
>>> xe_device.h
>>> index 0bc3bc8e6803..ea25d8161050 100644
>>> --- a/drivers/gpu/drm/xe/xe_device.h
>>> +++ b/drivers/gpu/drm/xe/xe_device.h
>>> @@ -209,4 +209,16 @@ void xe_file_put(struct xe_file *xef);
>>> #define LNL_FLUSH_WORK(wrk__) \
>>> flush_work(wrk__)
>>> +#if IS_ENABLED(CONFIG_FAULT_INJECTION)
>>> +static inline bool xe_fault_injection_in_progress(struct xe_device *xe)
>>> +{
>>> + return xe->fault_injection_in_progress;
>>> +}
>>> +#else
>>> +static inline bool xe_fault_injection_in_progress(struct xe_device *xe)
>>> +{
>>> + return false;
>>> +}
>>> +#endif
>>> +
>>> #endif
>>> diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/
>>> xe/xe_device_types.h
>>> index 06c65dace026..513a811a3121 100644
>>> --- a/drivers/gpu/drm/xe/xe_device_types.h
>>> +++ b/drivers/gpu/drm/xe/xe_device_types.h
>>> @@ -578,6 +578,15 @@ struct xe_device {
>>> u8 vm_inject_error_position;
>>> #endif
>>> +#if IS_ENABLED(CONFIG_FAULT_INJECTION)
>>> + /**
>>> + * @fault_injection_in_progress: flag used by the fault injection
>>> + * tests to allow the driver to suppress non-essential error dumps
>>> + * that might be otherwise generated due to an injected fault.
>>> + */
>>> + bool fault_injection_in_progress;
>>> +#endif
>>> +
>>> /* private: */
>>> #if IS_ENABLED(CONFIG_DRM_XE_DISPLAY)
^ permalink raw reply [flat|nested] 24+ messages in thread* Re: [PATCH 1/2] drm/xe: Introduce flag to indicate possible fault injection
2025-05-14 21:05 ` John Harrison
@ 2025-05-15 10:25 ` Michal Wajdeczko
2025-05-21 21:15 ` John Harrison
0 siblings, 1 reply; 24+ messages in thread
From: Michal Wajdeczko @ 2025-05-15 10:25 UTC (permalink / raw)
To: John Harrison, intel-xe; +Cc: Satyanarayana K V P
On 14.05.2025 23:05, John Harrison wrote:
> On 5/12/2025 1:20 PM, Michal Wajdeczko wrote:
>> On 12.05.2025 20:36, John Harrison wrote:
>>> On 5/12/2025 9:19 AM, Michal Wajdeczko wrote:
>>>> When running some fault injection tests the driver might generate
>>>> a lot of error logs which might unnecessary stress our CI systems.
>>>>
>>>> Introduce a flag exposed in debugfs that can be used by the fault
>>>> injection tests to give the driver a hint to suppress non-essential
>>>> error logs or dumps that might be otherwise generated.
>>> Why use debugfs?
>> because IMO it's more tailored solution, as actually we just want some
>> flag to control level of diagnostics generated by the driver on error,
>> and as you already mentioned, modparam likely would be not accepted
> Tailored to what? It is certainly not tailored to testing module load
> because debugfs does not exist until module load is completed. And a lot
> of the fault injection tests are testing the error paths during load.
> debugfs will simply not work at all for those.
ouch, my bad, I guess I was (too tired and) too much focused on the
scenarios that injects errors at runtime that I fully missed the
limitations of the probe time
>
>>
>>> The whole point of the fault injection test is that it
>>> replaces an existing function with something that just returns an error
>>> code. Seems the perfect way to have a function which is simply "return
>>> 0;" in normal usage but modified by the injection test to return an
>>> error code when a test is running. Which is what the original patch was
>>> doing. That way everything is self contained, there are no extraneous
>>> interfaces in unrelated subsystems.
>> while at the first look this idea might solve the problem of controlling
>> the diagnostics level, the issue is that it would require exposing from
>> the driver either a dummy state function or promoting an existing
>> diagnostic function to be a fault-injectable. in both cases such
> As opposed to requiring an entire new debugfs interface? A single
> exposed function seems simpler to me.
it's still one new entry, regardless it's added to the debugfs or
fault-injection framework
and IMO using/controlling the flag using debugfs is much simpler and
cleaner than whole configuration using fault-injection framework
>
>> functions would then require configuration steps where any of advanced
>> fault-injection parameters will never be fully explored (like
>> probability, space) so this again sounds like overshooting
> I have no idea what you mean by this. What configuration do you need for
> a function which is literally just 'return true/false'? You can do
> whatever fancy fault injection test you like. That is totally
> independent of nobbling one 'is_fault_injection_acitve()' function to
> prevent excess debug spam during any and every fault injection test.
compare configuration steps using fault injection framework:
$ FAILTYPE=fail_function
$ FAILFUNC=is_fault_injection_active
$ echo > /sys/kernel/debug/$FAILTYPE/inject
$ echo $FAILFUNC > /sys/kernel/debug/$FAILTYPE/inject
$ printf %#x -19 > /sys/kernel/debug/$FAILTYPE/$FAILFUNC/retval
$ echo N > /sys/kernel/debug/$FAILTYPE/task-filter
$ echo 10 > /sys/kernel/debug/$FAILTYPE/probability
$ echo 0 > /sys/kernel/debug/$FAILTYPE/interval
$ echo -1 > /sys/kernel/debug/$FAILTYPE/times
$ echo 0 > /sys/kernel/debug/$FAILTYPE/space
$ echo 1 > /sys/kernel/debug/$FAILTYPE/verbose
with the same done over debugfs:
$ echo Y > /sys/kernel/debug/dri/0000:00:02.0/is_fault_injection_active
and while we know this will not work during the probe time, since on the
driver side it's still a single bool flag, we can try to control its
initial value using configfs, and while it would require few more steps
it still be simpler/shorter than above fault-injection steps
>
>>
>> IMO instead of adding more and more functions as "fault-injectable" and
>> marking them then as 100% fail, we should try to find more atomic points
>> of failure (like no memory, no GGTT space, no VRAM, dead FW, broken FW
>> comm, lost MMIO) and then take advantage of the framework that would
>> inject faults all over with some randomness or deterministic and
>> potentially overlapping with each other. this would allow to write more
>> generic test that will list existing "injectable" functions, without a
>> need to hardcoding them in the test, where clearly our dummy state
>> function or diagnostic function wont fit and will require again special
>> handling
> I'm not sure if you are arguing for a re-write of the fault injection
> framework in the kernel as a whole or just complaining that our IGT
our IGT approach and usage
> implementation is sub-optimal? But if you look at the corresponding IGT
> patch, the code to nobble the 'is_injection_active()' function is
> trivial - it just re-uses code that already exits for nobbling the test
> target functions. So it is just one extra call at the start of each
> test. There is no complexity or fragile hard-coding. And it does not
> matter what fault injection test is going to be run - how complex or
> trivial.
but even if we say that we just reuse the existing code, since it was
primary designed for different purposes, IMO we still are using wrong
tools as there are more appropriate solutions to control a flag inside
the driver (like debugfs and configfs)
>
>>> Unless you are wanting a more generic 'test_in_progress' function that
>>> is not specific to fault injection, then using debugfs seems like an
>>> unnecessary complication.
>> yes, more generic approach is always better, and with debugfs/flag
>> approach it would likely enable us to suppress some dumps while doing
>> some CAT tests or live kunit negative GuC tests
> Except when generic means unusable because it is not available yet (see
> above about module load testing). And kunit tests already have an
> infrastructure and API all of their own for controlling how executing is
> done during the test. Not sure what you mean by CAT tests?
something like igt@xe_exec_reset@cat-error
>
> John.
>
>>
>>> John.
>>>
>>>> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>>>> Cc: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
>>>> Cc: John Harrison <john.c.harrison@intel.com>
>>>> ---
>>>> drivers/gpu/drm/xe/xe_debugfs.c | 5 +++++
>>>> drivers/gpu/drm/xe/xe_device.h | 12 ++++++++++++
>>>> drivers/gpu/drm/xe/xe_device_types.h | 9 +++++++++
>>>> 3 files changed, 26 insertions(+)
>>>>
>>>> diff --git a/drivers/gpu/drm/xe/xe_debugfs.c b/drivers/gpu/drm/xe/
>>>> xe_debugfs.c
>>>> index d0503959a8ed..0567a57597d3 100644
>>>> --- a/drivers/gpu/drm/xe/xe_debugfs.c
>>>> +++ b/drivers/gpu/drm/xe/xe_debugfs.c
>>>> @@ -235,4 +235,9 @@ void xe_debugfs_register(struct xe_device *xe)
>>>> xe_pxp_debugfs_register(xe->pxp);
>>>> fault_create_debugfs_attr("fail_gt_reset", root,
>>>> >_reset_failure);
>>>> +
>>>> +#if IS_ENABLED(CONFIG_FAULT_INJECTION)
>>>> + debugfs_create_bool("fault_injection_in_progress", 0600, root,
>>>> + &xe->fault_injection_in_progress);
>>>> +#endif
>>>> }
>>>> diff --git a/drivers/gpu/drm/xe/xe_device.h b/drivers/gpu/drm/xe/
>>>> xe_device.h
>>>> index 0bc3bc8e6803..ea25d8161050 100644
>>>> --- a/drivers/gpu/drm/xe/xe_device.h
>>>> +++ b/drivers/gpu/drm/xe/xe_device.h
>>>> @@ -209,4 +209,16 @@ void xe_file_put(struct xe_file *xef);
>>>> #define LNL_FLUSH_WORK(wrk__) \
>>>> flush_work(wrk__)
>>>> +#if IS_ENABLED(CONFIG_FAULT_INJECTION)
>>>> +static inline bool xe_fault_injection_in_progress(struct xe_device
>>>> *xe)
>>>> +{
>>>> + return xe->fault_injection_in_progress;
>>>> +}
>>>> +#else
>>>> +static inline bool xe_fault_injection_in_progress(struct xe_device
>>>> *xe)
>>>> +{
>>>> + return false;
>>>> +}
>>>> +#endif
>>>> +
>>>> #endif
>>>> diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/
>>>> xe/xe_device_types.h
>>>> index 06c65dace026..513a811a3121 100644
>>>> --- a/drivers/gpu/drm/xe/xe_device_types.h
>>>> +++ b/drivers/gpu/drm/xe/xe_device_types.h
>>>> @@ -578,6 +578,15 @@ struct xe_device {
>>>> u8 vm_inject_error_position;
>>>> #endif
>>>> +#if IS_ENABLED(CONFIG_FAULT_INJECTION)
>>>> + /**
>>>> + * @fault_injection_in_progress: flag used by the fault injection
>>>> + * tests to allow the driver to suppress non-essential error dumps
>>>> + * that might be otherwise generated due to an injected fault.
>>>> + */
>>>> + bool fault_injection_in_progress;
>>>> +#endif
>>>> +
>>>> /* private: */
>>>> #if IS_ENABLED(CONFIG_DRM_XE_DISPLAY)
>
^ permalink raw reply [flat|nested] 24+ messages in thread* Re: [PATCH 1/2] drm/xe: Introduce flag to indicate possible fault injection
2025-05-15 10:25 ` Michal Wajdeczko
@ 2025-05-21 21:15 ` John Harrison
0 siblings, 0 replies; 24+ messages in thread
From: John Harrison @ 2025-05-21 21:15 UTC (permalink / raw)
To: Michal Wajdeczko, intel-xe; +Cc: Satyanarayana K V P
On 5/15/2025 3:25 AM, Michal Wajdeczko wrote:
> On 14.05.2025 23:05, John Harrison wrote:
>> On 5/12/2025 1:20 PM, Michal Wajdeczko wrote:
>>> On 12.05.2025 20:36, John Harrison wrote:
>>>> On 5/12/2025 9:19 AM, Michal Wajdeczko wrote:
>>>>> When running some fault injection tests the driver might generate
>>>>> a lot of error logs which might unnecessary stress our CI systems.
>>>>>
>>>>> Introduce a flag exposed in debugfs that can be used by the fault
>>>>> injection tests to give the driver a hint to suppress non-essential
>>>>> error logs or dumps that might be otherwise generated.
>>>> Why use debugfs?
>>> because IMO it's more tailored solution, as actually we just want some
>>> flag to control level of diagnostics generated by the driver on error,
>>> and as you already mentioned, modparam likely would be not accepted
>> Tailored to what? It is certainly not tailored to testing module load
>> because debugfs does not exist until module load is completed. And a lot
>> of the fault injection tests are testing the error paths during load.
>> debugfs will simply not work at all for those.
> ouch, my bad, I guess I was (too tired and) too much focused on the
> scenarios that injects errors at runtime that I fully missed the
> limitations of the probe time
>
>>>> The whole point of the fault injection test is that it
>>>> replaces an existing function with something that just returns an error
>>>> code. Seems the perfect way to have a function which is simply "return
>>>> 0;" in normal usage but modified by the injection test to return an
>>>> error code when a test is running. Which is what the original patch was
>>>> doing. That way everything is self contained, there are no extraneous
>>>> interfaces in unrelated subsystems.
>>> while at the first look this idea might solve the problem of controlling
>>> the diagnostics level, the issue is that it would require exposing from
>>> the driver either a dummy state function or promoting an existing
>>> diagnostic function to be a fault-injectable. in both cases such
>> As opposed to requiring an entire new debugfs interface? A single
>> exposed function seems simpler to me.
> it's still one new entry, regardless it's added to the debugfs or
> fault-injection framework
>
> and IMO using/controlling the flag using debugfs is much simpler and
> cleaner than whole configuration using fault-injection framework
>
>>> functions would then require configuration steps where any of advanced
>>> fault-injection parameters will never be fully explored (like
>>> probability, space) so this again sounds like overshooting
>> I have no idea what you mean by this. What configuration do you need for
>> a function which is literally just 'return true/false'? You can do
>> whatever fancy fault injection test you like. That is totally
>> independent of nobbling one 'is_fault_injection_acitve()' function to
>> prevent excess debug spam during any and every fault injection test.
> compare configuration steps using fault injection framework:
>
> $ FAILTYPE=fail_function
> $ FAILFUNC=is_fault_injection_active
>
> $ echo > /sys/kernel/debug/$FAILTYPE/inject
> $ echo $FAILFUNC > /sys/kernel/debug/$FAILTYPE/inject
> $ printf %#x -19 > /sys/kernel/debug/$FAILTYPE/$FAILFUNC/retval
>
> $ echo N > /sys/kernel/debug/$FAILTYPE/task-filter
> $ echo 10 > /sys/kernel/debug/$FAILTYPE/probability
> $ echo 0 > /sys/kernel/debug/$FAILTYPE/interval
> $ echo -1 > /sys/kernel/debug/$FAILTYPE/times
> $ echo 0 > /sys/kernel/debug/$FAILTYPE/space
> $ echo 1 > /sys/kernel/debug/$FAILTYPE/verbose
>
> with the same done over debugfs:
>
> $ echo Y > /sys/kernel/debug/dri/0000:00:02.0/is_fault_injection_active
Except that the interface is only used by fault injection tests. It is
never done by a user manually hacking around with sysfs files. It is
done by the IGT fault injection test which already has everything coded
up as a helper function. So it is just a one line change in the test.
Which is the only place that ever needs to do it.
Moving the control to debugfs/configfs is splitting the functionality
across multiple unrelated subsystems. Doing it via the existing
injection interface keeps everything together within a single subsystem.
>
> and while we know this will not work during the probe time, since on the
> driver side it's still a single bool flag, we can try to control its
> initial value using configfs, and while it would require few more steps
> it still be simpler/shorter than above fault-injection steps
Which is just adding more and more complication to something which does
not need it.
>
>>> IMO instead of adding more and more functions as "fault-injectable" and
>>> marking them then as 100% fail, we should try to find more atomic points
>>> of failure (like no memory, no GGTT space, no VRAM, dead FW, broken FW
>>> comm, lost MMIO) and then take advantage of the framework that would
>>> inject faults all over with some randomness or deterministic and
>>> potentially overlapping with each other. this would allow to write more
>>> generic test that will list existing "injectable" functions, without a
>>> need to hardcoding them in the test, where clearly our dummy state
>>> function or diagnostic function wont fit and will require again special
>>> handling
>> I'm not sure if you are arguing for a re-write of the fault injection
>> framework in the kernel as a whole or just complaining that our IGT
> our IGT approach and usage
>
>> implementation is sub-optimal? But if you look at the corresponding IGT
>> patch, the code to nobble the 'is_injection_active()' function is
>> trivial - it just re-uses code that already exits for nobbling the test
>> target functions. So it is just one extra call at the start of each
>> test. There is no complexity or fragile hard-coding. And it does not
>> matter what fault injection test is going to be run - how complex or
>> trivial.
> but even if we say that we just reuse the existing code, since it was
> primary designed for different purposes, IMO we still are using wrong
> tools as there are more appropriate solutions to control a flag inside
> the driver (like debugfs and configfs)
They are appropriate for controlling general purpose settings that are
of generic use. They are not appropriate for controlling something that
is specific to another subsystem which already has a perfectly usable
and trivial mechanism for adding that control.
>
>>>> Unless you are wanting a more generic 'test_in_progress' function that
>>>> is not specific to fault injection, then using debugfs seems like an
>>>> unnecessary complication.
>>> yes, more generic approach is always better, and with debugfs/flag
>>> approach it would likely enable us to suppress some dumps while doing
>>> some CAT tests or live kunit negative GuC tests
>> Except when generic means unusable because it is not available yet (see
>> above about module load testing). And kunit tests already have an
>> infrastructure and API all of their own for controlling how executing is
>> done during the test. Not sure what you mean by CAT tests?
> something like igt@xe_exec_reset@cat-error
What does that have to do with this? It should not be possible to
generate a CT_DEAD failure in the cat-error test. It should not be
possible to generate a CT_DEAD failure with anything other than a
selftest/injection test that deliberately breaks the internal workings
of the driver. A cat-error is a user generatable error. As such it
should never hit an internal error path in the KMD.
John.
>
>> John.
>>
>>>> John.
>>>>
>>>>> Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
>>>>> Cc: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
>>>>> Cc: John Harrison <john.c.harrison@intel.com>
>>>>> ---
>>>>> drivers/gpu/drm/xe/xe_debugfs.c | 5 +++++
>>>>> drivers/gpu/drm/xe/xe_device.h | 12 ++++++++++++
>>>>> drivers/gpu/drm/xe/xe_device_types.h | 9 +++++++++
>>>>> 3 files changed, 26 insertions(+)
>>>>>
>>>>> diff --git a/drivers/gpu/drm/xe/xe_debugfs.c b/drivers/gpu/drm/xe/
>>>>> xe_debugfs.c
>>>>> index d0503959a8ed..0567a57597d3 100644
>>>>> --- a/drivers/gpu/drm/xe/xe_debugfs.c
>>>>> +++ b/drivers/gpu/drm/xe/xe_debugfs.c
>>>>> @@ -235,4 +235,9 @@ void xe_debugfs_register(struct xe_device *xe)
>>>>> xe_pxp_debugfs_register(xe->pxp);
>>>>> fault_create_debugfs_attr("fail_gt_reset", root,
>>>>> >_reset_failure);
>>>>> +
>>>>> +#if IS_ENABLED(CONFIG_FAULT_INJECTION)
>>>>> + debugfs_create_bool("fault_injection_in_progress", 0600, root,
>>>>> + &xe->fault_injection_in_progress);
>>>>> +#endif
>>>>> }
>>>>> diff --git a/drivers/gpu/drm/xe/xe_device.h b/drivers/gpu/drm/xe/
>>>>> xe_device.h
>>>>> index 0bc3bc8e6803..ea25d8161050 100644
>>>>> --- a/drivers/gpu/drm/xe/xe_device.h
>>>>> +++ b/drivers/gpu/drm/xe/xe_device.h
>>>>> @@ -209,4 +209,16 @@ void xe_file_put(struct xe_file *xef);
>>>>> #define LNL_FLUSH_WORK(wrk__) \
>>>>> flush_work(wrk__)
>>>>> +#if IS_ENABLED(CONFIG_FAULT_INJECTION)
>>>>> +static inline bool xe_fault_injection_in_progress(struct xe_device
>>>>> *xe)
>>>>> +{
>>>>> + return xe->fault_injection_in_progress;
>>>>> +}
>>>>> +#else
>>>>> +static inline bool xe_fault_injection_in_progress(struct xe_device
>>>>> *xe)
>>>>> +{
>>>>> + return false;
>>>>> +}
>>>>> +#endif
>>>>> +
>>>>> #endif
>>>>> diff --git a/drivers/gpu/drm/xe/xe_device_types.h b/drivers/gpu/drm/
>>>>> xe/xe_device_types.h
>>>>> index 06c65dace026..513a811a3121 100644
>>>>> --- a/drivers/gpu/drm/xe/xe_device_types.h
>>>>> +++ b/drivers/gpu/drm/xe/xe_device_types.h
>>>>> @@ -578,6 +578,15 @@ struct xe_device {
>>>>> u8 vm_inject_error_position;
>>>>> #endif
>>>>> +#if IS_ENABLED(CONFIG_FAULT_INJECTION)
>>>>> + /**
>>>>> + * @fault_injection_in_progress: flag used by the fault injection
>>>>> + * tests to allow the driver to suppress non-essential error dumps
>>>>> + * that might be otherwise generated due to an injected fault.
>>>>> + */
>>>>> + bool fault_injection_in_progress;
>>>>> +#endif
>>>>> +
>>>>> /* private: */
>>>>> #if IS_ENABLED(CONFIG_DRM_XE_DISPLAY)
^ permalink raw reply [flat|nested] 24+ messages in thread
* [PATCH 2/2] drm/xe/guc: Suppress Dead CTB Dump during fault injection tests
2025-05-12 16:19 [PATCH 0/2] Suppress some dumps during fault injection tests Michal Wajdeczko
2025-05-12 16:19 ` [PATCH 1/2] drm/xe: Introduce flag to indicate possible fault injection Michal Wajdeczko
@ 2025-05-12 16:19 ` Michal Wajdeczko
2025-05-12 16:44 ` ✓ CI.Patch_applied: success for Suppress some dumps " Patchwork
` (15 subsequent siblings)
17 siblings, 0 replies; 24+ messages in thread
From: Michal Wajdeczko @ 2025-05-12 16:19 UTC (permalink / raw)
To: intel-xe; +Cc: Michal Wajdeczko, Satyanarayana K V P, John Harrison
There is no point in generating a CTB dump due to a fault
injected by our tests, as it they will just stress our CI.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: John Harrison <john.c.harrison@intel.com>
---
drivers/gpu/drm/xe/xe_guc_ct.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/gpu/drm/xe/xe_guc_ct.c b/drivers/gpu/drm/xe/xe_guc_ct.c
index ff6edf1b14f4..c21dc88099ab 100644
--- a/drivers/gpu/drm/xe/xe_guc_ct.c
+++ b/drivers/gpu/drm/xe/xe_guc_ct.c
@@ -1964,6 +1964,10 @@ static void ct_dead_capture(struct xe_guc_ct *ct, struct guc_ctb *ctb, u32 reaso
if (ctb)
ctb->info.broken = true;
+ /* Skip dumps during internal testing */
+ if (xe_fault_injection_in_progress(ct_to_xe(ct)))
+ return;
+
/* Ignore further errors after the first dump until a reset */
if (ct->dead.reported)
return;
--
2.47.1
^ permalink raw reply related [flat|nested] 24+ messages in thread* ✓ CI.Patch_applied: success for Suppress some dumps during fault injection tests
2025-05-12 16:19 [PATCH 0/2] Suppress some dumps during fault injection tests Michal Wajdeczko
2025-05-12 16:19 ` [PATCH 1/2] drm/xe: Introduce flag to indicate possible fault injection Michal Wajdeczko
2025-05-12 16:19 ` [PATCH 2/2] drm/xe/guc: Suppress Dead CTB Dump during fault injection tests Michal Wajdeczko
@ 2025-05-12 16:44 ` Patchwork
2025-05-12 16:44 ` ✓ CI.checkpatch: " Patchwork
` (14 subsequent siblings)
17 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-05-12 16:44 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Suppress some dumps during fault injection tests
URL : https://patchwork.freedesktop.org/series/148900/
State : success
== Summary ==
=== Applying kernel patches on branch 'drm-tip' with base: ===
Base commit: f3767db51c5d drm-tip: 2025y-05m-12d-14h-06m-28s UTC integration manifest
=== git am output follows ===
Applying: drm/xe: Introduce flag to indicate possible fault injection
Applying: drm/xe/guc: Suppress Dead CTB Dump during fault injection tests
^ permalink raw reply [flat|nested] 24+ messages in thread* ✓ CI.checkpatch: success for Suppress some dumps during fault injection tests
2025-05-12 16:19 [PATCH 0/2] Suppress some dumps during fault injection tests Michal Wajdeczko
` (2 preceding siblings ...)
2025-05-12 16:44 ` ✓ CI.Patch_applied: success for Suppress some dumps " Patchwork
@ 2025-05-12 16:44 ` Patchwork
2025-05-12 16:45 ` ✓ CI.KUnit: " Patchwork
` (13 subsequent siblings)
17 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-05-12 16:44 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Suppress some dumps during fault injection tests
URL : https://patchwork.freedesktop.org/series/148900/
State : success
== 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
202708c00696422fd217223bb679a353a5936e23
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit ce22d47570816154228a680d0d9641e3ce4378cc
Author: Michal Wajdeczko <michal.wajdeczko@intel.com>
Date: Mon May 12 18:19:47 2025 +0200
drm/xe/guc: Suppress Dead CTB Dump during fault injection tests
There is no point in generating a CTB dump due to a fault
injected by our tests, as it they will just stress our CI.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: John Harrison <john.c.harrison@intel.com>
+ /mt/dim checkpatch f3767db51c5d8bc3ba3f2b342332ab329044fe5b drm-intel
8019b5dbb82a drm/xe: Introduce flag to indicate possible fault injection
ce22d4757081 drm/xe/guc: Suppress Dead CTB Dump during fault injection tests
^ permalink raw reply [flat|nested] 24+ messages in thread* ✓ CI.KUnit: success for Suppress some dumps during fault injection tests
2025-05-12 16:19 [PATCH 0/2] Suppress some dumps during fault injection tests Michal Wajdeczko
` (3 preceding siblings ...)
2025-05-12 16:44 ` ✓ CI.checkpatch: " Patchwork
@ 2025-05-12 16:45 ` Patchwork
2025-05-12 16:55 ` ✗ CI.Build: failure " Patchwork
` (12 subsequent siblings)
17 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-05-12 16:45 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Suppress some dumps during fault injection tests
URL : https://patchwork.freedesktop.org/series/148900/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[16:44:11] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:44:16] 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
[16:44:42] Starting KUnit Kernel (1/1)...
[16:44:42] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:44:43] ================== guc_buf (11 subtests) ===================
[16:44:43] [PASSED] test_smallest
[16:44:43] [PASSED] test_largest
[16:44:43] [PASSED] test_granular
[16:44:43] [PASSED] test_unique
[16:44:43] [PASSED] test_overlap
[16:44:43] [PASSED] test_reusable
[16:44:43] [PASSED] test_too_big
[16:44:43] [PASSED] test_flush
[16:44:43] [PASSED] test_lookup
[16:44:43] [PASSED] test_data
[16:44:43] [PASSED] test_class
[16:44:43] ===================== [PASSED] guc_buf =====================
[16:44:43] =================== guc_dbm (7 subtests) ===================
[16:44:43] [PASSED] test_empty
[16:44:43] [PASSED] test_default
[16:44:43] ======================== test_size ========================
[16:44:43] [PASSED] 4
[16:44:43] [PASSED] 8
[16:44:43] [PASSED] 32
[16:44:43] [PASSED] 256
[16:44:43] ==================== [PASSED] test_size ====================
[16:44:43] ======================= test_reuse ========================
[16:44:43] [PASSED] 4
[16:44:43] [PASSED] 8
[16:44:43] [PASSED] 32
[16:44:43] [PASSED] 256
[16:44:43] =================== [PASSED] test_reuse ====================
[16:44:43] =================== test_range_overlap ====================
[16:44:43] [PASSED] 4
[16:44:43] [PASSED] 8
[16:44:43] [PASSED] 32
[16:44:43] [PASSED] 256
[16:44:43] =============== [PASSED] test_range_overlap ================
[16:44:43] =================== test_range_compact ====================
[16:44:43] [PASSED] 4
[16:44:43] [PASSED] 8
[16:44:43] [PASSED] 32
[16:44:43] [PASSED] 256
[16:44:43] =============== [PASSED] test_range_compact ================
[16:44:43] ==================== test_range_spare =====================
[16:44:43] [PASSED] 4
[16:44:43] [PASSED] 8
[16:44:43] [PASSED] 32
[16:44:43] [PASSED] 256
[16:44:43] ================ [PASSED] test_range_spare =================
[16:44:43] ===================== [PASSED] guc_dbm =====================
[16:44:43] =================== guc_idm (6 subtests) ===================
[16:44:43] [PASSED] bad_init
[16:44:43] [PASSED] no_init
[16:44:43] [PASSED] init_fini
[16:44:43] [PASSED] check_used
[16:44:43] [PASSED] check_quota
[16:44:43] [PASSED] check_all
[16:44:43] ===================== [PASSED] guc_idm =====================
[16:44:43] ================== no_relay (3 subtests) ===================
[16:44:43] [PASSED] xe_drops_guc2pf_if_not_ready
[16:44:43] [PASSED] xe_drops_guc2vf_if_not_ready
[16:44:43] [PASSED] xe_rejects_send_if_not_ready
[16:44:43] ==================== [PASSED] no_relay =====================
[16:44:43] ================== pf_relay (14 subtests) ==================
[16:44:43] [PASSED] pf_rejects_guc2pf_too_short
[16:44:43] [PASSED] pf_rejects_guc2pf_too_long
[16:44:43] [PASSED] pf_rejects_guc2pf_no_payload
[16:44:43] [PASSED] pf_fails_no_payload
[16:44:43] [PASSED] pf_fails_bad_origin
[16:44:43] [PASSED] pf_fails_bad_type
[16:44:43] [PASSED] pf_txn_reports_error
[16:44:43] [PASSED] pf_txn_sends_pf2guc
[16:44:43] [PASSED] pf_sends_pf2guc
[16:44:43] [SKIPPED] pf_loopback_nop
[16:44:43] [SKIPPED] pf_loopback_echo
[16:44:43] [SKIPPED] pf_loopback_fail
[16:44:43] [SKIPPED] pf_loopback_busy
[16:44:43] [SKIPPED] pf_loopback_retry
[16:44:43] ==================== [PASSED] pf_relay =====================
[16:44:43] ================== vf_relay (3 subtests) ===================
[16:44:43] [PASSED] vf_rejects_guc2vf_too_short
[16:44:43] [PASSED] vf_rejects_guc2vf_too_long
[16:44:43] [PASSED] vf_rejects_guc2vf_no_payload
[16:44:43] ==================== [PASSED] vf_relay =====================
[16:44:43] ================= pf_service (11 subtests) =================
[16:44:43] [PASSED] pf_negotiate_any
[16:44:43] [PASSED] pf_negotiate_base_match
[16:44:43] [PASSED] pf_negotiate_base_newer
[16:44:43] [PASSED] pf_negotiate_base_next
[16:44:43] [SKIPPED] pf_negotiate_base_older
[16:44:43] [PASSED] pf_negotiate_base_prev
[16:44:43] [PASSED] pf_negotiate_latest_match
[16:44:43] [PASSED] pf_negotiate_latest_newer
[16:44:43] [PASSED] pf_negotiate_latest_next
[16:44:43] [SKIPPED] pf_negotiate_latest_older
[16:44:43] [SKIPPED] pf_negotiate_latest_prev
[16:44:43] =================== [PASSED] pf_service ====================
[16:44:43] ===================== lmtt (1 subtest) =====================
[16:44:43] ======================== test_ops =========================
[16:44:43] [PASSED] 2-level
[16:44:43] [PASSED] multi-level
[16:44:43] ==================== [PASSED] test_ops =====================
[16:44:43] ====================== [PASSED] lmtt =======================
[16:44:43] =================== xe_mocs (2 subtests) ===================
[16:44:43] ================ xe_live_mocs_kernel_kunit ================
[16:44:43] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[16:44:43] ================ xe_live_mocs_reset_kunit =================
[16:44:43] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[16:44:43] ==================== [SKIPPED] xe_mocs =====================
[16:44:43] ================= xe_migrate (2 subtests) ==================
[16:44:43] ================= xe_migrate_sanity_kunit =================
[16:44:43] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[16:44:43] ================== xe_validate_ccs_kunit ==================
[16:44:43] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[16:44:43] =================== [SKIPPED] xe_migrate ===================
[16:44:43] ================== xe_dma_buf (1 subtest) ==================
[16:44:43] ==================== xe_dma_buf_kunit =====================
[16:44:43] ================ [SKIPPED] xe_dma_buf_kunit ================
[16:44:43] =================== [SKIPPED] xe_dma_buf ===================
[16:44:43] ================= xe_bo_shrink (1 subtest) =================
[16:44:43] =================== xe_bo_shrink_kunit ====================
[16:44:43] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[16:44:43] ================== [SKIPPED] xe_bo_shrink ==================
[16:44:43] ==================== xe_bo (2 subtests) ====================
[16:44:43] ================== xe_ccs_migrate_kunit ===================
[16:44:43] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[16:44:43] ==================== xe_bo_evict_kunit ====================
[16:44:43] =============== [SKIPPED] xe_bo_evict_kunit ================
[16:44:43] ===================== [SKIPPED] xe_bo ======================
[16:44:43] ==================== args (11 subtests) ====================
[16:44:43] [PASSED] count_args_test
[16:44:43] [PASSED] call_args_example
[16:44:43] [PASSED] call_args_test
[16:44:43] [PASSED] drop_first_arg_example
[16:44:43] [PASSED] drop_first_arg_test
[16:44:43] [PASSED] first_arg_example
[16:44:43] [PASSED] first_arg_test
[16:44:43] [PASSED] last_arg_example
[16:44:43] [PASSED] last_arg_test
[16:44:43] [PASSED] pick_arg_example
[16:44:43] [PASSED] sep_comma_example
[16:44:43] ====================== [PASSED] args =======================
[16:44:43] =================== xe_pci (2 subtests) ====================
[16:44:43] [PASSED] xe_gmdid_graphics_ip
[16:44:43] [PASSED] xe_gmdid_media_ip
[16:44:43] ===================== [PASSED] xe_pci ======================
[16:44:43] =================== xe_rtp (2 subtests) ====================
[16:44:43] =============== xe_rtp_process_to_sr_tests ================
[16:44:43] [PASSED] coalesce-same-reg
[16:44:43] [PASSED] no-match-no-add
[16:44:43] [PASSED] match-or
[16:44:43] [PASSED] match-or-xfail
[16:44:43] [PASSED] no-match-no-add-multiple-rules
[16:44:43] [PASSED] two-regs-two-entries
[16:44:43] [PASSED] clr-one-set-other
[16:44:43] [PASSED] set-field
[16:44:43] [PASSED] conflict-duplicate
[16:44:43] [PASSED] conflict-not-disjoint
stty: 'standard input': Inappropriate ioctl for device
[16:44:43] [PASSED] conflict-reg-type
[16:44:43] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[16:44:43] ================== xe_rtp_process_tests ===================
[16:44:43] [PASSED] active1
[16:44:43] [PASSED] active2
[16:44:43] [PASSED] active-inactive
[16:44:43] [PASSED] inactive-active
[16:44:43] [PASSED] inactive-1st_or_active-inactive
[16:44:43] [PASSED] inactive-2nd_or_active-inactive
[16:44:43] [PASSED] inactive-last_or_active-inactive
[16:44:43] [PASSED] inactive-no_or_active-inactive
[16:44:43] ============== [PASSED] xe_rtp_process_tests ===============
[16:44:43] ===================== [PASSED] xe_rtp ======================
[16:44:43] ==================== xe_wa (1 subtest) =====================
[16:44:43] ======================== xe_wa_gt =========================
[16:44:43] [PASSED] TIGERLAKE (B0)
[16:44:43] [PASSED] DG1 (A0)
[16:44:43] [PASSED] DG1 (B0)
[16:44:43] [PASSED] ALDERLAKE_S (A0)
[16:44:43] [PASSED] ALDERLAKE_S (B0)
[16:44:43] [PASSED] ALDERLAKE_S (C0)
[16:44:43] [PASSED] ALDERLAKE_S (D0)
[16:44:43] [PASSED] ALDERLAKE_P (A0)
[16:44:43] [PASSED] ALDERLAKE_P (B0)
[16:44:43] [PASSED] ALDERLAKE_P (C0)
[16:44:43] [PASSED] ALDERLAKE_S_RPLS (D0)
[16:44:43] [PASSED] ALDERLAKE_P_RPLU (E0)
[16:44:43] [PASSED] DG2_G10 (C0)
[16:44:43] [PASSED] DG2_G11 (B1)
[16:44:43] [PASSED] DG2_G12 (A1)
[16:44:43] [PASSED] METEORLAKE (g:A0, m:A0)
[16:44:43] [PASSED] METEORLAKE (g:A0, m:A0)
[16:44:43] [PASSED] METEORLAKE (g:A0, m:A0)
[16:44:43] [PASSED] LUNARLAKE (g:A0, m:A0)
[16:44:43] [PASSED] LUNARLAKE (g:B0, m:A0)
[16:44:43] [PASSED] BATTLEMAGE (g:A0, m:A1)
[16:44:43] ==================== [PASSED] xe_wa_gt =====================
[16:44:43] ====================== [PASSED] xe_wa ======================
[16:44:43] ============================================================
[16:44:43] Testing complete. Ran 133 tests: passed: 117, skipped: 16
[16:44:43] Elapsed time: 31.265s total, 4.313s configuring, 26.636s building, 0.300s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[16:44:43] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:44:45] 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
[16:45:06] Starting KUnit Kernel (1/1)...
[16:45:06] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:45:06] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[16:45:06] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[16:45:06] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[16:45:06] =========== drm_validate_clone_mode (2 subtests) ===========
[16:45:06] ============== drm_test_check_in_clone_mode ===============
[16:45:06] [PASSED] in_clone_mode
[16:45:06] [PASSED] not_in_clone_mode
[16:45:06] ========== [PASSED] drm_test_check_in_clone_mode ===========
[16:45:06] =============== drm_test_check_valid_clones ===============
[16:45:06] [PASSED] not_in_clone_mode
[16:45:06] [PASSED] valid_clone
[16:45:06] [PASSED] invalid_clone
[16:45:06] =========== [PASSED] drm_test_check_valid_clones ===========
[16:45:06] ============= [PASSED] drm_validate_clone_mode =============
[16:45:06] ============= drm_validate_modeset (1 subtest) =============
[16:45:06] [PASSED] drm_test_check_connector_changed_modeset
[16:45:06] ============== [PASSED] drm_validate_modeset ===============
[16:45:06] ====== drm_test_bridge_get_current_state (2 subtests) ======
[16:45:06] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[16:45:06] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[16:45:06] ======== [PASSED] drm_test_bridge_get_current_state ========
[16:45:06] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[16:45:06] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[16:45:06] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[16:45:06] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[16:45:06] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[16:45:06] ================== drm_buddy (7 subtests) ==================
[16:45:06] [PASSED] drm_test_buddy_alloc_limit
[16:45:06] [PASSED] drm_test_buddy_alloc_optimistic
[16:45:06] [PASSED] drm_test_buddy_alloc_pessimistic
[16:45:06] [PASSED] drm_test_buddy_alloc_pathological
[16:45:06] [PASSED] drm_test_buddy_alloc_contiguous
[16:45:06] [PASSED] drm_test_buddy_alloc_clear
[16:45:06] [PASSED] drm_test_buddy_alloc_range_bias
[16:45:06] ==================== [PASSED] drm_buddy ====================
[16:45:06] ============= drm_cmdline_parser (40 subtests) =============
[16:45:06] [PASSED] drm_test_cmdline_force_d_only
[16:45:06] [PASSED] drm_test_cmdline_force_D_only_dvi
[16:45:06] [PASSED] drm_test_cmdline_force_D_only_hdmi
[16:45:06] [PASSED] drm_test_cmdline_force_D_only_not_digital
[16:45:06] [PASSED] drm_test_cmdline_force_e_only
[16:45:06] [PASSED] drm_test_cmdline_res
[16:45:06] [PASSED] drm_test_cmdline_res_vesa
[16:45:06] [PASSED] drm_test_cmdline_res_vesa_rblank
[16:45:06] [PASSED] drm_test_cmdline_res_rblank
[16:45:06] [PASSED] drm_test_cmdline_res_bpp
[16:45:06] [PASSED] drm_test_cmdline_res_refresh
[16:45:06] [PASSED] drm_test_cmdline_res_bpp_refresh
[16:45:06] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[16:45:06] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[16:45:06] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[16:45:06] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[16:45:06] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[16:45:06] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[16:45:06] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[16:45:06] [PASSED] drm_test_cmdline_res_margins_force_on
[16:45:06] [PASSED] drm_test_cmdline_res_vesa_margins
[16:45:06] [PASSED] drm_test_cmdline_name
[16:45:06] [PASSED] drm_test_cmdline_name_bpp
[16:45:06] [PASSED] drm_test_cmdline_name_option
[16:45:06] [PASSED] drm_test_cmdline_name_bpp_option
[16:45:06] [PASSED] drm_test_cmdline_rotate_0
[16:45:06] [PASSED] drm_test_cmdline_rotate_90
[16:45:06] [PASSED] drm_test_cmdline_rotate_180
[16:45:06] [PASSED] drm_test_cmdline_rotate_270
[16:45:06] [PASSED] drm_test_cmdline_hmirror
[16:45:06] [PASSED] drm_test_cmdline_vmirror
[16:45:06] [PASSED] drm_test_cmdline_margin_options
[16:45:06] [PASSED] drm_test_cmdline_multiple_options
[16:45:06] [PASSED] drm_test_cmdline_bpp_extra_and_option
[16:45:06] [PASSED] drm_test_cmdline_extra_and_option
[16:45:06] [PASSED] drm_test_cmdline_freestanding_options
[16:45:06] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[16:45:06] [PASSED] drm_test_cmdline_panel_orientation
[16:45:06] ================ drm_test_cmdline_invalid =================
[16:45:06] [PASSED] margin_only
[16:45:06] [PASSED] interlace_only
[16:45:06] [PASSED] res_missing_x
[16:45:06] [PASSED] res_missing_y
[16:45:06] [PASSED] res_bad_y
[16:45:06] [PASSED] res_missing_y_bpp
[16:45:06] [PASSED] res_bad_bpp
[16:45:06] [PASSED] res_bad_refresh
[16:45:06] [PASSED] res_bpp_refresh_force_on_off
[16:45:06] [PASSED] res_invalid_mode
[16:45:06] [PASSED] res_bpp_wrong_place_mode
[16:45:06] [PASSED] name_bpp_refresh
[16:45:06] [PASSED] name_refresh
[16:45:06] [PASSED] name_refresh_wrong_mode
[16:45:06] [PASSED] name_refresh_invalid_mode
[16:45:06] [PASSED] rotate_multiple
[16:45:06] [PASSED] rotate_invalid_val
[16:45:06] [PASSED] rotate_truncated
[16:45:06] [PASSED] invalid_option
[16:45:06] [PASSED] invalid_tv_option
[16:45:06] [PASSED] truncated_tv_option
[16:45:06] ============ [PASSED] drm_test_cmdline_invalid =============
[16:45:06] =============== drm_test_cmdline_tv_options ===============
[16:45:06] [PASSED] NTSC
[16:45:06] [PASSED] NTSC_443
[16:45:06] [PASSED] NTSC_J
[16:45:06] [PASSED] PAL
[16:45:06] [PASSED] PAL_M
[16:45:06] [PASSED] PAL_N
[16:45:06] [PASSED] SECAM
[16:45:06] [PASSED] MONO_525
[16:45:06] [PASSED] MONO_625
[16:45:06] =========== [PASSED] drm_test_cmdline_tv_options ===========
[16:45:06] =============== [PASSED] drm_cmdline_parser ================
[16:45:06] ========== drmm_connector_hdmi_init (20 subtests) ==========
[16:45:06] [PASSED] drm_test_connector_hdmi_init_valid
[16:45:06] [PASSED] drm_test_connector_hdmi_init_bpc_8
[16:45:06] [PASSED] drm_test_connector_hdmi_init_bpc_10
[16:45:06] [PASSED] drm_test_connector_hdmi_init_bpc_12
[16:45:06] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[16:45:06] [PASSED] drm_test_connector_hdmi_init_bpc_null
[16:45:06] [PASSED] drm_test_connector_hdmi_init_formats_empty
[16:45:06] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[16:45:06] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[16:45:06] [PASSED] supported_formats=0x9 yuv420_allowed=1
[16:45:06] [PASSED] supported_formats=0x9 yuv420_allowed=0
[16:45:06] [PASSED] supported_formats=0x3 yuv420_allowed=1
[16:45:06] [PASSED] supported_formats=0x3 yuv420_allowed=0
[16:45:06] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[16:45:06] [PASSED] drm_test_connector_hdmi_init_null_ddc
[16:45:06] [PASSED] drm_test_connector_hdmi_init_null_product
[16:45:06] [PASSED] drm_test_connector_hdmi_init_null_vendor
[16:45:06] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[16:45:06] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[16:45:06] [PASSED] drm_test_connector_hdmi_init_product_valid
[16:45:06] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[16:45:06] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[16:45:06] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[16:45:06] ========= drm_test_connector_hdmi_init_type_valid =========
[16:45:06] [PASSED] HDMI-A
[16:45:06] [PASSED] HDMI-B
[16:45:06] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[16:45:06] ======== drm_test_connector_hdmi_init_type_invalid ========
[16:45:06] [PASSED] Unknown
[16:45:06] [PASSED] VGA
[16:45:06] [PASSED] DVI-I
[16:45:06] [PASSED] DVI-D
[16:45:06] [PASSED] DVI-A
[16:45:06] [PASSED] Composite
[16:45:06] [PASSED] SVIDEO
[16:45:06] [PASSED] LVDS
[16:45:06] [PASSED] Component
[16:45:06] [PASSED] DIN
[16:45:06] [PASSED] DP
[16:45:06] [PASSED] TV
[16:45:06] [PASSED] eDP
[16:45:06] [PASSED] Virtual
[16:45:06] [PASSED] DSI
[16:45:06] [PASSED] DPI
[16:45:06] [PASSED] Writeback
[16:45:06] [PASSED] SPI
[16:45:06] [PASSED] USB
[16:45:06] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[16:45:06] ============ [PASSED] drmm_connector_hdmi_init =============
[16:45:06] ============= drmm_connector_init (3 subtests) =============
[16:45:06] [PASSED] drm_test_drmm_connector_init
[16:45:06] [PASSED] drm_test_drmm_connector_init_null_ddc
[16:45:06] ========= drm_test_drmm_connector_init_type_valid =========
[16:45:06] [PASSED] Unknown
[16:45:06] [PASSED] VGA
[16:45:06] [PASSED] DVI-I
[16:45:06] [PASSED] DVI-D
[16:45:06] [PASSED] DVI-A
[16:45:06] [PASSED] Composite
[16:45:06] [PASSED] SVIDEO
[16:45:06] [PASSED] LVDS
[16:45:06] [PASSED] Component
[16:45:06] [PASSED] DIN
[16:45:06] [PASSED] DP
[16:45:06] [PASSED] HDMI-A
[16:45:06] [PASSED] HDMI-B
[16:45:06] [PASSED] TV
[16:45:06] [PASSED] eDP
[16:45:06] [PASSED] Virtual
[16:45:06] [PASSED] DSI
[16:45:06] [PASSED] DPI
[16:45:06] [PASSED] Writeback
[16:45:06] [PASSED] SPI
[16:45:06] [PASSED] USB
[16:45:06] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[16:45:06] =============== [PASSED] drmm_connector_init ===============
[16:45:06] ========= drm_connector_dynamic_init (6 subtests) ==========
[16:45:06] [PASSED] drm_test_drm_connector_dynamic_init
[16:45:06] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[16:45:06] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[16:45:06] [PASSED] drm_test_drm_connector_dynamic_init_properties
[16:45:06] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[16:45:06] [PASSED] Unknown
[16:45:06] [PASSED] VGA
[16:45:06] [PASSED] DVI-I
[16:45:06] [PASSED] DVI-D
[16:45:06] [PASSED] DVI-A
[16:45:06] [PASSED] Composite
[16:45:06] [PASSED] SVIDEO
[16:45:06] [PASSED] LVDS
[16:45:06] [PASSED] Component
[16:45:06] [PASSED] DIN
[16:45:06] [PASSED] DP
[16:45:06] [PASSED] HDMI-A
[16:45:06] [PASSED] HDMI-B
[16:45:06] [PASSED] TV
[16:45:06] [PASSED] eDP
[16:45:06] [PASSED] Virtual
[16:45:06] [PASSED] DSI
[16:45:06] [PASSED] DPI
[16:45:06] [PASSED] Writeback
[16:45:06] [PASSED] SPI
[16:45:06] [PASSED] USB
[16:45:06] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[16:45:06] ======== drm_test_drm_connector_dynamic_init_name =========
[16:45:06] [PASSED] Unknown
[16:45:06] [PASSED] VGA
[16:45:06] [PASSED] DVI-I
[16:45:06] [PASSED] DVI-D
[16:45:06] [PASSED] DVI-A
[16:45:06] [PASSED] Composite
[16:45:06] [PASSED] SVIDEO
[16:45:06] [PASSED] LVDS
[16:45:06] [PASSED] Component
[16:45:06] [PASSED] DIN
[16:45:06] [PASSED] DP
[16:45:06] [PASSED] HDMI-A
[16:45:06] [PASSED] HDMI-B
[16:45:06] [PASSED] TV
[16:45:06] [PASSED] eDP
[16:45:06] [PASSED] Virtual
[16:45:06] [PASSED] DSI
[16:45:06] [PASSED] DPI
[16:45:06] [PASSED] Writeback
[16:45:06] [PASSED] SPI
[16:45:06] [PASSED] USB
[16:45:06] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[16:45:06] =========== [PASSED] drm_connector_dynamic_init ============
[16:45:06] ==== drm_connector_dynamic_register_early (4 subtests) =====
[16:45:06] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[16:45:06] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[16:45:06] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[16:45:06] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[16:45:06] ====== [PASSED] drm_connector_dynamic_register_early =======
[16:45:06] ======= drm_connector_dynamic_register (7 subtests) ========
[16:45:06] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[16:45:06] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[16:45:06] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[16:45:06] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[16:45:06] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[16:45:06] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[16:45:06] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[16:45:06] ========= [PASSED] drm_connector_dynamic_register ==========
[16:45:06] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[16:45:06] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[16:45:06] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[16:45:06] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[16:45:06] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[16:45:06] ========== drm_test_get_tv_mode_from_name_valid ===========
[16:45:06] [PASSED] NTSC
[16:45:06] [PASSED] NTSC-443
[16:45:06] [PASSED] NTSC-J
[16:45:06] [PASSED] PAL
[16:45:06] [PASSED] PAL-M
[16:45:06] [PASSED] PAL-N
[16:45:06] [PASSED] SECAM
[16:45:06] [PASSED] Mono
[16:45:06] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[16:45:06] [PASSED] drm_test_get_tv_mode_from_name_truncated
[16:45:06] ============ [PASSED] drm_get_tv_mode_from_name ============
[16:45:06] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[16:45:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[16:45:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[16:45:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[16:45:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[16:45:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[16:45:06] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[16:45:06] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[16:45:06] [PASSED] VIC 96
[16:45:06] [PASSED] VIC 97
[16:45:06] [PASSED] VIC 101
[16:45:06] [PASSED] VIC 102
[16:45:06] [PASSED] VIC 106
[16:45:06] [PASSED] VIC 107
[16:45:06] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[16:45:06] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[16:45:06] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[16:45:06] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[16:45:06] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[16:45:06] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[16:45:06] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[16:45:06] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[16:45:06] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[16:45:06] [PASSED] Automatic
[16:45:06] [PASSED] Full
[16:45:06] [PASSED] Limited 16:235
[16:45:06] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[16:45:06] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[16:45:06] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[16:45:06] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[16:45:06] === drm_test_drm_hdmi_connector_get_output_format_name ====
[16:45:06] [PASSED] RGB
[16:45:06] [PASSED] YUV 4:2:0
[16:45:06] [PASSED] YUV 4:2:2
[16:45:06] [PASSED] YUV 4:4:4
[16:45:06] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[16:45:06] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[16:45:06] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[16:45:06] ============= drm_damage_helper (21 subtests) ==============
[16:45:06] [PASSED] drm_test_damage_iter_no_damage
[16:45:06] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[16:45:06] [PASSED] drm_test_damage_iter_no_damage_src_moved
[16:45:06] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[16:45:06] [PASSED] drm_test_damage_iter_no_damage_not_visible
[16:45:06] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[16:45:06] [PASSED] drm_test_damage_iter_no_damage_no_fb
[16:45:06] [PASSED] drm_test_damage_iter_simple_damage
[16:45:06] [PASSED] drm_test_damage_iter_single_damage
[16:45:06] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[16:45:06] [PASSED] drm_test_damage_iter_single_damage_outside_src
[16:45:06] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[16:45:06] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[16:45:06] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[16:45:06] [PASSED] drm_test_damage_iter_single_damage_src_moved
[16:45:06] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[16:45:06] [PASSED] drm_test_damage_iter_damage
[16:45:06] [PASSED] drm_test_damage_iter_damage_one_intersect
[16:45:06] [PASSED] drm_test_damage_iter_damage_one_outside
[16:45:06] [PASSED] drm_test_damage_iter_damage_src_moved
[16:45:06] [PASSED] drm_test_damage_iter_damage_not_visible
[16:45:06] ================ [PASSED] drm_damage_helper ================
[16:45:06] ============== drm_dp_mst_helper (3 subtests) ==============
[16:45:06] ============== drm_test_dp_mst_calc_pbn_mode ==============
[16:45:06] [PASSED] Clock 154000 BPP 30 DSC disabled
[16:45:06] [PASSED] Clock 234000 BPP 30 DSC disabled
[16:45:06] [PASSED] Clock 297000 BPP 24 DSC disabled
[16:45:06] [PASSED] Clock 332880 BPP 24 DSC enabled
[16:45:06] [PASSED] Clock 324540 BPP 24 DSC enabled
[16:45:06] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[16:45:06] ============== drm_test_dp_mst_calc_pbn_div ===============
[16:45:06] [PASSED] Link rate 2000000 lane count 4
[16:45:06] [PASSED] Link rate 2000000 lane count 2
[16:45:06] [PASSED] Link rate 2000000 lane count 1
[16:45:06] [PASSED] Link rate 1350000 lane count 4
[16:45:06] [PASSED] Link rate 1350000 lane count 2
[16:45:06] [PASSED] Link rate 1350000 lane count 1
[16:45:06] [PASSED] Link rate 1000000 lane count 4
[16:45:06] [PASSED] Link rate 1000000 lane count 2
[16:45:06] [PASSED] Link rate 1000000 lane count 1
[16:45:06] [PASSED] Link rate 810000 lane count 4
[16:45:06] [PASSED] Link rate 810000 lane count 2
[16:45:06] [PASSED] Link rate 810000 lane count 1
[16:45:06] [PASSED] Link rate 540000 lane count 4
[16:45:06] [PASSED] Link rate 540000 lane count 2
[16:45:06] [PASSED] Link rate 540000 lane count 1
[16:45:06] [PASSED] Link rate 270000 lane count 4
[16:45:06] [PASSED] Link rate 270000 lane count 2
[16:45:06] [PASSED] Link rate 270000 lane count 1
[16:45:06] [PASSED] Link rate 162000 lane count 4
[16:45:06] [PASSED] Link rate 162000 lane count 2
[16:45:06] [PASSED] Link rate 162000 lane count 1
[16:45:06] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[16:45:06] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[16:45:06] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[16:45:06] [PASSED] DP_POWER_UP_PHY with port number
[16:45:06] [PASSED] DP_POWER_DOWN_PHY with port number
[16:45:06] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[16:45:06] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[16:45:06] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[16:45:06] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[16:45:06] [PASSED] DP_QUERY_PAYLOAD with port number
[16:45:06] [PASSED] DP_QUERY_PAYLOAD with VCPI
[16:45:06] [PASSED] DP_REMOTE_DPCD_READ with port number
[16:45:06] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[16:45:06] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[16:45:06] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[16:45:06] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[16:45:06] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[16:45:06] [PASSED] DP_REMOTE_I2C_READ with port number
[16:45:06] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[16:45:06] [PASSED] DP_REMOTE_I2C_READ with transactions array
[16:45:06] [PASSED] DP_REMOTE_I2C_WRITE with port number
[16:45:06] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[16:45:06] [PASSED] DP_REMOTE_I2C_WRITE with data array
[16:45:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[16:45:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[16:45:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[16:45:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[16:45:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[16:45:06] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[16:45:06] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[16:45:06] ================ [PASSED] drm_dp_mst_helper ================
[16:45:06] ================== drm_exec (7 subtests) ===================
[16:45:06] [PASSED] sanitycheck
[16:45:06] [PASSED] test_lock
[16:45:06] [PASSED] test_lock_unlock
[16:45:06] [PASSED] test_duplicates
[16:45:06] [PASSED] test_prepare
[16:45:06] [PASSED] test_prepare_array
[16:45:06] [PASSED] test_multiple_loops
[16:45:06] ==================== [PASSED] drm_exec =====================
[16:45:06] =========== drm_format_helper_test (18 subtests) ===========
[16:45:06] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[16:45:06] [PASSED] single_pixel_source_buffer
[16:45:06] [PASSED] single_pixel_clip_rectangle
[16:45:06] [PASSED] well_known_colors
[16:45:06] [PASSED] destination_pitch
[16:45:06] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[16:45:06] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[16:45:06] [PASSED] single_pixel_source_buffer
[16:45:06] [PASSED] single_pixel_clip_rectangle
[16:45:06] [PASSED] well_known_colors
[16:45:06] [PASSED] destination_pitch
[16:45:06] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[16:45:06] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[16:45:06] [PASSED] single_pixel_source_buffer
[16:45:06] [PASSED] single_pixel_clip_rectangle
[16:45:06] [PASSED] well_known_colors
[16:45:06] [PASSED] destination_pitch
[16:45:06] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[16:45:06] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[16:45:06] [PASSED] single_pixel_source_buffer
[16:45:06] [PASSED] single_pixel_clip_rectangle
[16:45:06] [PASSED] well_known_colors
[16:45:06] [PASSED] destination_pitch
[16:45:06] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[16:45:06] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[16:45:06] [PASSED] single_pixel_source_buffer
[16:45:06] [PASSED] single_pixel_clip_rectangle
[16:45:06] [PASSED] well_known_colors
[16:45:06] [PASSED] destination_pitch
[16:45:06] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[16:45:06] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[16:45:06] [PASSED] single_pixel_source_buffer
[16:45:06] [PASSED] single_pixel_clip_rectangle
[16:45:06] [PASSED] well_known_colors
[16:45:06] [PASSED] destination_pitch
[16:45:06] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[16:45:06] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[16:45:06] [PASSED] single_pixel_source_buffer
[16:45:06] [PASSED] single_pixel_clip_rectangle
[16:45:06] [PASSED] well_known_colors
[16:45:06] [PASSED] destination_pitch
[16:45:06] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[16:45:06] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[16:45:06] [PASSED] single_pixel_source_buffer
[16:45:06] [PASSED] single_pixel_clip_rectangle
[16:45:06] [PASSED] well_known_colors
[16:45:06] [PASSED] destination_pitch
[16:45:06] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[16:45:06] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[16:45:06] [PASSED] single_pixel_source_buffer
[16:45:06] [PASSED] single_pixel_clip_rectangle
[16:45:06] [PASSED] well_known_colors
[16:45:06] [PASSED] destination_pitch
[16:45:06] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[16:45:06] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[16:45:06] [PASSED] single_pixel_source_buffer
[16:45:06] [PASSED] single_pixel_clip_rectangle
[16:45:06] [PASSED] well_known_colors
[16:45:06] [PASSED] destination_pitch
[16:45:06] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[16:45:06] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[16:45:06] [PASSED] single_pixel_source_buffer
[16:45:06] [PASSED] single_pixel_clip_rectangle
[16:45:06] [PASSED] well_known_colors
[16:45:06] [PASSED] destination_pitch
[16:45:06] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[16:45:06] ============== drm_test_fb_xrgb8888_to_mono ===============
[16:45:06] [PASSED] single_pixel_source_buffer
[16:45:06] [PASSED] single_pixel_clip_rectangle
[16:45:06] [PASSED] well_known_colors
[16:45:06] [PASSED] destination_pitch
[16:45:06] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[16:45:06] ==================== drm_test_fb_swab =====================
[16:45:06] [PASSED] single_pixel_source_buffer
[16:45:06] [PASSED] single_pixel_clip_rectangle
[16:45:06] [PASSED] well_known_colors
[16:45:06] [PASSED] destination_pitch
[16:45:06] ================ [PASSED] drm_test_fb_swab =================
[16:45:06] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[16:45:06] [PASSED] single_pixel_source_buffer
[16:45:06] [PASSED] single_pixel_clip_rectangle
[16:45:06] [PASSED] well_known_colors
[16:45:06] [PASSED] destination_pitch
[16:45:06] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[16:45:06] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[16:45:06] [PASSED] single_pixel_source_buffer
[16:45:06] [PASSED] single_pixel_clip_rectangle
[16:45:06] [PASSED] well_known_colors
[16:45:06] [PASSED] destination_pitch
[16:45:06] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[16:45:06] ================= drm_test_fb_clip_offset =================
[16:45:06] [PASSED] pass through
[16:45:06] [PASSED] horizontal offset
[16:45:06] [PASSED] vertical offset
[16:45:06] [PASSED] horizontal and vertical offset
[16:45:06] [PASSED] horizontal offset (custom pitch)
[16:45:06] [PASSED] vertical offset (custom pitch)
[16:45:06] [PASSED] horizontal and vertical offset (custom pitch)
[16:45:06] ============= [PASSED] drm_test_fb_clip_offset =============
[16:45:06] ============== drm_test_fb_build_fourcc_list ==============
[16:45:06] [PASSED] no native formats
[16:45:06] [PASSED] XRGB8888 as native format
[16:45:06] [PASSED] remove duplicates
[16:45:06] [PASSED] convert alpha formats
[16:45:06] [PASSED] random formats
[16:45:06] ========== [PASSED] drm_test_fb_build_fourcc_list ==========
[16:45:06] =================== drm_test_fb_memcpy ====================
[16:45:06] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[16:45:06] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[16:45:06] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[16:45:06] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[16:45:06] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[16:45:06] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[16:45:06] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[16:45:06] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[16:45:06] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[16:45:06] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[16:45:06] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[16:45:06] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[16:45:06] =============== [PASSED] drm_test_fb_memcpy ================
[16:45:06] ============= [PASSED] drm_format_helper_test ==============
[16:45:06] ================= drm_format (18 subtests) =================
[16:45:06] [PASSED] drm_test_format_block_width_invalid
[16:45:06] [PASSED] drm_test_format_block_width_one_plane
[16:45:06] [PASSED] drm_test_format_block_width_two_plane
[16:45:06] [PASSED] drm_test_format_block_width_three_plane
[16:45:06] [PASSED] drm_test_format_block_width_tiled
[16:45:06] [PASSED] drm_test_format_block_height_invalid
[16:45:06] [PASSED] drm_test_format_block_height_one_plane
[16:45:06] [PASSED] drm_test_format_block_height_two_plane
[16:45:06] [PASSED] drm_test_format_block_height_three_plane
[16:45:06] [PASSED] drm_test_format_block_height_tiled
[16:45:06] [PASSED] drm_test_format_min_pitch_invalid
[16:45:06] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[16:45:06] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[16:45:06] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[16:45:06] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[16:45:06] [PASSED] drm_test_format_min_pitch_two_plane
[16:45:06] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[16:45:06] [PASSED] drm_test_format_min_pitch_tiled
[16:45:06] =================== [PASSED] drm_format ====================
[16:45:06] ============== drm_framebuffer (10 subtests) ===============
[16:45:06] ========== drm_test_framebuffer_check_src_coords ==========
[16:45:06] [PASSED] Success: source fits into fb
[16:45:06] [PASSED] Fail: overflowing fb with x-axis coordinate
[16:45:06] [PASSED] Fail: overflowing fb with y-axis coordinate
[16:45:06] [PASSED] Fail: overflowing fb with source width
[16:45:06] [PASSED] Fail: overflowing fb with source height
[16:45:06] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[16:45:06] [PASSED] drm_test_framebuffer_cleanup
[16:45:06] =============== drm_test_framebuffer_create ===============
[16:45:06] [PASSED] ABGR8888 normal sizes
[16:45:06] [PASSED] ABGR8888 max sizes
[16:45:06] [PASSED] ABGR8888 pitch greater than min required
[16:45:06] [PASSED] ABGR8888 pitch less than min required
[16:45:06] [PASSED] ABGR8888 Invalid width
[16:45:06] [PASSED] ABGR8888 Invalid buffer handle
[16:45:06] [PASSED] No pixel format
[16:45:06] [PASSED] ABGR8888 Width 0
[16:45:06] [PASSED] ABGR8888 Height 0
[16:45:06] [PASSED] ABGR8888 Out of bound height * pitch combination
[16:45:06] [PASSED] ABGR8888 Large buffer offset
[16:45:06] [PASSED] ABGR8888 Buffer offset for inexistent plane
[16:45:06] [PASSED] ABGR8888 Invalid flag
[16:45:06] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[16:45:06] [PASSED] ABGR8888 Valid buffer modifier
[16:45:06] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[16:45:06] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[16:45:06] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[16:45:06] [PASSED] NV12 Normal sizes
[16:45:06] [PASSED] NV12 Max sizes
[16:45:06] [PASSED] NV12 Invalid pitch
[16:45:06] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[16:45:06] [PASSED] NV12 different modifier per-plane
[16:45:06] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[16:45:06] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[16:45:06] [PASSED] NV12 Modifier for inexistent plane
[16:45:06] [PASSED] NV12 Handle for inexistent plane
[16:45:06] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[16:45:06] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[16:45:06] [PASSED] YVU420 Normal sizes
[16:45:06] [PASSED] YVU420 Max sizes
[16:45:06] [PASSED] YVU420 Invalid pitch
[16:45:06] [PASSED] YVU420 Different pitches
[16:45:06] [PASSED] YVU420 Different buffer offsets/pitches
[16:45:06] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[16:45:06] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[16:45:06] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[16:45:06] [PASSED] YVU420 Valid modifier
[16:45:06] [PASSED] YVU420 Different modifiers per plane
[16:45:06] [PASSED] YVU420 Modifier for inexistent plane
[16:45:06] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[16:45:06] [PASSED] X0L2 Normal sizes
[16:45:06] [PASSED] X0L2 Max sizes
[16:45:06] [PASSED] X0L2 Invalid pitch
[16:45:06] [PASSED] X0L2 Pitch greater than minimum required
[16:45:06] [PASSED] X0L2 Handle for inexistent plane
[16:45:06] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[16:45:06] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[16:45:06] [PASSED] X0L2 Valid modifier
[16:45:06] [PASSED] X0L2 Modifier for inexistent plane
[16:45:06] =========== [PASSED] drm_test_framebuffer_create ===========
[16:45:06] [PASSED] drm_test_framebuffer_free
[16:45:06] [PASSED] drm_test_framebuffer_init
[16:45:06] [PASSED] drm_test_framebuffer_init_bad_format
[16:45:06] [PASSED] drm_test_framebuffer_init_dev_mismatch
[16:45:06] [PASSED] drm_test_framebuffer_lookup
[16:45:06] [PASSED] drm_test_framebuffer_lookup_inexistent
[16:45:06] [PASSED] drm_test_framebuffer_modifiers_not_supported
[16:45:06] ================= [PASSED] drm_framebuffer =================
[16:45:06] ================ drm_gem_shmem (8 subtests) ================
[16:45:06] [PASSED] drm_gem_shmem_test_obj_create
[16:45:06] [PASSED] drm_gem_shmem_test_obj_create_private
[16:45:06] [PASSED] drm_gem_shmem_test_pin_pages
[16:45:06] [PASSED] drm_gem_shmem_test_vmap
[16:45:06] [PASSED] drm_gem_shmem_test_get_pages_sgt
[16:45:06] [PASSED] drm_gem_shmem_test_get_sg_table
[16:45:06] [PASSED] drm_gem_shmem_test_madvise
[16:45:06] [PASSED] drm_gem_shmem_test_purge
[16:45:06] ================== [PASSED] drm_gem_shmem ==================
[16:45:06] === drm_atomic_helper_connector_hdmi_check (23 subtests) ===
[16:45:06] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[16:45:06] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[16:45:06] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[16:45:06] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[16:45:06] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[16:45:06] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[16:45:06] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[16:45:06] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[16:45:06] [PASSED] drm_test_check_disable_connector
[16:45:06] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[16:45:06] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback
[16:45:06] [PASSED] drm_test_check_max_tmds_rate_format_fallback
[16:45:06] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[16:45:06] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[16:45:06] [PASSED] drm_test_check_output_bpc_dvi
[16:45:06] [PASSED] drm_test_check_output_bpc_format_vic_1
[16:45:06] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[16:45:06] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[16:45:06] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[16:45:06] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[16:45:06] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[16:45:06] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[16:45:06] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[16:45:06] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[16:45:06] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[16:45:06] [PASSED] drm_test_check_broadcast_rgb_value
[16:45:06] [PASSED] drm_test_check_bpc_8_value
[16:45:06] [PASSED] drm_test_check_bpc_10_value
[16:45:06] [PASSED] drm_test_check_bpc_12_value
[16:45:06] [PASSED] drm_test_check_format_value
[16:45:06] [PASSED] drm_test_check_tmds_char_value
[16:45:06] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[16:45:06] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[16:45:06] [PASSED] drm_test_check_mode_valid
[16:45:06] [PASSED] drm_test_check_mode_valid_reject
[16:45:06] [PASSED] drm_test_check_mode_valid_reject_rate
[16:45:06] [PASSED] drm_test_check_mode_valid_reject_max_clock
[16:45:06] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[16:45:06] ================= drm_managed (2 subtests) =================
[16:45:06] [PASSED] drm_test_managed_release_action
[16:45:06] [PASSED] drm_test_managed_run_action
[16:45:06] =================== [PASSED] drm_managed ===================
[16:45:06] =================== drm_mm (6 subtests) ====================
[16:45:06] [PASSED] drm_test_mm_init
[16:45:06] [PASSED] drm_test_mm_debug
[16:45:06] [PASSED] drm_test_mm_align32
[16:45:06] [PASSED] drm_test_mm_align64
[16:45:06] [PASSED] drm_test_mm_lowest
[16:45:06] [PASSED] drm_test_mm_highest
[16:45:06] ===================== [PASSED] drm_mm ======================
[16:45:06] ============= drm_modes_analog_tv (5 subtests) =============
[16:45:06] [PASSED] drm_test_modes_analog_tv_mono_576i
[16:45:06] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[16:45:06] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[16:45:06] [PASSED] drm_test_modes_analog_tv_pal_576i
[16:45:06] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[16:45:06] =============== [PASSED] drm_modes_analog_tv ===============
[16:45:06] ============== drm_plane_helper (2 subtests) ===============
[16:45:06] =============== drm_test_check_plane_state ================
[16:45:06] [PASSED] clipping_simple
[16:45:06] [PASSED] clipping_rotate_reflect
[16:45:06] [PASSED] positioning_simple
[16:45:06] [PASSED] upscaling
[16:45:06] [PASSED] downscaling
[16:45:06] [PASSED] rounding1
[16:45:06] [PASSED] rounding2
[16:45:06] [PASSED] rounding3
[16:45:06] [PASSED] rounding4
[16:45:06] =========== [PASSED] drm_test_check_plane_state ============
[16:45:06] =========== drm_test_check_invalid_plane_state ============
[16:45:06] [PASSED] positioning_invalid
[16:45:06] [PASSED] upscaling_invalid
[16:45:06] [PASSED] downscaling_invalid
[16:45:06] ======= [PASSED] drm_test_check_invalid_plane_state ========
[16:45:06] ================ [PASSED] drm_plane_helper =================
[16:45:06] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[16:45:06] ====== drm_test_connector_helper_tv_get_modes_check =======
[16:45:06] [PASSED] None
[16:45:06] [PASSED] PAL
[16:45:06] [PASSED] NTSC
[16:45:06] [PASSED] Both, NTSC Default
[16:45:06] [PASSED] Both, PAL Default
[16:45:06] [PASSED] Both, NTSC Default, with PAL on command-line
[16:45:06] [PASSED] Both, PAL Default, with NTSC on command-line
[16:45:06] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[16:45:06] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[16:45:06] ================== drm_rect (9 subtests) ===================
[16:45:06] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[16:45:06] [PASSED] drm_test_rect_clip_scaled_not_clipped
[16:45:06] [PASSED] drm_test_rect_clip_scaled_clipped
[16:45:06] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[16:45:06] ================= drm_test_rect_intersect =================
[16:45:06] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[16:45:06] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[16:45:06] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[16:45:06] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[16:45:06] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[16:45:06] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[16:45:06] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[16:45:06] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[16:45:06] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[16:45:06] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[16:45:06] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[16:45:06] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[16:45:06] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[16:45:06] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[16:45:06] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[16:45:06] ============= [PASSED] drm_test_rect_intersect =============
[16:45:06] ================ drm_test_rect_calc_hscale ================
[16:45:06] [PASSED] normal use
[16:45:06] [PASSED] out of max range
[16:45:06] [PASSED] out of min range
[16:45:06] [PASSED] zero dst
[16:45:06] [PASSED] negative src
[16:45:06] [PASSED] negative dst
[16:45:06] ============ [PASSED] drm_test_rect_calc_hscale ============
[16:45:06] ================ drm_test_rect_calc_vscale ================
[16:45:06] [PASSED] normal use
[16:45:06] [PASSED] out of max range
[16:45:06] [PASSED] out of min range
[16:45:06] [PASSED] zero dst
[16:45:06] [PASSED] negative src
[16:45:06] [PASSED] negative dst
[16:45:06] ============ [PASSED] drm_test_rect_calc_vscale ============
[16:45:06] ================== drm_test_rect_rotate ===================
[16:45:06] [PASSED] reflect-x
[16:45:06] [PASSED] reflect-y
[16:45:06] [PASSED] rotate-0
[16:45:06] [PASSED] rotate-90
[16:45:06] [PASSED] rotate-180
[16:45:06] [PASSED] rotate-270
[16:45:06] ============== [PASSED] drm_test_rect_rotate ===============
[16:45:06] ================ drm_test_rect_rotate_inv =================
[16:45:06] [PASSED] reflect-x
[16:45:06] [PASSED] reflect-y
[16:45:06] [PASSED] rotate-0
[16:45:06] [PASSED] rotate-90
[16:45:06] [PASSED] rotate-180
[16:45:06] [PASSED] rotate-270
[16:45:06] ============ [PASSED] drm_test_rect_rotate_inv =============
stty: 'standard input': Inappropriate ioctl for device
[16:45:06] ==================== [PASSED] drm_rect =====================
[16:45:06] ============================================================
[16:45:06] Testing complete. Ran 608 tests: passed: 608
[16:45:06] Elapsed time: 23.282s total, 1.806s configuring, 21.308s building, 0.149s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[16:45:06] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[16:45:08] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[16:45:16] Starting KUnit Kernel (1/1)...
[16:45:16] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[16:45:16] ================= ttm_device (5 subtests) ==================
[16:45:16] [PASSED] ttm_device_init_basic
[16:45:16] [PASSED] ttm_device_init_multiple
[16:45:16] [PASSED] ttm_device_fini_basic
[16:45:16] [PASSED] ttm_device_init_no_vma_man
[16:45:16] ================== ttm_device_init_pools ==================
[16:45:16] [PASSED] No DMA allocations, no DMA32 required
[16:45:16] [PASSED] DMA allocations, DMA32 required
[16:45:16] [PASSED] No DMA allocations, DMA32 required
[16:45:16] [PASSED] DMA allocations, no DMA32 required
[16:45:16] ============== [PASSED] ttm_device_init_pools ==============
[16:45:16] =================== [PASSED] ttm_device ====================
[16:45:16] ================== ttm_pool (8 subtests) ===================
[16:45:16] ================== ttm_pool_alloc_basic ===================
[16:45:16] [PASSED] One page
[16:45:16] [PASSED] More than one page
[16:45:16] [PASSED] Above the allocation limit
[16:45:16] [PASSED] One page, with coherent DMA mappings enabled
[16:45:16] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[16:45:16] ============== [PASSED] ttm_pool_alloc_basic ===============
[16:45:16] ============== ttm_pool_alloc_basic_dma_addr ==============
[16:45:16] [PASSED] One page
[16:45:16] [PASSED] More than one page
[16:45:16] [PASSED] Above the allocation limit
[16:45:16] [PASSED] One page, with coherent DMA mappings enabled
[16:45:16] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[16:45:16] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[16:45:16] [PASSED] ttm_pool_alloc_order_caching_match
[16:45:16] [PASSED] ttm_pool_alloc_caching_mismatch
[16:45:16] [PASSED] ttm_pool_alloc_order_mismatch
[16:45:16] [PASSED] ttm_pool_free_dma_alloc
[16:45:16] [PASSED] ttm_pool_free_no_dma_alloc
[16:45:16] [PASSED] ttm_pool_fini_basic
[16:45:16] ==================== [PASSED] ttm_pool =====================
[16:45:16] ================ ttm_resource (8 subtests) =================
[16:45:16] ================= ttm_resource_init_basic =================
[16:45:16] [PASSED] Init resource in TTM_PL_SYSTEM
[16:45:16] [PASSED] Init resource in TTM_PL_VRAM
[16:45:16] [PASSED] Init resource in a private placement
[16:45:16] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[16:45:16] ============= [PASSED] ttm_resource_init_basic =============
[16:45:16] [PASSED] ttm_resource_init_pinned
[16:45:16] [PASSED] ttm_resource_fini_basic
[16:45:16] [PASSED] ttm_resource_manager_init_basic
[16:45:16] [PASSED] ttm_resource_manager_usage_basic
[16:45:16] [PASSED] ttm_resource_manager_set_used_basic
[16:45:16] [PASSED] ttm_sys_man_alloc_basic
[16:45:16] [PASSED] ttm_sys_man_free_basic
[16:45:16] ================== [PASSED] ttm_resource ===================
[16:45:16] =================== ttm_tt (15 subtests) ===================
[16:45:16] ==================== ttm_tt_init_basic ====================
[16:45:16] [PASSED] Page-aligned size
[16:45:16] [PASSED] Extra pages requested
[16:45:16] ================ [PASSED] ttm_tt_init_basic ================
[16:45:16] [PASSED] ttm_tt_init_misaligned
[16:45:16] [PASSED] ttm_tt_fini_basic
[16:45:16] [PASSED] ttm_tt_fini_sg
[16:45:16] [PASSED] ttm_tt_fini_shmem
[16:45:16] [PASSED] ttm_tt_create_basic
[16:45:16] [PASSED] ttm_tt_create_invalid_bo_type
[16:45:16] [PASSED] ttm_tt_create_ttm_exists
[16:45:16] [PASSED] ttm_tt_create_failed
[16:45:16] [PASSED] ttm_tt_destroy_basic
[16:45:16] [PASSED] ttm_tt_populate_null_ttm
[16:45:16] [PASSED] ttm_tt_populate_populated_ttm
[16:45:16] [PASSED] ttm_tt_unpopulate_basic
[16:45:16] [PASSED] ttm_tt_unpopulate_empty_ttm
[16:45:16] [PASSED] ttm_tt_swapin_basic
[16:45:16] ===================== [PASSED] ttm_tt ======================
[16:45:16] =================== ttm_bo (14 subtests) ===================
[16:45:16] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[16:45:16] [PASSED] Cannot be interrupted and sleeps
[16:45:16] [PASSED] Cannot be interrupted, locks straight away
[16:45:16] [PASSED] Can be interrupted, sleeps
[16:45:16] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[16:45:16] [PASSED] ttm_bo_reserve_locked_no_sleep
[16:45:16] [PASSED] ttm_bo_reserve_no_wait_ticket
[16:45:16] [PASSED] ttm_bo_reserve_double_resv
[16:45:16] [PASSED] ttm_bo_reserve_interrupted
[16:45:16] [PASSED] ttm_bo_reserve_deadlock
[16:45:16] [PASSED] ttm_bo_unreserve_basic
[16:45:16] [PASSED] ttm_bo_unreserve_pinned
[16:45:16] [PASSED] ttm_bo_unreserve_bulk
[16:45:16] [PASSED] ttm_bo_put_basic
[16:45:16] [PASSED] ttm_bo_put_shared_resv
[16:45:16] [PASSED] ttm_bo_pin_basic
[16:45:16] [PASSED] ttm_bo_pin_unpin_resource
[16:45:16] [PASSED] ttm_bo_multiple_pin_one_unpin
[16:45:16] ===================== [PASSED] ttm_bo ======================
[16:45:16] ============== ttm_bo_validate (22 subtests) ===============
[16:45:16] ============== ttm_bo_init_reserved_sys_man ===============
[16:45:16] [PASSED] Buffer object for userspace
[16:45:16] [PASSED] Kernel buffer object
[16:45:16] [PASSED] Shared buffer object
[16:45:16] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[16:45:16] ============== ttm_bo_init_reserved_mock_man ==============
[16:45:16] [PASSED] Buffer object for userspace
[16:45:16] [PASSED] Kernel buffer object
[16:45:16] [PASSED] Shared buffer object
[16:45:16] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[16:45:16] [PASSED] ttm_bo_init_reserved_resv
[16:45:16] ================== ttm_bo_validate_basic ==================
[16:45:16] [PASSED] Buffer object for userspace
[16:45:16] [PASSED] Kernel buffer object
[16:45:16] [PASSED] Shared buffer object
[16:45:16] ============== [PASSED] ttm_bo_validate_basic ==============
[16:45:16] [PASSED] ttm_bo_validate_invalid_placement
[16:45:16] ============= ttm_bo_validate_same_placement ==============
[16:45:16] [PASSED] System manager
[16:45:16] [PASSED] VRAM manager
[16:45:16] ========= [PASSED] ttm_bo_validate_same_placement ==========
[16:45:16] [PASSED] ttm_bo_validate_failed_alloc
[16:45:16] [PASSED] ttm_bo_validate_pinned
[16:45:16] [PASSED] ttm_bo_validate_busy_placement
[16:45:16] ================ ttm_bo_validate_multihop =================
[16:45:16] [PASSED] Buffer object for userspace
[16:45:16] [PASSED] Kernel buffer object
[16:45:16] [PASSED] Shared buffer object
[16:45:16] ============ [PASSED] ttm_bo_validate_multihop =============
[16:45:16] ========== ttm_bo_validate_no_placement_signaled ==========
[16:45:16] [PASSED] Buffer object in system domain, no page vector
[16:45:16] [PASSED] Buffer object in system domain with an existing page vector
[16:45:16] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[16:45:16] ======== ttm_bo_validate_no_placement_not_signaled ========
[16:45:16] [PASSED] Buffer object for userspace
[16:45:16] [PASSED] Kernel buffer object
[16:45:16] [PASSED] Shared buffer object
[16:45:16] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[16:45:16] [PASSED] ttm_bo_validate_move_fence_signaled
[16:45:16] ========= ttm_bo_validate_move_fence_not_signaled =========
[16:45:16] [PASSED] Waits for GPU
[16:45:16] [PASSED] Tries to lock straight away
[16:45:16] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[16:45:16] [PASSED] ttm_bo_validate_swapout
[16:45:16] [PASSED] ttm_bo_validate_happy_evict
[16:45:16] [PASSED] ttm_bo_validate_all_pinned_evict
[16:45:16] [PASSED] ttm_bo_validate_allowed_only_evict
[16:45:16] [PASSED] ttm_bo_validate_deleted_evict
[16:45:16] [PASSED] ttm_bo_validate_busy_domain_evict
[16:45:16] [PASSED] ttm_bo_validate_evict_gutting
[16:45:16] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[16:45:16] ================= [PASSED] ttm_bo_validate =================
[16:45:16] ============================================================
[16:45:16] Testing complete. Ran 102 tests: passed: 102
[16:45:16] Elapsed time: 10.241s total, 1.784s configuring, 7.840s building, 0.525s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 24+ messages in thread* ✗ CI.Build: failure for Suppress some dumps during fault injection tests
2025-05-12 16:19 [PATCH 0/2] Suppress some dumps during fault injection tests Michal Wajdeczko
` (4 preceding siblings ...)
2025-05-12 16:45 ` ✓ CI.KUnit: " Patchwork
@ 2025-05-12 16:55 ` Patchwork
2025-05-13 11:09 ` ✓ CI.Patch_applied: success " Patchwork
` (11 subsequent siblings)
17 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-05-12 16:55 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Suppress some dumps during fault injection tests
URL : https://patchwork.freedesktop.org/series/148900/
State : failure
== Summary ==
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/bridge/netfilter/ebt_mark.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/bridge/netfilter/ebt_stp.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/bridge/netfilter/ebt_vlan.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/bridge/netfilter/ebt_arpreply.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/bridge/netfilter/ebt_dnat.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/bridge/netfilter/ebt_mark.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/bridge/netfilter/ebt_redirect.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/bridge/netfilter/ebt_snat.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/bridge/netfilter/ebt_dnat.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/bridge/netfilter/ebt_log.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/bridge/netfilter/ebt_redirect.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/bridge/netfilter/ebt_snat.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/bridge/netfilter/ebt_nflog.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/bridge/bridge.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/bridge/netfilter/ebt_log.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/bridge/br_netfilter.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/bridge/netfilter/ebt_nflog.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/sunrpc/sunrpc.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/sunrpc/auth_gss/auth_rpcgss.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/sunrpc/auth_gss/rpcsec_gss_krb5.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/bridge/br_netfilter.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/kcm/kcm.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/l2tp/l2tp_core.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/bridge/bridge.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/sunrpc/auth_gss/rpcsec_gss_krb5.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/l2tp/l2tp_ip.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/sunrpc/auth_gss/auth_rpcgss.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/kcm/kcm.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/l2tp/l2tp_netlink.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/l2tp/l2tp_core.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/l2tp/l2tp_eth.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/l2tp/l2tp_debugfs.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/l2tp/l2tp_ip.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/sunrpc/sunrpc.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/l2tp/l2tp_netlink.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/l2tp/l2tp_ip6.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/l2tp/l2tp_eth.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/l2tp/l2tp_debugfs.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/dccp/dccp.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/dccp/dccp_ipv4.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/l2tp/l2tp_ip6.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/dccp/dccp_ipv6.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/dccp/dccp.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/dccp/dccp_ipv4.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/dccp/dccp_diag.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/sctp/sctp.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/dccp/dccp_ipv6.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/sctp/sctp_diag.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/rds/rds.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/dccp/dccp_diag.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/rds/rds_tcp.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/9p/9pnet.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/sctp/sctp_diag.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/9p/9pnet_fd.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/9p/9pnet_xen.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/rds/rds.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/sctp/sctp.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/rds/rds_tcp.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/9p/9pnet.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/9p/9pnet_fd.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/9p/9pnet_xen.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/9p/9pnet_virtio.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/psample/psample.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/vmw_vsock/vsock.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/vmw_vsock/vsock_diag.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/vmw_vsock/vmw_vsock_vmci_transport.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/9p/9pnet_virtio.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/psample/psample.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/vmw_vsock/vsock.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/vmw_vsock/vsock_diag.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/vmw_vsock/vmw_vsock_vmci_transport.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/vmw_vsock/vmw_vsock_virtio_transport.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/vmw_vsock/vmw_vsock_virtio_transport_common.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/vmw_vsock/hv_sock.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/vmw_vsock/vmw_vsock_virtio_transport.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/vmw_vsock/vmw_vsock_virtio_transport_common.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/vmw_vsock/hv_sock.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/vmw_vsock/vsock_loopback.ko
INSTALL debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/virt/lib/irqbypass.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/net/vmw_vsock/vsock_loopback.ko
STRIP debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+/kernel/virt/lib/irqbypass.ko
DEPMOD debian/linux-image-6.15.0-rc6-xe+/lib/modules/6.15.0-rc6-xe+
dpkg-deb: building package 'linux-headers-6.15.0-rc6-xe+' in '../linux-headers-6.15.0-rc6-xe+_6.15.0~rc6-gce22d4757081-2_amd64.deb'.
dpkg-deb: building package 'linux-image-6.15.0-rc6-xe+' in '../linux-image-6.15.0-rc6-xe+_6.15.0~rc6-gce22d4757081-2_amd64.deb'.
dpkg-deb: building package 'linux-image-6.15.0-rc6-xe+-dbg' in '../linux-image-6.15.0-rc6-xe+-dbg_6.15.0~rc6-gce22d4757081-2_amd64.deb'.
dpkg-genbuildinfo --build=binary -O../linux-upstream_6.15.0~rc6-gce22d4757081-2_amd64.buildinfo
dpkg-genchanges --build=binary -O../linux-upstream_6.15.0~rc6-gce22d4757081-2_amd64.changes
dpkg-genchanges: info: binary-only upload (no source code included)
dpkg-source --after-build .
dpkg-buildpackage: info: binary-only upload (no source included)
make[1]: Leaving directory '/kernel/build64-debug'
+ mkdir -p kernel-debug/ kernel-debug/deb
+ mv kernel-debug.tar.gz kernel-debug/
+ mv linux-headers-6.15.0-rc6-xe+_6.15.0~rc6-gce22d4757081-2_amd64.deb linux-image-6.15.0-rc6-xe+_6.15.0~rc6-gce22d4757081-2_amd64.deb linux-image-6.15.0-rc6-xe+-dbg_6.15.0~rc6-gce22d4757081-2_amd64.deb linux-libc-dev_6.15.0~rc6-gce22d4757081-2_amd64.deb kernel-debug/deb/
+ sync
+ echo '[+] Finished building and packaging '\''debug'\''!'
+ cleanup
[+] Finished building and packaging 'debug'!
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 24+ messages in thread* ✓ CI.Patch_applied: success for Suppress some dumps during fault injection tests
2025-05-12 16:19 [PATCH 0/2] Suppress some dumps during fault injection tests Michal Wajdeczko
` (5 preceding siblings ...)
2025-05-12 16:55 ` ✗ CI.Build: failure " Patchwork
@ 2025-05-13 11:09 ` Patchwork
2025-05-13 11:09 ` ✓ CI.checkpatch: " Patchwork
` (10 subsequent siblings)
17 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-05-13 11:09 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Suppress some dumps during fault injection tests
URL : https://patchwork.freedesktop.org/series/148900/
State : success
== Summary ==
=== Applying kernel patches on branch 'drm-tip' with base: ===
Base commit: c9de1544553b drm-tip: 2025y-05m-13d-08h-26m-34s UTC integration manifest
=== git am output follows ===
Applying: drm/xe: Introduce flag to indicate possible fault injection
Applying: drm/xe/guc: Suppress Dead CTB Dump during fault injection tests
^ permalink raw reply [flat|nested] 24+ messages in thread* ✓ CI.checkpatch: success for Suppress some dumps during fault injection tests
2025-05-12 16:19 [PATCH 0/2] Suppress some dumps during fault injection tests Michal Wajdeczko
` (6 preceding siblings ...)
2025-05-13 11:09 ` ✓ CI.Patch_applied: success " Patchwork
@ 2025-05-13 11:09 ` Patchwork
2025-05-13 11:10 ` ✓ CI.KUnit: " Patchwork
` (9 subsequent siblings)
17 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-05-13 11:09 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Suppress some dumps during fault injection tests
URL : https://patchwork.freedesktop.org/series/148900/
State : success
== 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
202708c00696422fd217223bb679a353a5936e23
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit db974883fa5ac2303b0553db1a274995ab3ad966
Author: Michal Wajdeczko <michal.wajdeczko@intel.com>
Date: Mon May 12 18:19:47 2025 +0200
drm/xe/guc: Suppress Dead CTB Dump during fault injection tests
There is no point in generating a CTB dump due to a fault
injected by our tests, as it they will just stress our CI.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: John Harrison <john.c.harrison@intel.com>
+ /mt/dim checkpatch c9de1544553b1d6112ccc32977b6d56881cedcea drm-intel
703167d664bd drm/xe: Introduce flag to indicate possible fault injection
db974883fa5a drm/xe/guc: Suppress Dead CTB Dump during fault injection tests
^ permalink raw reply [flat|nested] 24+ messages in thread* ✓ CI.KUnit: success for Suppress some dumps during fault injection tests
2025-05-12 16:19 [PATCH 0/2] Suppress some dumps during fault injection tests Michal Wajdeczko
` (7 preceding siblings ...)
2025-05-13 11:09 ` ✓ CI.checkpatch: " Patchwork
@ 2025-05-13 11:10 ` Patchwork
2025-05-13 11:18 ` ✓ CI.Build: " Patchwork
` (8 subsequent siblings)
17 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-05-13 11:10 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Suppress some dumps during fault injection tests
URL : https://patchwork.freedesktop.org/series/148900/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[11:09:26] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:09:30] 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
[11:09:57] Starting KUnit Kernel (1/1)...
[11:09:57] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:09:57] ================== guc_buf (11 subtests) ===================
[11:09:57] [PASSED] test_smallest
[11:09:57] [PASSED] test_largest
[11:09:57] [PASSED] test_granular
[11:09:57] [PASSED] test_unique
[11:09:57] [PASSED] test_overlap
[11:09:57] [PASSED] test_reusable
[11:09:57] [PASSED] test_too_big
[11:09:57] [PASSED] test_flush
[11:09:57] [PASSED] test_lookup
[11:09:57] [PASSED] test_data
[11:09:57] [PASSED] test_class
[11:09:57] ===================== [PASSED] guc_buf =====================
[11:09:57] =================== guc_dbm (7 subtests) ===================
[11:09:57] [PASSED] test_empty
[11:09:57] [PASSED] test_default
[11:09:57] ======================== test_size ========================
[11:09:57] [PASSED] 4
[11:09:57] [PASSED] 8
[11:09:57] [PASSED] 32
[11:09:57] [PASSED] 256
[11:09:57] ==================== [PASSED] test_size ====================
[11:09:57] ======================= test_reuse ========================
[11:09:57] [PASSED] 4
[11:09:57] [PASSED] 8
[11:09:57] [PASSED] 32
[11:09:57] [PASSED] 256
[11:09:57] =================== [PASSED] test_reuse ====================
[11:09:57] =================== test_range_overlap ====================
[11:09:57] [PASSED] 4
[11:09:57] [PASSED] 8
[11:09:57] [PASSED] 32
[11:09:57] [PASSED] 256
[11:09:57] =============== [PASSED] test_range_overlap ================
[11:09:57] =================== test_range_compact ====================
[11:09:57] [PASSED] 4
[11:09:57] [PASSED] 8
[11:09:57] [PASSED] 32
[11:09:57] [PASSED] 256
[11:09:57] =============== [PASSED] test_range_compact ================
[11:09:57] ==================== test_range_spare =====================
[11:09:57] [PASSED] 4
[11:09:57] [PASSED] 8
[11:09:57] [PASSED] 32
[11:09:57] [PASSED] 256
[11:09:57] ================ [PASSED] test_range_spare =================
[11:09:57] ===================== [PASSED] guc_dbm =====================
[11:09:57] =================== guc_idm (6 subtests) ===================
[11:09:57] [PASSED] bad_init
[11:09:57] [PASSED] no_init
[11:09:57] [PASSED] init_fini
[11:09:57] [PASSED] check_used
[11:09:57] [PASSED] check_quota
[11:09:57] [PASSED] check_all
[11:09:57] ===================== [PASSED] guc_idm =====================
[11:09:57] ================== no_relay (3 subtests) ===================
[11:09:57] [PASSED] xe_drops_guc2pf_if_not_ready
[11:09:57] [PASSED] xe_drops_guc2vf_if_not_ready
[11:09:57] [PASSED] xe_rejects_send_if_not_ready
[11:09:57] ==================== [PASSED] no_relay =====================
[11:09:57] ================== pf_relay (14 subtests) ==================
[11:09:57] [PASSED] pf_rejects_guc2pf_too_short
[11:09:57] [PASSED] pf_rejects_guc2pf_too_long
[11:09:57] [PASSED] pf_rejects_guc2pf_no_payload
[11:09:57] [PASSED] pf_fails_no_payload
[11:09:57] [PASSED] pf_fails_bad_origin
[11:09:57] [PASSED] pf_fails_bad_type
[11:09:57] [PASSED] pf_txn_reports_error
[11:09:57] [PASSED] pf_txn_sends_pf2guc
[11:09:57] [PASSED] pf_sends_pf2guc
[11:09:57] [SKIPPED] pf_loopback_nop
[11:09:57] [SKIPPED] pf_loopback_echo
[11:09:57] [SKIPPED] pf_loopback_fail
[11:09:57] [SKIPPED] pf_loopback_busy
[11:09:57] [SKIPPED] pf_loopback_retry
[11:09:57] ==================== [PASSED] pf_relay =====================
[11:09:57] ================== vf_relay (3 subtests) ===================
[11:09:57] [PASSED] vf_rejects_guc2vf_too_short
[11:09:57] [PASSED] vf_rejects_guc2vf_too_long
[11:09:57] [PASSED] vf_rejects_guc2vf_no_payload
[11:09:57] ==================== [PASSED] vf_relay =====================
[11:09:57] ================= pf_service (11 subtests) =================
[11:09:57] [PASSED] pf_negotiate_any
[11:09:57] [PASSED] pf_negotiate_base_match
[11:09:57] [PASSED] pf_negotiate_base_newer
[11:09:57] [PASSED] pf_negotiate_base_next
[11:09:57] [SKIPPED] pf_negotiate_base_older
[11:09:57] [PASSED] pf_negotiate_base_prev
[11:09:57] [PASSED] pf_negotiate_latest_match
[11:09:57] [PASSED] pf_negotiate_latest_newer
[11:09:57] [PASSED] pf_negotiate_latest_next
[11:09:57] [SKIPPED] pf_negotiate_latest_older
[11:09:57] [SKIPPED] pf_negotiate_latest_prev
[11:09:57] =================== [PASSED] pf_service ====================
[11:09:57] ===================== lmtt (1 subtest) =====================
[11:09:57] ======================== test_ops =========================
[11:09:57] [PASSED] 2-level
[11:09:57] [PASSED] multi-level
[11:09:57] ==================== [PASSED] test_ops =====================
[11:09:57] ====================== [PASSED] lmtt =======================
[11:09:57] =================== xe_mocs (2 subtests) ===================
[11:09:57] ================ xe_live_mocs_kernel_kunit ================
[11:09:57] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[11:09:57] ================ xe_live_mocs_reset_kunit =================
[11:09:57] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[11:09:57] ==================== [SKIPPED] xe_mocs =====================
[11:09:57] ================= xe_migrate (2 subtests) ==================
[11:09:57] ================= xe_migrate_sanity_kunit =================
[11:09:57] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[11:09:57] ================== xe_validate_ccs_kunit ==================
[11:09:57] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[11:09:57] =================== [SKIPPED] xe_migrate ===================
[11:09:57] ================== xe_dma_buf (1 subtest) ==================
[11:09:57] ==================== xe_dma_buf_kunit =====================
[11:09:57] ================ [SKIPPED] xe_dma_buf_kunit ================
[11:09:57] =================== [SKIPPED] xe_dma_buf ===================
[11:09:57] ================= xe_bo_shrink (1 subtest) =================
[11:09:57] =================== xe_bo_shrink_kunit ====================
[11:09:57] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[11:09:57] ================== [SKIPPED] xe_bo_shrink ==================
[11:09:57] ==================== xe_bo (2 subtests) ====================
[11:09:57] ================== xe_ccs_migrate_kunit ===================
[11:09:57] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[11:09:57] ==================== xe_bo_evict_kunit ====================
[11:09:57] =============== [SKIPPED] xe_bo_evict_kunit ================
[11:09:57] ===================== [SKIPPED] xe_bo ======================
[11:09:57] ==================== args (11 subtests) ====================
[11:09:57] [PASSED] count_args_test
[11:09:57] [PASSED] call_args_example
[11:09:57] [PASSED] call_args_test
[11:09:57] [PASSED] drop_first_arg_example
[11:09:57] [PASSED] drop_first_arg_test
[11:09:57] [PASSED] first_arg_example
[11:09:57] [PASSED] first_arg_test
[11:09:57] [PASSED] last_arg_example
[11:09:57] [PASSED] last_arg_test
[11:09:57] [PASSED] pick_arg_example
[11:09:57] [PASSED] sep_comma_example
[11:09:57] ====================== [PASSED] args =======================
[11:09:57] =================== xe_pci (2 subtests) ====================
[11:09:57] [PASSED] xe_gmdid_graphics_ip
[11:09:57] [PASSED] xe_gmdid_media_ip
[11:09:57] ===================== [PASSED] xe_pci ======================
[11:09:57] =================== xe_rtp (2 subtests) ====================
[11:09:57] =============== xe_rtp_process_to_sr_tests ================
[11:09:57] [PASSED] coalesce-same-reg
[11:09:57] [PASSED] no-match-no-add
[11:09:57] [PASSED] match-or
[11:09:57] [PASSED] match-or-xfail
[11:09:57] [PASSED] no-match-no-add-multiple-rules
[11:09:57] [PASSED] two-regs-two-entries
[11:09:57] [PASSED] clr-one-set-other
[11:09:57] [PASSED] set-field
[11:09:57] [PASSED] conflict-duplicate
[11:09:57] [PASSED] conflict-not-disjoint
stty: 'standard input': Inappropriate ioctl for device
[11:09:57] [PASSED] conflict-reg-type
[11:09:57] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[11:09:57] ================== xe_rtp_process_tests ===================
[11:09:57] [PASSED] active1
[11:09:57] [PASSED] active2
[11:09:57] [PASSED] active-inactive
[11:09:57] [PASSED] inactive-active
[11:09:57] [PASSED] inactive-1st_or_active-inactive
[11:09:57] [PASSED] inactive-2nd_or_active-inactive
[11:09:57] [PASSED] inactive-last_or_active-inactive
[11:09:57] [PASSED] inactive-no_or_active-inactive
[11:09:57] ============== [PASSED] xe_rtp_process_tests ===============
[11:09:57] ===================== [PASSED] xe_rtp ======================
[11:09:57] ==================== xe_wa (1 subtest) =====================
[11:09:57] ======================== xe_wa_gt =========================
[11:09:57] [PASSED] TIGERLAKE (B0)
[11:09:57] [PASSED] DG1 (A0)
[11:09:57] [PASSED] DG1 (B0)
[11:09:57] [PASSED] ALDERLAKE_S (A0)
[11:09:57] [PASSED] ALDERLAKE_S (B0)
[11:09:57] [PASSED] ALDERLAKE_S (C0)
[11:09:57] [PASSED] ALDERLAKE_S (D0)
[11:09:57] [PASSED] ALDERLAKE_P (A0)
[11:09:57] [PASSED] ALDERLAKE_P (B0)
[11:09:57] [PASSED] ALDERLAKE_P (C0)
[11:09:57] [PASSED] ALDERLAKE_S_RPLS (D0)
[11:09:57] [PASSED] ALDERLAKE_P_RPLU (E0)
[11:09:57] [PASSED] DG2_G10 (C0)
[11:09:57] [PASSED] DG2_G11 (B1)
[11:09:57] [PASSED] DG2_G12 (A1)
[11:09:57] [PASSED] METEORLAKE (g:A0, m:A0)
[11:09:57] [PASSED] METEORLAKE (g:A0, m:A0)
[11:09:57] [PASSED] METEORLAKE (g:A0, m:A0)
[11:09:57] [PASSED] LUNARLAKE (g:A0, m:A0)
[11:09:57] [PASSED] LUNARLAKE (g:B0, m:A0)
[11:09:57] [PASSED] BATTLEMAGE (g:A0, m:A1)
[11:09:57] ==================== [PASSED] xe_wa_gt =====================
[11:09:57] ====================== [PASSED] xe_wa ======================
[11:09:57] ============================================================
[11:09:57] Testing complete. Ran 133 tests: passed: 117, skipped: 16
[11:09:57] Elapsed time: 31.156s total, 4.234s configuring, 26.606s building, 0.293s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[11:09:57] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:09:59] 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
[11:10:21] Starting KUnit Kernel (1/1)...
[11:10:21] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:10:21] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[11:10:21] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[11:10:21] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[11:10:21] =========== drm_validate_clone_mode (2 subtests) ===========
[11:10:21] ============== drm_test_check_in_clone_mode ===============
[11:10:21] [PASSED] in_clone_mode
[11:10:21] [PASSED] not_in_clone_mode
[11:10:21] ========== [PASSED] drm_test_check_in_clone_mode ===========
[11:10:21] =============== drm_test_check_valid_clones ===============
[11:10:21] [PASSED] not_in_clone_mode
[11:10:21] [PASSED] valid_clone
[11:10:21] [PASSED] invalid_clone
[11:10:21] =========== [PASSED] drm_test_check_valid_clones ===========
[11:10:21] ============= [PASSED] drm_validate_clone_mode =============
[11:10:21] ============= drm_validate_modeset (1 subtest) =============
[11:10:21] [PASSED] drm_test_check_connector_changed_modeset
[11:10:21] ============== [PASSED] drm_validate_modeset ===============
[11:10:21] ====== drm_test_bridge_get_current_state (2 subtests) ======
[11:10:21] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[11:10:21] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[11:10:21] ======== [PASSED] drm_test_bridge_get_current_state ========
[11:10:21] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[11:10:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[11:10:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[11:10:21] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[11:10:21] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[11:10:21] ================== drm_buddy (7 subtests) ==================
[11:10:21] [PASSED] drm_test_buddy_alloc_limit
[11:10:21] [PASSED] drm_test_buddy_alloc_optimistic
[11:10:21] [PASSED] drm_test_buddy_alloc_pessimistic
[11:10:21] [PASSED] drm_test_buddy_alloc_pathological
[11:10:21] [PASSED] drm_test_buddy_alloc_contiguous
[11:10:21] [PASSED] drm_test_buddy_alloc_clear
[11:10:21] [PASSED] drm_test_buddy_alloc_range_bias
[11:10:21] ==================== [PASSED] drm_buddy ====================
[11:10:21] ============= drm_cmdline_parser (40 subtests) =============
[11:10:21] [PASSED] drm_test_cmdline_force_d_only
[11:10:21] [PASSED] drm_test_cmdline_force_D_only_dvi
[11:10:21] [PASSED] drm_test_cmdline_force_D_only_hdmi
[11:10:21] [PASSED] drm_test_cmdline_force_D_only_not_digital
[11:10:21] [PASSED] drm_test_cmdline_force_e_only
[11:10:21] [PASSED] drm_test_cmdline_res
[11:10:21] [PASSED] drm_test_cmdline_res_vesa
[11:10:21] [PASSED] drm_test_cmdline_res_vesa_rblank
[11:10:21] [PASSED] drm_test_cmdline_res_rblank
[11:10:21] [PASSED] drm_test_cmdline_res_bpp
[11:10:21] [PASSED] drm_test_cmdline_res_refresh
[11:10:21] [PASSED] drm_test_cmdline_res_bpp_refresh
[11:10:21] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[11:10:21] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[11:10:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[11:10:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[11:10:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[11:10:21] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[11:10:21] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[11:10:21] [PASSED] drm_test_cmdline_res_margins_force_on
[11:10:21] [PASSED] drm_test_cmdline_res_vesa_margins
[11:10:21] [PASSED] drm_test_cmdline_name
[11:10:21] [PASSED] drm_test_cmdline_name_bpp
[11:10:21] [PASSED] drm_test_cmdline_name_option
[11:10:21] [PASSED] drm_test_cmdline_name_bpp_option
[11:10:21] [PASSED] drm_test_cmdline_rotate_0
[11:10:21] [PASSED] drm_test_cmdline_rotate_90
[11:10:21] [PASSED] drm_test_cmdline_rotate_180
[11:10:21] [PASSED] drm_test_cmdline_rotate_270
[11:10:21] [PASSED] drm_test_cmdline_hmirror
[11:10:21] [PASSED] drm_test_cmdline_vmirror
[11:10:21] [PASSED] drm_test_cmdline_margin_options
[11:10:21] [PASSED] drm_test_cmdline_multiple_options
[11:10:21] [PASSED] drm_test_cmdline_bpp_extra_and_option
[11:10:21] [PASSED] drm_test_cmdline_extra_and_option
[11:10:21] [PASSED] drm_test_cmdline_freestanding_options
[11:10:21] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[11:10:21] [PASSED] drm_test_cmdline_panel_orientation
[11:10:21] ================ drm_test_cmdline_invalid =================
[11:10:21] [PASSED] margin_only
[11:10:21] [PASSED] interlace_only
[11:10:21] [PASSED] res_missing_x
[11:10:21] [PASSED] res_missing_y
[11:10:21] [PASSED] res_bad_y
[11:10:21] [PASSED] res_missing_y_bpp
[11:10:21] [PASSED] res_bad_bpp
[11:10:21] [PASSED] res_bad_refresh
[11:10:21] [PASSED] res_bpp_refresh_force_on_off
[11:10:21] [PASSED] res_invalid_mode
[11:10:21] [PASSED] res_bpp_wrong_place_mode
[11:10:21] [PASSED] name_bpp_refresh
[11:10:21] [PASSED] name_refresh
[11:10:21] [PASSED] name_refresh_wrong_mode
[11:10:21] [PASSED] name_refresh_invalid_mode
[11:10:21] [PASSED] rotate_multiple
[11:10:21] [PASSED] rotate_invalid_val
[11:10:21] [PASSED] rotate_truncated
[11:10:21] [PASSED] invalid_option
[11:10:21] [PASSED] invalid_tv_option
[11:10:21] [PASSED] truncated_tv_option
[11:10:21] ============ [PASSED] drm_test_cmdline_invalid =============
[11:10:21] =============== drm_test_cmdline_tv_options ===============
[11:10:21] [PASSED] NTSC
[11:10:21] [PASSED] NTSC_443
[11:10:21] [PASSED] NTSC_J
[11:10:21] [PASSED] PAL
[11:10:21] [PASSED] PAL_M
[11:10:21] [PASSED] PAL_N
[11:10:21] [PASSED] SECAM
[11:10:21] [PASSED] MONO_525
[11:10:21] [PASSED] MONO_625
[11:10:21] =========== [PASSED] drm_test_cmdline_tv_options ===========
[11:10:21] =============== [PASSED] drm_cmdline_parser ================
[11:10:21] ========== drmm_connector_hdmi_init (20 subtests) ==========
[11:10:21] [PASSED] drm_test_connector_hdmi_init_valid
[11:10:21] [PASSED] drm_test_connector_hdmi_init_bpc_8
[11:10:21] [PASSED] drm_test_connector_hdmi_init_bpc_10
[11:10:21] [PASSED] drm_test_connector_hdmi_init_bpc_12
[11:10:21] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[11:10:21] [PASSED] drm_test_connector_hdmi_init_bpc_null
[11:10:21] [PASSED] drm_test_connector_hdmi_init_formats_empty
[11:10:21] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[11:10:21] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[11:10:21] [PASSED] supported_formats=0x9 yuv420_allowed=1
[11:10:21] [PASSED] supported_formats=0x9 yuv420_allowed=0
[11:10:21] [PASSED] supported_formats=0x3 yuv420_allowed=1
[11:10:21] [PASSED] supported_formats=0x3 yuv420_allowed=0
[11:10:21] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[11:10:21] [PASSED] drm_test_connector_hdmi_init_null_ddc
[11:10:21] [PASSED] drm_test_connector_hdmi_init_null_product
[11:10:21] [PASSED] drm_test_connector_hdmi_init_null_vendor
[11:10:21] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[11:10:21] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[11:10:21] [PASSED] drm_test_connector_hdmi_init_product_valid
[11:10:21] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[11:10:21] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[11:10:21] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[11:10:21] ========= drm_test_connector_hdmi_init_type_valid =========
[11:10:21] [PASSED] HDMI-A
[11:10:21] [PASSED] HDMI-B
[11:10:21] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[11:10:21] ======== drm_test_connector_hdmi_init_type_invalid ========
[11:10:21] [PASSED] Unknown
[11:10:21] [PASSED] VGA
[11:10:21] [PASSED] DVI-I
[11:10:21] [PASSED] DVI-D
[11:10:21] [PASSED] DVI-A
[11:10:21] [PASSED] Composite
[11:10:21] [PASSED] SVIDEO
[11:10:21] [PASSED] LVDS
[11:10:21] [PASSED] Component
[11:10:21] [PASSED] DIN
[11:10:21] [PASSED] DP
[11:10:21] [PASSED] TV
[11:10:21] [PASSED] eDP
[11:10:21] [PASSED] Virtual
[11:10:21] [PASSED] DSI
[11:10:21] [PASSED] DPI
[11:10:21] [PASSED] Writeback
[11:10:21] [PASSED] SPI
[11:10:21] [PASSED] USB
[11:10:21] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[11:10:21] ============ [PASSED] drmm_connector_hdmi_init =============
[11:10:21] ============= drmm_connector_init (3 subtests) =============
[11:10:21] [PASSED] drm_test_drmm_connector_init
[11:10:21] [PASSED] drm_test_drmm_connector_init_null_ddc
[11:10:21] ========= drm_test_drmm_connector_init_type_valid =========
[11:10:21] [PASSED] Unknown
[11:10:21] [PASSED] VGA
[11:10:21] [PASSED] DVI-I
[11:10:21] [PASSED] DVI-D
[11:10:21] [PASSED] DVI-A
[11:10:21] [PASSED] Composite
[11:10:21] [PASSED] SVIDEO
[11:10:21] [PASSED] LVDS
[11:10:21] [PASSED] Component
[11:10:21] [PASSED] DIN
[11:10:21] [PASSED] DP
[11:10:21] [PASSED] HDMI-A
[11:10:21] [PASSED] HDMI-B
[11:10:21] [PASSED] TV
[11:10:21] [PASSED] eDP
[11:10:21] [PASSED] Virtual
[11:10:21] [PASSED] DSI
[11:10:21] [PASSED] DPI
[11:10:21] [PASSED] Writeback
[11:10:21] [PASSED] SPI
[11:10:21] [PASSED] USB
[11:10:21] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[11:10:21] =============== [PASSED] drmm_connector_init ===============
[11:10:21] ========= drm_connector_dynamic_init (6 subtests) ==========
[11:10:21] [PASSED] drm_test_drm_connector_dynamic_init
[11:10:21] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[11:10:21] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[11:10:21] [PASSED] drm_test_drm_connector_dynamic_init_properties
[11:10:21] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[11:10:21] [PASSED] Unknown
[11:10:21] [PASSED] VGA
[11:10:21] [PASSED] DVI-I
[11:10:21] [PASSED] DVI-D
[11:10:21] [PASSED] DVI-A
[11:10:21] [PASSED] Composite
[11:10:21] [PASSED] SVIDEO
[11:10:21] [PASSED] LVDS
[11:10:21] [PASSED] Component
[11:10:21] [PASSED] DIN
[11:10:21] [PASSED] DP
[11:10:21] [PASSED] HDMI-A
[11:10:21] [PASSED] HDMI-B
[11:10:21] [PASSED] TV
[11:10:21] [PASSED] eDP
[11:10:21] [PASSED] Virtual
[11:10:21] [PASSED] DSI
[11:10:21] [PASSED] DPI
[11:10:21] [PASSED] Writeback
[11:10:21] [PASSED] SPI
[11:10:21] [PASSED] USB
[11:10:21] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[11:10:21] ======== drm_test_drm_connector_dynamic_init_name =========
[11:10:21] [PASSED] Unknown
[11:10:21] [PASSED] VGA
[11:10:21] [PASSED] DVI-I
[11:10:21] [PASSED] DVI-D
[11:10:21] [PASSED] DVI-A
[11:10:21] [PASSED] Composite
[11:10:21] [PASSED] SVIDEO
[11:10:21] [PASSED] LVDS
[11:10:21] [PASSED] Component
[11:10:21] [PASSED] DIN
[11:10:21] [PASSED] DP
[11:10:21] [PASSED] HDMI-A
[11:10:21] [PASSED] HDMI-B
[11:10:21] [PASSED] TV
[11:10:21] [PASSED] eDP
[11:10:21] [PASSED] Virtual
[11:10:21] [PASSED] DSI
[11:10:21] [PASSED] DPI
[11:10:21] [PASSED] Writeback
[11:10:21] [PASSED] SPI
[11:10:21] [PASSED] USB
[11:10:21] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[11:10:21] =========== [PASSED] drm_connector_dynamic_init ============
[11:10:21] ==== drm_connector_dynamic_register_early (4 subtests) =====
[11:10:21] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[11:10:21] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[11:10:21] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[11:10:21] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[11:10:21] ====== [PASSED] drm_connector_dynamic_register_early =======
[11:10:21] ======= drm_connector_dynamic_register (7 subtests) ========
[11:10:21] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[11:10:21] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[11:10:21] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[11:10:21] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[11:10:21] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[11:10:21] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[11:10:21] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[11:10:21] ========= [PASSED] drm_connector_dynamic_register ==========
[11:10:21] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[11:10:21] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[11:10:21] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[11:10:21] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[11:10:21] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[11:10:21] ========== drm_test_get_tv_mode_from_name_valid ===========
[11:10:21] [PASSED] NTSC
[11:10:21] [PASSED] NTSC-443
[11:10:21] [PASSED] NTSC-J
[11:10:21] [PASSED] PAL
[11:10:21] [PASSED] PAL-M
[11:10:21] [PASSED] PAL-N
[11:10:21] [PASSED] SECAM
[11:10:21] [PASSED] Mono
[11:10:21] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[11:10:21] [PASSED] drm_test_get_tv_mode_from_name_truncated
[11:10:21] ============ [PASSED] drm_get_tv_mode_from_name ============
[11:10:21] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[11:10:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[11:10:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[11:10:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[11:10:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[11:10:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[11:10:21] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[11:10:21] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[11:10:21] [PASSED] VIC 96
[11:10:21] [PASSED] VIC 97
[11:10:21] [PASSED] VIC 101
[11:10:21] [PASSED] VIC 102
[11:10:21] [PASSED] VIC 106
[11:10:21] [PASSED] VIC 107
[11:10:21] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[11:10:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[11:10:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[11:10:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[11:10:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[11:10:21] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[11:10:21] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[11:10:21] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[11:10:21] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[11:10:21] [PASSED] Automatic
[11:10:21] [PASSED] Full
[11:10:21] [PASSED] Limited 16:235
[11:10:21] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[11:10:21] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[11:10:21] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[11:10:21] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[11:10:21] === drm_test_drm_hdmi_connector_get_output_format_name ====
[11:10:21] [PASSED] RGB
[11:10:21] [PASSED] YUV 4:2:0
[11:10:21] [PASSED] YUV 4:2:2
[11:10:21] [PASSED] YUV 4:4:4
[11:10:21] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[11:10:21] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[11:10:21] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[11:10:21] ============= drm_damage_helper (21 subtests) ==============
[11:10:21] [PASSED] drm_test_damage_iter_no_damage
[11:10:21] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[11:10:21] [PASSED] drm_test_damage_iter_no_damage_src_moved
[11:10:21] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[11:10:21] [PASSED] drm_test_damage_iter_no_damage_not_visible
[11:10:21] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[11:10:21] [PASSED] drm_test_damage_iter_no_damage_no_fb
[11:10:21] [PASSED] drm_test_damage_iter_simple_damage
[11:10:21] [PASSED] drm_test_damage_iter_single_damage
[11:10:21] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[11:10:21] [PASSED] drm_test_damage_iter_single_damage_outside_src
[11:10:21] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[11:10:21] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[11:10:21] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[11:10:21] [PASSED] drm_test_damage_iter_single_damage_src_moved
[11:10:21] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[11:10:21] [PASSED] drm_test_damage_iter_damage
[11:10:21] [PASSED] drm_test_damage_iter_damage_one_intersect
[11:10:21] [PASSED] drm_test_damage_iter_damage_one_outside
[11:10:21] [PASSED] drm_test_damage_iter_damage_src_moved
[11:10:21] [PASSED] drm_test_damage_iter_damage_not_visible
[11:10:21] ================ [PASSED] drm_damage_helper ================
[11:10:21] ============== drm_dp_mst_helper (3 subtests) ==============
[11:10:21] ============== drm_test_dp_mst_calc_pbn_mode ==============
[11:10:21] [PASSED] Clock 154000 BPP 30 DSC disabled
[11:10:21] [PASSED] Clock 234000 BPP 30 DSC disabled
[11:10:21] [PASSED] Clock 297000 BPP 24 DSC disabled
[11:10:21] [PASSED] Clock 332880 BPP 24 DSC enabled
[11:10:21] [PASSED] Clock 324540 BPP 24 DSC enabled
[11:10:21] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[11:10:21] ============== drm_test_dp_mst_calc_pbn_div ===============
[11:10:21] [PASSED] Link rate 2000000 lane count 4
[11:10:21] [PASSED] Link rate 2000000 lane count 2
[11:10:21] [PASSED] Link rate 2000000 lane count 1
[11:10:21] [PASSED] Link rate 1350000 lane count 4
[11:10:21] [PASSED] Link rate 1350000 lane count 2
[11:10:21] [PASSED] Link rate 1350000 lane count 1
[11:10:21] [PASSED] Link rate 1000000 lane count 4
[11:10:21] [PASSED] Link rate 1000000 lane count 2
[11:10:21] [PASSED] Link rate 1000000 lane count 1
[11:10:21] [PASSED] Link rate 810000 lane count 4
[11:10:21] [PASSED] Link rate 810000 lane count 2
[11:10:21] [PASSED] Link rate 810000 lane count 1
[11:10:21] [PASSED] Link rate 540000 lane count 4
[11:10:21] [PASSED] Link rate 540000 lane count 2
[11:10:21] [PASSED] Link rate 540000 lane count 1
[11:10:21] [PASSED] Link rate 270000 lane count 4
[11:10:21] [PASSED] Link rate 270000 lane count 2
[11:10:21] [PASSED] Link rate 270000 lane count 1
[11:10:21] [PASSED] Link rate 162000 lane count 4
[11:10:21] [PASSED] Link rate 162000 lane count 2
[11:10:21] [PASSED] Link rate 162000 lane count 1
[11:10:21] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[11:10:21] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[11:10:21] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[11:10:21] [PASSED] DP_POWER_UP_PHY with port number
[11:10:21] [PASSED] DP_POWER_DOWN_PHY with port number
[11:10:21] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[11:10:21] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[11:10:21] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[11:10:21] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[11:10:21] [PASSED] DP_QUERY_PAYLOAD with port number
[11:10:21] [PASSED] DP_QUERY_PAYLOAD with VCPI
[11:10:21] [PASSED] DP_REMOTE_DPCD_READ with port number
[11:10:21] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[11:10:21] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[11:10:21] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[11:10:21] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[11:10:21] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[11:10:21] [PASSED] DP_REMOTE_I2C_READ with port number
[11:10:21] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[11:10:21] [PASSED] DP_REMOTE_I2C_READ with transactions array
[11:10:21] [PASSED] DP_REMOTE_I2C_WRITE with port number
[11:10:21] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[11:10:21] [PASSED] DP_REMOTE_I2C_WRITE with data array
[11:10:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[11:10:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[11:10:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[11:10:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[11:10:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[11:10:21] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[11:10:21] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[11:10:21] ================ [PASSED] drm_dp_mst_helper ================
[11:10:21] ================== drm_exec (7 subtests) ===================
[11:10:21] [PASSED] sanitycheck
[11:10:21] [PASSED] test_lock
[11:10:21] [PASSED] test_lock_unlock
[11:10:21] [PASSED] test_duplicates
[11:10:21] [PASSED] test_prepare
[11:10:21] [PASSED] test_prepare_array
[11:10:21] [PASSED] test_multiple_loops
[11:10:21] ==================== [PASSED] drm_exec =====================
[11:10:21] =========== drm_format_helper_test (18 subtests) ===========
[11:10:21] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[11:10:21] [PASSED] single_pixel_source_buffer
[11:10:21] [PASSED] single_pixel_clip_rectangle
[11:10:21] [PASSED] well_known_colors
[11:10:21] [PASSED] destination_pitch
[11:10:21] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[11:10:21] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[11:10:21] [PASSED] single_pixel_source_buffer
[11:10:21] [PASSED] single_pixel_clip_rectangle
[11:10:21] [PASSED] well_known_colors
[11:10:21] [PASSED] destination_pitch
[11:10:21] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[11:10:21] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[11:10:21] [PASSED] single_pixel_source_buffer
[11:10:21] [PASSED] single_pixel_clip_rectangle
[11:10:21] [PASSED] well_known_colors
[11:10:21] [PASSED] destination_pitch
[11:10:21] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[11:10:21] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[11:10:21] [PASSED] single_pixel_source_buffer
[11:10:21] [PASSED] single_pixel_clip_rectangle
[11:10:21] [PASSED] well_known_colors
[11:10:21] [PASSED] destination_pitch
[11:10:21] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[11:10:21] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[11:10:21] [PASSED] single_pixel_source_buffer
[11:10:21] [PASSED] single_pixel_clip_rectangle
[11:10:21] [PASSED] well_known_colors
[11:10:21] [PASSED] destination_pitch
[11:10:21] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[11:10:21] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[11:10:21] [PASSED] single_pixel_source_buffer
[11:10:21] [PASSED] single_pixel_clip_rectangle
[11:10:21] [PASSED] well_known_colors
[11:10:21] [PASSED] destination_pitch
[11:10:21] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[11:10:21] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[11:10:21] [PASSED] single_pixel_source_buffer
[11:10:21] [PASSED] single_pixel_clip_rectangle
[11:10:21] [PASSED] well_known_colors
[11:10:21] [PASSED] destination_pitch
[11:10:21] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[11:10:21] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[11:10:21] [PASSED] single_pixel_source_buffer
[11:10:21] [PASSED] single_pixel_clip_rectangle
[11:10:21] [PASSED] well_known_colors
[11:10:21] [PASSED] destination_pitch
[11:10:21] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[11:10:21] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[11:10:21] [PASSED] single_pixel_source_buffer
[11:10:21] [PASSED] single_pixel_clip_rectangle
[11:10:21] [PASSED] well_known_colors
[11:10:21] [PASSED] destination_pitch
[11:10:21] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[11:10:21] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[11:10:21] [PASSED] single_pixel_source_buffer
[11:10:21] [PASSED] single_pixel_clip_rectangle
[11:10:21] [PASSED] well_known_colors
[11:10:21] [PASSED] destination_pitch
[11:10:21] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[11:10:21] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[11:10:21] [PASSED] single_pixel_source_buffer
[11:10:21] [PASSED] single_pixel_clip_rectangle
[11:10:21] [PASSED] well_known_colors
[11:10:21] [PASSED] destination_pitch
[11:10:21] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[11:10:21] ============== drm_test_fb_xrgb8888_to_mono ===============
[11:10:21] [PASSED] single_pixel_source_buffer
[11:10:21] [PASSED] single_pixel_clip_rectangle
[11:10:21] [PASSED] well_known_colors
[11:10:21] [PASSED] destination_pitch
[11:10:21] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[11:10:21] ==================== drm_test_fb_swab =====================
[11:10:21] [PASSED] single_pixel_source_buffer
[11:10:21] [PASSED] single_pixel_clip_rectangle
[11:10:21] [PASSED] well_known_colors
[11:10:21] [PASSED] destination_pitch
[11:10:21] ================ [PASSED] drm_test_fb_swab =================
[11:10:21] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[11:10:21] [PASSED] single_pixel_source_buffer
[11:10:21] [PASSED] single_pixel_clip_rectangle
[11:10:21] [PASSED] well_known_colors
[11:10:21] [PASSED] destination_pitch
[11:10:21] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[11:10:21] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[11:10:21] [PASSED] single_pixel_source_buffer
[11:10:21] [PASSED] single_pixel_clip_rectangle
[11:10:21] [PASSED] well_known_colors
[11:10:21] [PASSED] destination_pitch
[11:10:21] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[11:10:21] ================= drm_test_fb_clip_offset =================
[11:10:21] [PASSED] pass through
[11:10:21] [PASSED] horizontal offset
[11:10:21] [PASSED] vertical offset
[11:10:21] [PASSED] horizontal and vertical offset
[11:10:21] [PASSED] horizontal offset (custom pitch)
[11:10:21] [PASSED] vertical offset (custom pitch)
[11:10:21] [PASSED] horizontal and vertical offset (custom pitch)
[11:10:21] ============= [PASSED] drm_test_fb_clip_offset =============
[11:10:21] ============== drm_test_fb_build_fourcc_list ==============
[11:10:21] [PASSED] no native formats
[11:10:21] [PASSED] XRGB8888 as native format
[11:10:21] [PASSED] remove duplicates
[11:10:21] [PASSED] convert alpha formats
[11:10:21] [PASSED] random formats
[11:10:21] ========== [PASSED] drm_test_fb_build_fourcc_list ==========
[11:10:21] =================== drm_test_fb_memcpy ====================
[11:10:21] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[11:10:21] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[11:10:21] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[11:10:21] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[11:10:21] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[11:10:21] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[11:10:21] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[11:10:21] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[11:10:21] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[11:10:21] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[11:10:21] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[11:10:21] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[11:10:21] =============== [PASSED] drm_test_fb_memcpy ================
[11:10:21] ============= [PASSED] drm_format_helper_test ==============
[11:10:21] ================= drm_format (18 subtests) =================
[11:10:21] [PASSED] drm_test_format_block_width_invalid
[11:10:21] [PASSED] drm_test_format_block_width_one_plane
[11:10:21] [PASSED] drm_test_format_block_width_two_plane
[11:10:21] [PASSED] drm_test_format_block_width_three_plane
[11:10:21] [PASSED] drm_test_format_block_width_tiled
[11:10:21] [PASSED] drm_test_format_block_height_invalid
[11:10:21] [PASSED] drm_test_format_block_height_one_plane
[11:10:21] [PASSED] drm_test_format_block_height_two_plane
[11:10:21] [PASSED] drm_test_format_block_height_three_plane
[11:10:21] [PASSED] drm_test_format_block_height_tiled
[11:10:21] [PASSED] drm_test_format_min_pitch_invalid
[11:10:21] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[11:10:21] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[11:10:21] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[11:10:21] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[11:10:21] [PASSED] drm_test_format_min_pitch_two_plane
[11:10:21] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[11:10:21] [PASSED] drm_test_format_min_pitch_tiled
[11:10:21] =================== [PASSED] drm_format ====================
[11:10:21] ============== drm_framebuffer (10 subtests) ===============
[11:10:21] ========== drm_test_framebuffer_check_src_coords ==========
[11:10:21] [PASSED] Success: source fits into fb
[11:10:21] [PASSED] Fail: overflowing fb with x-axis coordinate
[11:10:21] [PASSED] Fail: overflowing fb with y-axis coordinate
[11:10:21] [PASSED] Fail: overflowing fb with source width
[11:10:21] [PASSED] Fail: overflowing fb with source height
[11:10:21] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[11:10:21] [PASSED] drm_test_framebuffer_cleanup
[11:10:21] =============== drm_test_framebuffer_create ===============
[11:10:21] [PASSED] ABGR8888 normal sizes
[11:10:21] [PASSED] ABGR8888 max sizes
[11:10:21] [PASSED] ABGR8888 pitch greater than min required
[11:10:21] [PASSED] ABGR8888 pitch less than min required
[11:10:21] [PASSED] ABGR8888 Invalid width
[11:10:21] [PASSED] ABGR8888 Invalid buffer handle
[11:10:21] [PASSED] No pixel format
[11:10:21] [PASSED] ABGR8888 Width 0
[11:10:21] [PASSED] ABGR8888 Height 0
[11:10:21] [PASSED] ABGR8888 Out of bound height * pitch combination
[11:10:21] [PASSED] ABGR8888 Large buffer offset
[11:10:21] [PASSED] ABGR8888 Buffer offset for inexistent plane
[11:10:21] [PASSED] ABGR8888 Invalid flag
[11:10:21] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[11:10:21] [PASSED] ABGR8888 Valid buffer modifier
[11:10:21] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[11:10:21] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[11:10:21] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[11:10:21] [PASSED] NV12 Normal sizes
[11:10:21] [PASSED] NV12 Max sizes
[11:10:21] [PASSED] NV12 Invalid pitch
[11:10:21] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[11:10:21] [PASSED] NV12 different modifier per-plane
[11:10:21] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[11:10:21] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[11:10:21] [PASSED] NV12 Modifier for inexistent plane
[11:10:21] [PASSED] NV12 Handle for inexistent plane
[11:10:21] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[11:10:21] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[11:10:21] [PASSED] YVU420 Normal sizes
[11:10:21] [PASSED] YVU420 Max sizes
[11:10:21] [PASSED] YVU420 Invalid pitch
[11:10:21] [PASSED] YVU420 Different pitches
[11:10:21] [PASSED] YVU420 Different buffer offsets/pitches
[11:10:21] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[11:10:21] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[11:10:21] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[11:10:21] [PASSED] YVU420 Valid modifier
[11:10:21] [PASSED] YVU420 Different modifiers per plane
[11:10:21] [PASSED] YVU420 Modifier for inexistent plane
[11:10:21] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[11:10:21] [PASSED] X0L2 Normal sizes
[11:10:21] [PASSED] X0L2 Max sizes
[11:10:21] [PASSED] X0L2 Invalid pitch
[11:10:21] [PASSED] X0L2 Pitch greater than minimum required
[11:10:21] [PASSED] X0L2 Handle for inexistent plane
[11:10:21] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[11:10:21] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[11:10:21] [PASSED] X0L2 Valid modifier
[11:10:21] [PASSED] X0L2 Modifier for inexistent plane
[11:10:21] =========== [PASSED] drm_test_framebuffer_create ===========
[11:10:21] [PASSED] drm_test_framebuffer_free
[11:10:21] [PASSED] drm_test_framebuffer_init
[11:10:21] [PASSED] drm_test_framebuffer_init_bad_format
[11:10:21] [PASSED] drm_test_framebuffer_init_dev_mismatch
[11:10:21] [PASSED] drm_test_framebuffer_lookup
[11:10:21] [PASSED] drm_test_framebuffer_lookup_inexistent
[11:10:21] [PASSED] drm_test_framebuffer_modifiers_not_supported
[11:10:21] ================= [PASSED] drm_framebuffer =================
[11:10:21] ================ drm_gem_shmem (8 subtests) ================
[11:10:21] [PASSED] drm_gem_shmem_test_obj_create
[11:10:21] [PASSED] drm_gem_shmem_test_obj_create_private
[11:10:21] [PASSED] drm_gem_shmem_test_pin_pages
[11:10:21] [PASSED] drm_gem_shmem_test_vmap
[11:10:21] [PASSED] drm_gem_shmem_test_get_pages_sgt
[11:10:21] [PASSED] drm_gem_shmem_test_get_sg_table
[11:10:21] [PASSED] drm_gem_shmem_test_madvise
[11:10:21] [PASSED] drm_gem_shmem_test_purge
[11:10:21] ================== [PASSED] drm_gem_shmem ==================
[11:10:21] === drm_atomic_helper_connector_hdmi_check (23 subtests) ===
[11:10:21] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[11:10:21] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[11:10:21] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[11:10:21] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[11:10:21] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[11:10:21] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[11:10:21] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[11:10:21] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[11:10:21] [PASSED] drm_test_check_disable_connector
[11:10:21] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[11:10:21] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback
[11:10:21] [PASSED] drm_test_check_max_tmds_rate_format_fallback
[11:10:21] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[11:10:21] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[11:10:21] [PASSED] drm_test_check_output_bpc_dvi
[11:10:21] [PASSED] drm_test_check_output_bpc_format_vic_1
[11:10:21] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[11:10:21] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[11:10:21] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[11:10:21] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[11:10:21] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[11:10:21] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[11:10:21] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[11:10:21] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[11:10:21] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[11:10:21] [PASSED] drm_test_check_broadcast_rgb_value
[11:10:21] [PASSED] drm_test_check_bpc_8_value
[11:10:21] [PASSED] drm_test_check_bpc_10_value
[11:10:21] [PASSED] drm_test_check_bpc_12_value
[11:10:21] [PASSED] drm_test_check_format_value
[11:10:21] [PASSED] drm_test_check_tmds_char_value
[11:10:21] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[11:10:21] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[11:10:21] [PASSED] drm_test_check_mode_valid
[11:10:21] [PASSED] drm_test_check_mode_valid_reject
[11:10:21] [PASSED] drm_test_check_mode_valid_reject_rate
[11:10:21] [PASSED] drm_test_check_mode_valid_reject_max_clock
[11:10:21] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[11:10:21] ================= drm_managed (2 subtests) =================
[11:10:21] [PASSED] drm_test_managed_release_action
[11:10:21] [PASSED] drm_test_managed_run_action
[11:10:21] =================== [PASSED] drm_managed ===================
[11:10:21] =================== drm_mm (6 subtests) ====================
[11:10:21] [PASSED] drm_test_mm_init
[11:10:21] [PASSED] drm_test_mm_debug
[11:10:21] [PASSED] drm_test_mm_align32
[11:10:21] [PASSED] drm_test_mm_align64
[11:10:21] [PASSED] drm_test_mm_lowest
[11:10:21] [PASSED] drm_test_mm_highest
[11:10:21] ===================== [PASSED] drm_mm ======================
[11:10:21] ============= drm_modes_analog_tv (5 subtests) =============
[11:10:21] [PASSED] drm_test_modes_analog_tv_mono_576i
[11:10:21] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[11:10:21] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[11:10:21] [PASSED] drm_test_modes_analog_tv_pal_576i
[11:10:21] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[11:10:21] =============== [PASSED] drm_modes_analog_tv ===============
[11:10:21] ============== drm_plane_helper (2 subtests) ===============
[11:10:21] =============== drm_test_check_plane_state ================
[11:10:21] [PASSED] clipping_simple
[11:10:21] [PASSED] clipping_rotate_reflect
[11:10:21] [PASSED] positioning_simple
[11:10:21] [PASSED] upscaling
[11:10:21] [PASSED] downscaling
[11:10:21] [PASSED] rounding1
[11:10:21] [PASSED] rounding2
[11:10:21] [PASSED] rounding3
[11:10:21] [PASSED] rounding4
[11:10:21] =========== [PASSED] drm_test_check_plane_state ============
[11:10:21] =========== drm_test_check_invalid_plane_state ============
[11:10:21] [PASSED] positioning_invalid
[11:10:21] [PASSED] upscaling_invalid
[11:10:21] [PASSED] downscaling_invalid
[11:10:21] ======= [PASSED] drm_test_check_invalid_plane_state ========
[11:10:21] ================ [PASSED] drm_plane_helper =================
[11:10:21] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[11:10:21] ====== drm_test_connector_helper_tv_get_modes_check =======
[11:10:21] [PASSED] None
[11:10:21] [PASSED] PAL
[11:10:21] [PASSED] NTSC
[11:10:21] [PASSED] Both, NTSC Default
[11:10:21] [PASSED] Both, PAL Default
[11:10:21] [PASSED] Both, NTSC Default, with PAL on command-line
[11:10:21] [PASSED] Both, PAL Default, with NTSC on command-line
[11:10:21] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[11:10:21] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[11:10:21] ================== drm_rect (9 subtests) ===================
[11:10:21] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[11:10:21] [PASSED] drm_test_rect_clip_scaled_not_clipped
[11:10:21] [PASSED] drm_test_rect_clip_scaled_clipped
[11:10:21] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[11:10:21] ================= drm_test_rect_intersect =================
[11:10:21] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[11:10:21] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[11:10:21] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[11:10:21] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[11:10:21] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[11:10:21] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[11:10:21] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[11:10:21] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[11:10:21] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[11:10:21] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[11:10:21] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[11:10:21] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[11:10:21] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[11:10:21] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[11:10:21] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[11:10:21] ============= [PASSED] drm_test_rect_intersect =============
[11:10:21] ================ drm_test_rect_calc_hscale ================
[11:10:21] [PASSED] normal use
[11:10:21] [PASSED] out of max range
[11:10:21] [PASSED] out of min range
[11:10:21] [PASSED] zero dst
[11:10:21] [PASSED] negative src
[11:10:21] [PASSED] negative dst
[11:10:21] ============ [PASSED] drm_test_rect_calc_hscale ============
[11:10:21] ================ drm_test_rect_calc_vscale ================
[11:10:21] [PASSED] normal use
[11:10:21] [PASSED] out of max range
[11:10:21] [PASSED] out of min range
[11:10:21] [PASSED] zero dst
[11:10:21] [PASSED] negative src
[11:10:21] [PASSED] negative dst
[11:10:21] ============ [PASSED] drm_test_rect_calc_vscale ============
[11:10:21] ================== drm_test_rect_rotate ===================
[11:10:21] [PASSED] reflect-x
[11:10:21] [PASSED] reflect-y
[11:10:21] [PASSED] rotate-0
[11:10:21] [PASSED] rotate-90
[11:10:21] [PASSED] rotate-180
[11:10:21] [PASSED] rotate-270
[11:10:21] ============== [PASSED] drm_test_rect_rotate ===============
[11:10:21] ================ drm_test_rect_rotate_inv =================
[11:10:21] [PASSED] reflect-x
[11:10:21] [PASSED] reflect-y
[11:10:21] [PASSED] rotate-0
[11:10:21] [PASSED] rotate-90
[11:10:21] [PASSED] rotate-180
[11:10:21] [PASSED] rotate-270
[11:10:21] ============ [PASSED] drm_test_rect_rotate_inv =============
stty: 'standard input': Inappropriate ioctl for device
[11:10:21] ==================== [PASSED] drm_rect =====================
[11:10:21] ============================================================
[11:10:21] Testing complete. Ran 608 tests: passed: 608
[11:10:21] Elapsed time: 23.644s total, 1.818s configuring, 21.653s building, 0.140s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[11:10:21] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[11:10:23] 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
[11:10:31] Starting KUnit Kernel (1/1)...
[11:10:31] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[11:10:31] ================= ttm_device (5 subtests) ==================
[11:10:31] [PASSED] ttm_device_init_basic
[11:10:31] [PASSED] ttm_device_init_multiple
[11:10:31] [PASSED] ttm_device_fini_basic
[11:10:31] [PASSED] ttm_device_init_no_vma_man
[11:10:31] ================== ttm_device_init_pools ==================
[11:10:31] [PASSED] No DMA allocations, no DMA32 required
[11:10:31] [PASSED] DMA allocations, DMA32 required
[11:10:31] [PASSED] No DMA allocations, DMA32 required
[11:10:31] [PASSED] DMA allocations, no DMA32 required
[11:10:31] ============== [PASSED] ttm_device_init_pools ==============
[11:10:31] =================== [PASSED] ttm_device ====================
[11:10:31] ================== ttm_pool (8 subtests) ===================
[11:10:31] ================== ttm_pool_alloc_basic ===================
[11:10:31] [PASSED] One page
[11:10:31] [PASSED] More than one page
[11:10:31] [PASSED] Above the allocation limit
[11:10:31] [PASSED] One page, with coherent DMA mappings enabled
[11:10:31] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[11:10:31] ============== [PASSED] ttm_pool_alloc_basic ===============
[11:10:31] ============== ttm_pool_alloc_basic_dma_addr ==============
[11:10:31] [PASSED] One page
[11:10:31] [PASSED] More than one page
[11:10:31] [PASSED] Above the allocation limit
[11:10:31] [PASSED] One page, with coherent DMA mappings enabled
[11:10:31] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[11:10:31] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[11:10:31] [PASSED] ttm_pool_alloc_order_caching_match
[11:10:31] [PASSED] ttm_pool_alloc_caching_mismatch
[11:10:31] [PASSED] ttm_pool_alloc_order_mismatch
[11:10:31] [PASSED] ttm_pool_free_dma_alloc
[11:10:31] [PASSED] ttm_pool_free_no_dma_alloc
[11:10:31] [PASSED] ttm_pool_fini_basic
[11:10:31] ==================== [PASSED] ttm_pool =====================
[11:10:31] ================ ttm_resource (8 subtests) =================
[11:10:31] ================= ttm_resource_init_basic =================
[11:10:31] [PASSED] Init resource in TTM_PL_SYSTEM
[11:10:31] [PASSED] Init resource in TTM_PL_VRAM
[11:10:31] [PASSED] Init resource in a private placement
[11:10:31] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[11:10:31] ============= [PASSED] ttm_resource_init_basic =============
[11:10:31] [PASSED] ttm_resource_init_pinned
[11:10:31] [PASSED] ttm_resource_fini_basic
[11:10:31] [PASSED] ttm_resource_manager_init_basic
[11:10:31] [PASSED] ttm_resource_manager_usage_basic
[11:10:31] [PASSED] ttm_resource_manager_set_used_basic
[11:10:31] [PASSED] ttm_sys_man_alloc_basic
[11:10:31] [PASSED] ttm_sys_man_free_basic
[11:10:31] ================== [PASSED] ttm_resource ===================
[11:10:31] =================== ttm_tt (15 subtests) ===================
[11:10:31] ==================== ttm_tt_init_basic ====================
[11:10:31] [PASSED] Page-aligned size
[11:10:31] [PASSED] Extra pages requested
[11:10:31] ================ [PASSED] ttm_tt_init_basic ================
[11:10:31] [PASSED] ttm_tt_init_misaligned
[11:10:31] [PASSED] ttm_tt_fini_basic
[11:10:31] [PASSED] ttm_tt_fini_sg
[11:10:31] [PASSED] ttm_tt_fini_shmem
[11:10:31] [PASSED] ttm_tt_create_basic
[11:10:31] [PASSED] ttm_tt_create_invalid_bo_type
[11:10:31] [PASSED] ttm_tt_create_ttm_exists
[11:10:31] [PASSED] ttm_tt_create_failed
[11:10:31] [PASSED] ttm_tt_destroy_basic
[11:10:31] [PASSED] ttm_tt_populate_null_ttm
[11:10:31] [PASSED] ttm_tt_populate_populated_ttm
[11:10:31] [PASSED] ttm_tt_unpopulate_basic
[11:10:31] [PASSED] ttm_tt_unpopulate_empty_ttm
[11:10:31] [PASSED] ttm_tt_swapin_basic
[11:10:31] ===================== [PASSED] ttm_tt ======================
[11:10:31] =================== ttm_bo (14 subtests) ===================
[11:10:31] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[11:10:31] [PASSED] Cannot be interrupted and sleeps
[11:10:31] [PASSED] Cannot be interrupted, locks straight away
[11:10:31] [PASSED] Can be interrupted, sleeps
[11:10:31] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[11:10:31] [PASSED] ttm_bo_reserve_locked_no_sleep
[11:10:31] [PASSED] ttm_bo_reserve_no_wait_ticket
[11:10:31] [PASSED] ttm_bo_reserve_double_resv
[11:10:31] [PASSED] ttm_bo_reserve_interrupted
[11:10:31] [PASSED] ttm_bo_reserve_deadlock
[11:10:31] [PASSED] ttm_bo_unreserve_basic
[11:10:31] [PASSED] ttm_bo_unreserve_pinned
[11:10:31] [PASSED] ttm_bo_unreserve_bulk
[11:10:31] [PASSED] ttm_bo_put_basic
[11:10:31] [PASSED] ttm_bo_put_shared_resv
[11:10:31] [PASSED] ttm_bo_pin_basic
[11:10:31] [PASSED] ttm_bo_pin_unpin_resource
[11:10:31] [PASSED] ttm_bo_multiple_pin_one_unpin
[11:10:31] ===================== [PASSED] ttm_bo ======================
[11:10:31] ============== ttm_bo_validate (22 subtests) ===============
[11:10:31] ============== ttm_bo_init_reserved_sys_man ===============
[11:10:31] [PASSED] Buffer object for userspace
[11:10:31] [PASSED] Kernel buffer object
[11:10:31] [PASSED] Shared buffer object
[11:10:31] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[11:10:31] ============== ttm_bo_init_reserved_mock_man ==============
[11:10:31] [PASSED] Buffer object for userspace
[11:10:31] [PASSED] Kernel buffer object
[11:10:31] [PASSED] Shared buffer object
[11:10:31] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[11:10:31] [PASSED] ttm_bo_init_reserved_resv
[11:10:31] ================== ttm_bo_validate_basic ==================
[11:10:31] [PASSED] Buffer object for userspace
[11:10:31] [PASSED] Kernel buffer object
[11:10:31] [PASSED] Shared buffer object
[11:10:31] ============== [PASSED] ttm_bo_validate_basic ==============
[11:10:31] [PASSED] ttm_bo_validate_invalid_placement
[11:10:31] ============= ttm_bo_validate_same_placement ==============
[11:10:31] [PASSED] System manager
[11:10:31] [PASSED] VRAM manager
[11:10:31] ========= [PASSED] ttm_bo_validate_same_placement ==========
[11:10:31] [PASSED] ttm_bo_validate_failed_alloc
[11:10:31] [PASSED] ttm_bo_validate_pinned
[11:10:31] [PASSED] ttm_bo_validate_busy_placement
[11:10:31] ================ ttm_bo_validate_multihop =================
[11:10:31] [PASSED] Buffer object for userspace
[11:10:31] [PASSED] Kernel buffer object
[11:10:31] [PASSED] Shared buffer object
[11:10:31] ============ [PASSED] ttm_bo_validate_multihop =============
[11:10:31] ========== ttm_bo_validate_no_placement_signaled ==========
[11:10:31] [PASSED] Buffer object in system domain, no page vector
[11:10:31] [PASSED] Buffer object in system domain with an existing page vector
[11:10:31] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[11:10:31] ======== ttm_bo_validate_no_placement_not_signaled ========
[11:10:31] [PASSED] Buffer object for userspace
[11:10:31] [PASSED] Kernel buffer object
[11:10:31] [PASSED] Shared buffer object
[11:10:31] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[11:10:31] [PASSED] ttm_bo_validate_move_fence_signaled
[11:10:31] ========= ttm_bo_validate_move_fence_not_signaled =========
[11:10:31] [PASSED] Waits for GPU
[11:10:31] [PASSED] Tries to lock straight away
[11:10:31] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[11:10:31] [PASSED] ttm_bo_validate_swapout
[11:10:31] [PASSED] ttm_bo_validate_happy_evict
[11:10:31] [PASSED] ttm_bo_validate_all_pinned_evict
[11:10:31] [PASSED] ttm_bo_validate_allowed_only_evict
[11:10:31] [PASSED] ttm_bo_validate_deleted_evict
[11:10:31] [PASSED] ttm_bo_validate_busy_domain_evict
[11:10:31] [PASSED] ttm_bo_validate_evict_gutting
[11:10:31] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[11:10:31] ================= [PASSED] ttm_bo_validate =================
[11:10:31] ============================================================
[11:10:31] Testing complete. Ran 102 tests: passed: 102
[11:10:32] Elapsed time: 10.495s total, 1.814s configuring, 8.064s building, 0.535s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 24+ messages in thread* ✓ CI.Build: success for Suppress some dumps during fault injection tests
2025-05-12 16:19 [PATCH 0/2] Suppress some dumps during fault injection tests Michal Wajdeczko
` (8 preceding siblings ...)
2025-05-13 11:10 ` ✓ CI.KUnit: " Patchwork
@ 2025-05-13 11:18 ` Patchwork
2025-05-13 11:21 ` ✓ CI.Hooks: " Patchwork
` (7 subsequent siblings)
17 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-05-13 11:18 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Suppress some dumps during fault injection tests
URL : https://patchwork.freedesktop.org/series/148900/
State : success
== Summary ==
lib/modules/6.15.0-rc6-xe+/kernel/arch/x86/kvm/
lib/modules/6.15.0-rc6-xe+/kernel/arch/x86/kvm/kvm.ko
lib/modules/6.15.0-rc6-xe+/kernel/arch/x86/kvm/kvm-intel.ko
lib/modules/6.15.0-rc6-xe+/kernel/arch/x86/kvm/kvm-amd.ko
lib/modules/6.15.0-rc6-xe+/kernel/virt/
lib/modules/6.15.0-rc6-xe+/kernel/virt/lib/
lib/modules/6.15.0-rc6-xe+/kernel/virt/lib/irqbypass.ko
lib/modules/6.15.0-rc6-xe+/kernel/kernel/
lib/modules/6.15.0-rc6-xe+/kernel/kernel/kheaders.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/
lib/modules/6.15.0-rc6-xe+/kernel/crypto/ecrdsa_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/xcbc.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/serpent_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/aria_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/crypto_simd.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/adiantum.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/tcrypt.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/crypto_engine.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/zstd.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/asymmetric_keys/
lib/modules/6.15.0-rc6-xe+/kernel/crypto/asymmetric_keys/pkcs7_test_key.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/asymmetric_keys/pkcs8_key_parser.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/des_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/xctr.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/authenc.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/sm4_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/camellia_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/sm3.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/pcrypt.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/aegis128.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/af_alg.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/algif_aead.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/cmac.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/sm3_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/aes_ti.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/chacha_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/poly1305_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/nhpoly1305.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/crc32_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/essiv.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/ccm.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/wp512.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/streebog_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/authencesn.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/echainiv.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/lrw.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/cryptd.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/crypto_user.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/algif_hash.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/polyval-generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/hctr2.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/842.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/pcbc.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/ansi_cprng.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/cast6_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/twofish_common.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/twofish_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/lz4hc.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/blowfish_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/md4.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/chacha20poly1305.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/curve25519-generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/lz4.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/rmd160.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/algif_skcipher.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/cast5_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/fcrypt.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/ecdsa_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/sm4.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/cast_common.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/blowfish_common.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/michael_mic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/async_tx/
lib/modules/6.15.0-rc6-xe+/kernel/crypto/async_tx/async_xor.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/async_tx/async_tx.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/async_tx/async_memcpy.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/async_tx/async_pq.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/async_tx/async_raid6_recov.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/algif_rng.ko
lib/modules/6.15.0-rc6-xe+/kernel/block/
lib/modules/6.15.0-rc6-xe+/kernel/block/bfq.ko
lib/modules/6.15.0-rc6-xe+/kernel/block/kyber-iosched.ko
lib/modules/6.15.0-rc6-xe+/build
lib/modules/6.15.0-rc6-xe+/modules.alias.bin
lib/modules/6.15.0-rc6-xe+/modules.builtin
lib/modules/6.15.0-rc6-xe+/modules.softdep
lib/modules/6.15.0-rc6-xe+/modules.alias
lib/modules/6.15.0-rc6-xe+/modules.order
lib/modules/6.15.0-rc6-xe+/modules.symbols
lib/modules/6.15.0-rc6-xe+/modules.dep.bin
+ mv kernel-debug.tar.gz ..
+ cd ..
+ rm -rf archive-debug
+ [[ no == \y\e\s ]]
+ sync
[+] Finished building and packaging 'debug'!
+ echo '[+] Finished building and packaging '\''debug'\''!'
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 24+ messages in thread* ✓ CI.Hooks: success for Suppress some dumps during fault injection tests
2025-05-12 16:19 [PATCH 0/2] Suppress some dumps during fault injection tests Michal Wajdeczko
` (9 preceding siblings ...)
2025-05-13 11:18 ` ✓ CI.Build: " Patchwork
@ 2025-05-13 11:21 ` Patchwork
2025-05-13 11:22 ` ✓ CI.checksparse: " Patchwork
` (6 subsequent siblings)
17 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-05-13 11:21 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Suppress some dumps during fault injection tests
URL : https://patchwork.freedesktop.org/series/148900/
State : success
== Summary ==
run-parts: executing /workspace/ci/hooks/00-showenv
+ export
+ grep -Ei '(^|\W)CI_'
declare -x CI_KERNEL_BUILD_DIR="/workspace/kernel/build64-debug"
declare -x CI_KERNEL_SRC_DIR="/workspace/kernel"
declare -x CI_TOOLS_SRC_DIR="/workspace/ci"
declare -x CI_WORKSPACE_DIR="/workspace"
run-parts: executing /workspace/ci/hooks/10-build-W1
+ SRC_DIR=/workspace/kernel
+ RESTORE_DISPLAY_CONFIG=0
+ '[' -n /workspace/kernel/build64-debug ']'
+ BUILD_DIR=/workspace/kernel/build64-debug
+ cd /workspace/kernel
++ nproc
+ make -j48 O=/workspace/kernel/build64-debug modules_prepare
make[1]: Entering directory '/workspace/kernel/build64-debug'
GEN Makefile
DESCEND objtool
CALL ../scripts/checksyscalls.sh
INSTALL libsubcmd_headers
CC /workspace/kernel/build64-debug/tools/objtool/libsubcmd/exec-cmd.o
CC /workspace/kernel/build64-debug/tools/objtool/libsubcmd/help.o
CC /workspace/kernel/build64-debug/tools/objtool/libsubcmd/pager.o
CC /workspace/kernel/build64-debug/tools/objtool/libsubcmd/parse-options.o
CC /workspace/kernel/build64-debug/tools/objtool/libsubcmd/run-command.o
CC /workspace/kernel/build64-debug/tools/objtool/libsubcmd/sigchain.o
CC /workspace/kernel/build64-debug/tools/objtool/libsubcmd/subcmd-config.o
LD /workspace/kernel/build64-debug/tools/objtool/libsubcmd/libsubcmd-in.o
AR /workspace/kernel/build64-debug/tools/objtool/libsubcmd/libsubcmd.a
CC /workspace/kernel/build64-debug/tools/objtool/weak.o
CC /workspace/kernel/build64-debug/tools/objtool/check.o
CC /workspace/kernel/build64-debug/tools/objtool/special.o
CC /workspace/kernel/build64-debug/tools/objtool/builtin-check.o
CC /workspace/kernel/build64-debug/tools/objtool/arch/x86/special.o
CC /workspace/kernel/build64-debug/tools/objtool/elf.o
CC /workspace/kernel/build64-debug/tools/objtool/arch/x86/decode.o
CC /workspace/kernel/build64-debug/tools/objtool/objtool.o
CC /workspace/kernel/build64-debug/tools/objtool/arch/x86/orc.o
CC /workspace/kernel/build64-debug/tools/objtool/orc_gen.o
CC /workspace/kernel/build64-debug/tools/objtool/orc_dump.o
CC /workspace/kernel/build64-debug/tools/objtool/libctype.o
CC /workspace/kernel/build64-debug/tools/objtool/libstring.o
CC /workspace/kernel/build64-debug/tools/objtool/str_error_r.o
CC /workspace/kernel/build64-debug/tools/objtool/librbtree.o
LD /workspace/kernel/build64-debug/tools/objtool/arch/x86/objtool-in.o
LD /workspace/kernel/build64-debug/tools/objtool/objtool-in.o
LINK /workspace/kernel/build64-debug/tools/objtool/objtool
make[1]: Leaving directory '/workspace/kernel/build64-debug'
++ nproc
+ make -j48 O=/workspace/kernel/build64-debug W=1 drivers/gpu/drm/xe
make[1]: Entering directory '/workspace/kernel/build64-debug'
make[2]: Nothing to be done for 'drivers/gpu/drm/xe'.
make[1]: Leaving directory '/workspace/kernel/build64-debug'
run-parts: executing /workspace/ci/hooks/11-build-32b
+++ realpath /workspace/ci/hooks/11-build-32b
++ dirname /workspace/ci/hooks/11-build-32b
+ THIS_SCRIPT_DIR=/workspace/ci/hooks
+ SRC_DIR=/workspace/kernel
+ TOOLS_SRC_DIR=/workspace/ci
+ '[' -n /workspace/kernel/build64-debug ']'
+ BUILD_DIR=/workspace/kernel/build64-debug
+ BUILD_DIR=/workspace/kernel/build64-debug/build32
+ cd /workspace/kernel
+ mkdir -p /workspace/kernel/build64-debug/build32
++ nproc
+ make -j48 ARCH=i386 O=/workspace/kernel/build64-debug/build32 defconfig
make[1]: Entering directory '/workspace/kernel/build64-debug/build32'
GEN Makefile
HOSTCC scripts/basic/fixdep
HOSTCC scripts/kconfig/conf.o
HOSTCC scripts/kconfig/confdata.o
LEX scripts/kconfig/lexer.lex.c
HOSTCC scripts/kconfig/expr.o
YACC scripts/kconfig/parser.tab.[ch]
HOSTCC scripts/kconfig/menu.o
HOSTCC scripts/kconfig/preprocess.o
HOSTCC scripts/kconfig/symbol.o
HOSTCC scripts/kconfig/util.o
HOSTCC scripts/kconfig/lexer.lex.o
HOSTCC scripts/kconfig/parser.tab.o
HOSTLD scripts/kconfig/conf
*** Default configuration is based on 'i386_defconfig'
#
# configuration written to .config
#
make[1]: Leaving directory '/workspace/kernel/build64-debug/build32'
+ cd /workspace/kernel/build64-debug/build32
+ /workspace/kernel/scripts/kconfig/merge_config.sh .config /workspace/ci/kernel/fragments/10-xe.fragment
Using .config as base
Merging /workspace/ci/kernel/fragments/10-xe.fragment
Value of CONFIG_DRM_XE is redefined by fragment /workspace/ci/kernel/fragments/10-xe.fragment:
Previous value: # CONFIG_DRM_XE is not set
New value: CONFIG_DRM_XE=m
GEN Makefile
#
# configuration written to .config
#
Value requested for CONFIG_HAVE_UID16 not in final .config
Requested value: CONFIG_HAVE_UID16=y
Actual value:
Value requested for CONFIG_UID16 not in final .config
Requested value: CONFIG_UID16=y
Actual value:
Value requested for CONFIG_X86_32 not in final .config
Requested value: CONFIG_X86_32=y
Actual value:
Value requested for CONFIG_OUTPUT_FORMAT not in final .config
Requested value: CONFIG_OUTPUT_FORMAT="elf32-i386"
Actual value: CONFIG_OUTPUT_FORMAT="elf64-x86-64"
Value requested for CONFIG_ARCH_MMAP_RND_BITS_MIN not in final .config
Requested value: CONFIG_ARCH_MMAP_RND_BITS_MIN=8
Actual value: CONFIG_ARCH_MMAP_RND_BITS_MIN=28
Value requested for CONFIG_ARCH_MMAP_RND_BITS_MAX not in final .config
Requested value: CONFIG_ARCH_MMAP_RND_BITS_MAX=16
Actual value: CONFIG_ARCH_MMAP_RND_BITS_MAX=32
Value requested for CONFIG_PGTABLE_LEVELS not in final .config
Requested value: CONFIG_PGTABLE_LEVELS=2
Actual value: CONFIG_PGTABLE_LEVELS=5
Value requested for CONFIG_X86_INTEL_QUARK not in final .config
Requested value: # CONFIG_X86_INTEL_QUARK is not set
Actual value:
Value requested for CONFIG_X86_RDC321X not in final .config
Requested value: # CONFIG_X86_RDC321X is not set
Actual value:
Value requested for CONFIG_X86_32_IRIS not in final .config
Requested value: # CONFIG_X86_32_IRIS is not set
Actual value:
Value requested for CONFIG_M486SX not in final .config
Requested value: # CONFIG_M486SX is not set
Actual value:
Value requested for CONFIG_M486 not in final .config
Requested value: # CONFIG_M486 is not set
Actual value:
Value requested for CONFIG_M586 not in final .config
Requested value: # CONFIG_M586 is not set
Actual value:
Value requested for CONFIG_M586TSC not in final .config
Requested value: # CONFIG_M586TSC is not set
Actual value:
Value requested for CONFIG_M586MMX not in final .config
Requested value: # CONFIG_M586MMX is not set
Actual value:
Value requested for CONFIG_M686 not in final .config
Requested value: CONFIG_M686=y
Actual value:
Value requested for CONFIG_MPENTIUMII not in final .config
Requested value: # CONFIG_MPENTIUMII is not set
Actual value:
Value requested for CONFIG_MPENTIUMIII not in final .config
Requested value: # CONFIG_MPENTIUMIII is not set
Actual value:
Value requested for CONFIG_MPENTIUMM not in final .config
Requested value: # CONFIG_MPENTIUMM is not set
Actual value:
Value requested for CONFIG_MPENTIUM4 not in final .config
Requested value: # CONFIG_MPENTIUM4 is not set
Actual value:
Value requested for CONFIG_MK6 not in final .config
Requested value: # CONFIG_MK6 is not set
Actual value:
Value requested for CONFIG_MK7 not in final .config
Requested value: # CONFIG_MK7 is not set
Actual value:
Value requested for CONFIG_MCRUSOE not in final .config
Requested value: # CONFIG_MCRUSOE is not set
Actual value:
Value requested for CONFIG_MEFFICEON not in final .config
Requested value: # CONFIG_MEFFICEON is not set
Actual value:
Value requested for CONFIG_MWINCHIPC6 not in final .config
Requested value: # CONFIG_MWINCHIPC6 is not set
Actual value:
Value requested for CONFIG_MWINCHIP3D not in final .config
Requested value: # CONFIG_MWINCHIP3D is not set
Actual value:
Value requested for CONFIG_MELAN not in final .config
Requested value: # CONFIG_MELAN is not set
Actual value:
Value requested for CONFIG_MGEODEGX1 not in final .config
Requested value: # CONFIG_MGEODEGX1 is not set
Actual value:
Value requested for CONFIG_MGEODE_LX not in final .config
Requested value: # CONFIG_MGEODE_LX is not set
Actual value:
Value requested for CONFIG_MCYRIXIII not in final .config
Requested value: # CONFIG_MCYRIXIII is not set
Actual value:
Value requested for CONFIG_MVIAC3_2 not in final .config
Requested value: # CONFIG_MVIAC3_2 is not set
Actual value:
Value requested for CONFIG_MVIAC7 not in final .config
Requested value: # CONFIG_MVIAC7 is not set
Actual value:
Value requested for CONFIG_MATOM not in final .config
Requested value: # CONFIG_MATOM is not set
Actual value:
Value requested for CONFIG_X86_GENERIC not in final .config
Requested value: # CONFIG_X86_GENERIC is not set
Actual value:
Value requested for CONFIG_X86_INTERNODE_CACHE_SHIFT not in final .config
Requested value: CONFIG_X86_INTERNODE_CACHE_SHIFT=5
Actual value: CONFIG_X86_INTERNODE_CACHE_SHIFT=6
Value requested for CONFIG_X86_L1_CACHE_SHIFT not in final .config
Requested value: CONFIG_X86_L1_CACHE_SHIFT=5
Actual value: CONFIG_X86_L1_CACHE_SHIFT=6
Value requested for CONFIG_X86_USE_PPRO_CHECKSUM not in final .config
Requested value: CONFIG_X86_USE_PPRO_CHECKSUM=y
Actual value:
Value requested for CONFIG_X86_MINIMUM_CPU_FAMILY not in final .config
Requested value: CONFIG_X86_MINIMUM_CPU_FAMILY=6
Actual value: CONFIG_X86_MINIMUM_CPU_FAMILY=64
Value requested for CONFIG_CPU_SUP_TRANSMETA_32 not in final .config
Requested value: CONFIG_CPU_SUP_TRANSMETA_32=y
Actual value:
Value requested for CONFIG_CPU_SUP_VORTEX_32 not in final .config
Requested value: CONFIG_CPU_SUP_VORTEX_32=y
Actual value:
Value requested for CONFIG_HPET_TIMER not in final .config
Requested value: # CONFIG_HPET_TIMER is not set
Actual value: CONFIG_HPET_TIMER=y
Value requested for CONFIG_NR_CPUS_RANGE_END not in final .config
Requested value: CONFIG_NR_CPUS_RANGE_END=8
Actual value: CONFIG_NR_CPUS_RANGE_END=512
Value requested for CONFIG_NR_CPUS_DEFAULT not in final .config
Requested value: CONFIG_NR_CPUS_DEFAULT=8
Actual value: CONFIG_NR_CPUS_DEFAULT=64
Value requested for CONFIG_X86_ANCIENT_MCE not in final .config
Requested value: # CONFIG_X86_ANCIENT_MCE is not set
Actual value:
Value requested for CONFIG_X86_LEGACY_VM86 not in final .config
Requested value: # CONFIG_X86_LEGACY_VM86 is not set
Actual value:
Value requested for CONFIG_X86_ESPFIX32 not in final .config
Requested value: CONFIG_X86_ESPFIX32=y
Actual value:
Value requested for CONFIG_TOSHIBA not in final .config
Requested value: # CONFIG_TOSHIBA is not set
Actual value:
Value requested for CONFIG_X86_REBOOTFIXUPS not in final .config
Requested value: # CONFIG_X86_REBOOTFIXUPS is not set
Actual value:
Value requested for CONFIG_MICROCODE_INITRD32 not in final .config
Requested value: CONFIG_MICROCODE_INITRD32=y
Actual value:
Value requested for CONFIG_HIGHMEM4G not in final .config
Requested value: # CONFIG_HIGHMEM4G is not set
Actual value:
Value requested for CONFIG_VMSPLIT_3G not in final .config
Requested value: CONFIG_VMSPLIT_3G=y
Actual value:
Value requested for CONFIG_VMSPLIT_3G_OPT not in final .config
Requested value: # CONFIG_VMSPLIT_3G_OPT is not set
Actual value:
Value requested for CONFIG_VMSPLIT_2G not in final .config
Requested value: # CONFIG_VMSPLIT_2G is not set
Actual value:
Value requested for CONFIG_VMSPLIT_2G_OPT not in final .config
Requested value: # CONFIG_VMSPLIT_2G_OPT is not set
Actual value:
Value requested for CONFIG_VMSPLIT_1G not in final .config
Requested value: # CONFIG_VMSPLIT_1G is not set
Actual value:
Value requested for CONFIG_PAGE_OFFSET not in final .config
Requested value: CONFIG_PAGE_OFFSET=0xC0000000
Actual value:
Value requested for CONFIG_X86_PAE not in final .config
Requested value: # CONFIG_X86_PAE is not set
Actual value:
Value requested for CONFIG_ARCH_FLATMEM_ENABLE not in final .config
Requested value: CONFIG_ARCH_FLATMEM_ENABLE=y
Actual value:
Value requested for CONFIG_ARCH_SELECT_MEMORY_MODEL not in final .config
Requested value: CONFIG_ARCH_SELECT_MEMORY_MODEL=y
Actual value:
Value requested for CONFIG_ILLEGAL_POINTER_VALUE not in final .config
Requested value: CONFIG_ILLEGAL_POINTER_VALUE=0
Actual value: CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
Value requested for CONFIG_COMPAT_VDSO not in final .config
Requested value: # CONFIG_COMPAT_VDSO is not set
Actual value:
Value requested for CONFIG_FUNCTION_PADDING_CFI not in final .config
Requested value: CONFIG_FUNCTION_PADDING_CFI=0
Actual value: CONFIG_FUNCTION_PADDING_CFI=11
Value requested for CONFIG_FUNCTION_PADDING_BYTES not in final .config
Requested value: CONFIG_FUNCTION_PADDING_BYTES=4
Actual value: CONFIG_FUNCTION_PADDING_BYTES=16
Value requested for CONFIG_APM not in final .config
Requested value: # CONFIG_APM is not set
Actual value:
Value requested for CONFIG_X86_POWERNOW_K6 not in final .config
Requested value: # CONFIG_X86_POWERNOW_K6 is not set
Actual value:
Value requested for CONFIG_X86_POWERNOW_K7 not in final .config
Requested value: # CONFIG_X86_POWERNOW_K7 is not set
Actual value:
Value requested for CONFIG_X86_GX_SUSPMOD not in final .config
Requested value: # CONFIG_X86_GX_SUSPMOD is not set
Actual value:
Value requested for CONFIG_X86_SPEEDSTEP_ICH not in final .config
Requested value: # CONFIG_X86_SPEEDSTEP_ICH is not set
Actual value:
Value requested for CONFIG_X86_SPEEDSTEP_SMI not in final .config
Requested value: # CONFIG_X86_SPEEDSTEP_SMI is not set
Actual value:
Value requested for CONFIG_X86_CPUFREQ_NFORCE2 not in final .config
Requested value: # CONFIG_X86_CPUFREQ_NFORCE2 is not set
Actual value:
Value requested for CONFIG_X86_LONGRUN not in final .config
Requested value: # CONFIG_X86_LONGRUN is not set
Actual value:
Value requested for CONFIG_X86_LONGHAUL not in final .config
Requested value: # CONFIG_X86_LONGHAUL is not set
Actual value:
Value requested for CONFIG_X86_E_POWERSAVER not in final .config
Requested value: # CONFIG_X86_E_POWERSAVER is not set
Actual value:
Value requested for CONFIG_PCI_GOBIOS not in final .config
Requested value: # CONFIG_PCI_GOBIOS is not set
Actual value:
Value requested for CONFIG_PCI_GOMMCONFIG not in final .config
Requested value: # CONFIG_PCI_GOMMCONFIG is not set
Actual value:
Value requested for CONFIG_PCI_GODIRECT not in final .config
Requested value: # CONFIG_PCI_GODIRECT is not set
Actual value:
Value requested for CONFIG_PCI_GOANY not in final .config
Requested value: CONFIG_PCI_GOANY=y
Actual value:
Value requested for CONFIG_PCI_BIOS not in final .config
Requested value: CONFIG_PCI_BIOS=y
Actual value:
Value requested for CONFIG_ISA not in final .config
Requested value: # CONFIG_ISA is not set
Actual value:
Value requested for CONFIG_SCx200 not in final .config
Requested value: # CONFIG_SCx200 is not set
Actual value:
Value requested for CONFIG_OLPC not in final .config
Requested value: # CONFIG_OLPC is not set
Actual value:
Value requested for CONFIG_ALIX not in final .config
Requested value: # CONFIG_ALIX is not set
Actual value:
Value requested for CONFIG_NET5501 not in final .config
Requested value: # CONFIG_NET5501 is not set
Actual value:
Value requested for CONFIG_GEOS not in final .config
Requested value: # CONFIG_GEOS is not set
Actual value:
Value requested for CONFIG_COMPAT_32 not in final .config
Requested value: CONFIG_COMPAT_32=y
Actual value:
Value requested for CONFIG_HAVE_ATOMIC_IOMAP not in final .config
Requested value: CONFIG_HAVE_ATOMIC_IOMAP=y
Actual value:
Value requested for CONFIG_X86_DISABLED_FEATURE_PCID not in final .config
Requested value: CONFIG_X86_DISABLED_FEATURE_PCID=y
Actual value:
Value requested for CONFIG_X86_DISABLED_FEATURE_PKU not in final .config
Requested value: CONFIG_X86_DISABLED_FEATURE_PKU=y
Actual value:
Value requested for CONFIG_X86_DISABLED_FEATURE_OSPKE not in final .config
Requested value: CONFIG_X86_DISABLED_FEATURE_OSPKE=y
Actual value:
Value requested for CONFIG_X86_DISABLED_FEATURE_LA57 not in final .config
Requested value: CONFIG_X86_DISABLED_FEATURE_LA57=y
Actual value:
Value requested for CONFIG_X86_DISABLED_FEATURE_PTI not in final .config
Requested value: CONFIG_X86_DISABLED_FEATURE_PTI=y
Actual value:
Value requested for CONFIG_X86_DISABLED_FEATURE_IBT not in final .config
Requested value: CONFIG_X86_DISABLED_FEATURE_IBT=y
Actual value:
Value requested for CONFIG_X86_DISABLED_FEATURE_INVLPGB not in final .config
Requested value: CONFIG_X86_DISABLED_FEATURE_INVLPGB=y
Actual value:
Value requested for CONFIG_ARCH_32BIT_OFF_T not in final .config
Requested value: CONFIG_ARCH_32BIT_OFF_T=y
Actual value:
Value requested for CONFIG_ARCH_WANT_IPC_PARSE_VERSION not in final .config
Requested value: CONFIG_ARCH_WANT_IPC_PARSE_VERSION=y
Actual value:
Value requested for CONFIG_MODULES_USE_ELF_REL not in final .config
Requested value: CONFIG_MODULES_USE_ELF_REL=y
Actual value:
Value requested for CONFIG_ARCH_MMAP_RND_BITS not in final .config
Requested value: CONFIG_ARCH_MMAP_RND_BITS=8
Actual value: CONFIG_ARCH_MMAP_RND_BITS=28
Value requested for CONFIG_CLONE_BACKWARDS not in final .config
Requested value: CONFIG_CLONE_BACKWARDS=y
Actual value:
Value requested for CONFIG_OLD_SIGSUSPEND3 not in final .config
Requested value: CONFIG_OLD_SIGSUSPEND3=y
Actual value:
Value requested for CONFIG_OLD_SIGACTION not in final .config
Requested value: CONFIG_OLD_SIGACTION=y
Actual value:
Value requested for CONFIG_ARCH_SPLIT_ARG64 not in final .config
Requested value: CONFIG_ARCH_SPLIT_ARG64=y
Actual value:
Value requested for CONFIG_FUNCTION_ALIGNMENT not in final .config
Requested value: CONFIG_FUNCTION_ALIGNMENT=4
Actual value: CONFIG_FUNCTION_ALIGNMENT=16
Value requested for CONFIG_SELECT_MEMORY_MODEL not in final .config
Requested value: CONFIG_SELECT_MEMORY_MODEL=y
Actual value:
Value requested for CONFIG_FLATMEM_MANUAL not in final .config
Requested value: CONFIG_FLATMEM_MANUAL=y
Actual value:
Value requested for CONFIG_SPARSEMEM_MANUAL not in final .config
Requested value: # CONFIG_SPARSEMEM_MANUAL is not set
Actual value:
Value requested for CONFIG_FLATMEM not in final .config
Requested value: CONFIG_FLATMEM=y
Actual value:
Value requested for CONFIG_SPARSEMEM_STATIC not in final .config
Requested value: CONFIG_SPARSEMEM_STATIC=y
Actual value:
Value requested for CONFIG_KMAP_LOCAL not in final .config
Requested value: CONFIG_KMAP_LOCAL=y
Actual value:
Value requested for CONFIG_HAVE_EISA not in final .config
Requested value: CONFIG_HAVE_EISA=y
Actual value:
Value requested for CONFIG_EISA not in final .config
Requested value: # CONFIG_EISA is not set
Actual value:
Value requested for CONFIG_HOTPLUG_PCI_COMPAQ not in final .config
Requested value: # CONFIG_HOTPLUG_PCI_COMPAQ is not set
Actual value:
Value requested for CONFIG_HOTPLUG_PCI_IBM not in final .config
Requested value: # CONFIG_HOTPLUG_PCI_IBM is not set
Actual value:
Value requested for CONFIG_EFI_CAPSULE_QUIRK_QUARK_CSH not in final .config
Requested value: CONFIG_EFI_CAPSULE_QUIRK_QUARK_CSH=y
Actual value:
Value requested for CONFIG_PCH_PHUB not in final .config
Requested value: # CONFIG_PCH_PHUB is not set
Actual value:
Value requested for CONFIG_SCSI_NSP32 not in final .config
Requested value: # CONFIG_SCSI_NSP32 is not set
Actual value:
Value requested for CONFIG_PATA_CS5520 not in final .config
Requested value: # CONFIG_PATA_CS5520 is not set
Actual value:
Value requested for CONFIG_PATA_CS5530 not in final .config
Requested value: # CONFIG_PATA_CS5530 is not set
Actual value:
Value requested for CONFIG_PATA_CS5535 not in final .config
Requested value: # CONFIG_PATA_CS5535 is not set
Actual value:
Value requested for CONFIG_PATA_CS5536 not in final .config
Requested value: # CONFIG_PATA_CS5536 is not set
Actual value:
Value requested for CONFIG_PATA_SC1200 not in final .config
Requested value: # CONFIG_PATA_SC1200 is not set
Actual value:
Value requested for CONFIG_PCH_GBE not in final .config
Requested value: # CONFIG_PCH_GBE is not set
Actual value:
Value requested for CONFIG_INPUT_WISTRON_BTNS not in final .config
Requested value: # CONFIG_INPUT_WISTRON_BTNS is not set
Actual value:
Value requested for CONFIG_SERIAL_TIMBERDALE not in final .config
Requested value: # CONFIG_SERIAL_TIMBERDALE is not set
Actual value:
Value requested for CONFIG_SERIAL_PCH_UART not in final .config
Requested value: # CONFIG_SERIAL_PCH_UART is not set
Actual value:
Value requested for CONFIG_HW_RANDOM_GEODE not in final .config
Requested value: CONFIG_HW_RANDOM_GEODE=y
Actual value:
Value requested for CONFIG_SONYPI not in final .config
Requested value: # CONFIG_SONYPI is not set
Actual value:
Value requested for CONFIG_PC8736x_GPIO not in final .config
Requested value: # CONFIG_PC8736x_GPIO is not set
Actual value:
Value requested for CONFIG_NSC_GPIO not in final .config
Requested value: # CONFIG_NSC_GPIO is not set
Actual value:
Value requested for CONFIG_I2C_EG20T not in final .config
Requested value: # CONFIG_I2C_EG20T is not set
Actual value:
Value requested for CONFIG_SCx200_ACB not in final .config
Requested value: # CONFIG_SCx200_ACB is not set
Actual value:
Value requested for CONFIG_PTP_1588_CLOCK_PCH not in final .config
Requested value: # CONFIG_PTP_1588_CLOCK_PCH is not set
Actual value:
Value requested for CONFIG_SBC8360_WDT not in final .config
Requested value: # CONFIG_SBC8360_WDT is not set
Actual value:
Value requested for CONFIG_SBC7240_WDT not in final .config
Requested value: # CONFIG_SBC7240_WDT is not set
Actual value:
Value requested for CONFIG_MFD_CS5535 not in final .config
Requested value: # CONFIG_MFD_CS5535 is not set
Actual value:
Value requested for CONFIG_AGP_ALI not in final .config
Requested value: # CONFIG_AGP_ALI is not set
Actual value:
Value requested for CONFIG_AGP_ATI not in final .config
Requested value: # CONFIG_AGP_ATI is not set
Actual value:
Value requested for CONFIG_AGP_AMD not in final .config
Requested value: # CONFIG_AGP_AMD is not set
Actual value:
Value requested for CONFIG_AGP_NVIDIA not in final .config
Requested value: # CONFIG_AGP_NVIDIA is not set
Actual value:
Value requested for CONFIG_AGP_SWORKS not in final .config
Requested value: # CONFIG_AGP_SWORKS is not set
Actual value:
Value requested for CONFIG_AGP_EFFICEON not in final .config
Requested value: # CONFIG_AGP_EFFICEON is not set
Actual value:
Value requested for CONFIG_SND_CS5530 not in final .config
Requested value: # CONFIG_SND_CS5530 is not set
Actual value:
Value requested for CONFIG_SND_CS5535AUDIO not in final .config
Requested value: # CONFIG_SND_CS5535AUDIO is not set
Actual value:
Value requested for CONFIG_SND_SIS7019 not in final .config
Requested value: # CONFIG_SND_SIS7019 is not set
Actual value:
Value requested for CONFIG_LEDS_OT200 not in final .config
Requested value: # CONFIG_LEDS_OT200 is not set
Actual value:
Value requested for CONFIG_PCH_DMA not in final .config
Requested value: # CONFIG_PCH_DMA is not set
Actual value:
Value requested for CONFIG_CLKSRC_I8253 not in final .config
Requested value: CONFIG_CLKSRC_I8253=y
Actual value:
Value requested for CONFIG_MAILBOX not in final .config
Requested value: # CONFIG_MAILBOX is not set
Actual value: CONFIG_MAILBOX=y
Value requested for CONFIG_CRYPTO_SERPENT_SSE2_586 not in final .config
Requested value: # CONFIG_CRYPTO_SERPENT_SSE2_586 is not set
Actual value:
Value requested for CONFIG_CRYPTO_TWOFISH_586 not in final .config
Requested value: # CONFIG_CRYPTO_TWOFISH_586 is not set
Actual value:
Value requested for CONFIG_CRYPTO_DEV_GEODE not in final .config
Requested value: # CONFIG_CRYPTO_DEV_GEODE is not set
Actual value:
Value requested for CONFIG_CRYPTO_DEV_HIFN_795X not in final .config
Requested value: # CONFIG_CRYPTO_DEV_HIFN_795X is not set
Actual value:
Value requested for CONFIG_CRYPTO_LIB_POLY1305_RSIZE not in final .config
Requested value: CONFIG_CRYPTO_LIB_POLY1305_RSIZE=1
Actual value: CONFIG_CRYPTO_LIB_POLY1305_RSIZE=11
Value requested for CONFIG_AUDIT_GENERIC not in final .config
Requested value: CONFIG_AUDIT_GENERIC=y
Actual value:
Value requested for CONFIG_GENERIC_VDSO_32 not in final .config
Requested value: CONFIG_GENERIC_VDSO_32=y
Actual value:
Value requested for CONFIG_DEBUG_KMAP_LOCAL not in final .config
Requested value: # CONFIG_DEBUG_KMAP_LOCAL is not set
Actual value:
Value requested for CONFIG_HAVE_DEBUG_STACKOVERFLOW not in final .config
Requested value: CONFIG_HAVE_DEBUG_STACKOVERFLOW=y
Actual value:
Value requested for CONFIG_DEBUG_STACKOVERFLOW not in final .config
Requested value: # CONFIG_DEBUG_STACKOVERFLOW is not set
Actual value:
Value requested for CONFIG_HAVE_FUNCTION_GRAPH_TRACER not in final .config
Requested value: CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
Actual value:
Value requested for CONFIG_HAVE_FUNCTION_GRAPH_FREGS not in final .config
Requested value: CONFIG_HAVE_FUNCTION_GRAPH_FREGS=y
Actual value:
Value requested for CONFIG_HAVE_FTRACE_GRAPH_FUNC not in final .config
Requested value: CONFIG_HAVE_FTRACE_GRAPH_FUNC=y
Actual value:
Value requested for CONFIG_DRM_KUNIT_TEST not in final .config
Requested value: CONFIG_DRM_KUNIT_TEST=m
Actual value:
Value requested for CONFIG_DRM_XE_WERROR not in final .config
Requested value: CONFIG_DRM_XE_WERROR=y
Actual value:
Value requested for CONFIG_DRM_XE_DEBUG not in final .config
Requested value: CONFIG_DRM_XE_DEBUG=y
Actual value:
Value requested for CONFIG_DRM_XE_DEBUG_MEM not in final .config
Requested value: CONFIG_DRM_XE_DEBUG_MEM=y
Actual value:
Value requested for CONFIG_DRM_XE_KUNIT_TEST not in final .config
Requested value: CONFIG_DRM_XE_KUNIT_TEST=m
Actual value:
++ nproc
+ make -j48 ARCH=i386 olddefconfig
GEN Makefile
#
# configuration written to .config
#
++ nproc
+ make -j48 ARCH=i386
SYNC include/config/auto.conf.cmd
GEN Makefile
GEN Makefile
WRAP arch/x86/include/generated/uapi/asm/bpf_perf_event.h
WRAP arch/x86/include/generated/uapi/asm/errno.h
WRAP arch/x86/include/generated/uapi/asm/fcntl.h
WRAP arch/x86/include/generated/uapi/asm/ioctl.h
SYSHDR arch/x86/include/generated/uapi/asm/unistd_32.h
WRAP arch/x86/include/generated/uapi/asm/ipcbuf.h
WRAP arch/x86/include/generated/uapi/asm/ioctls.h
WRAP arch/x86/include/generated/uapi/asm/param.h
SYSHDR arch/x86/include/generated/uapi/asm/unistd_64.h
WRAP arch/x86/include/generated/uapi/asm/poll.h
SYSHDR arch/x86/include/generated/uapi/asm/unistd_x32.h
WRAP arch/x86/include/generated/uapi/asm/socket.h
WRAP arch/x86/include/generated/uapi/asm/resource.h
SYSTBL arch/x86/include/generated/asm/syscalls_32.h
WRAP arch/x86/include/generated/uapi/asm/sockios.h
UPD include/generated/uapi/linux/version.h
WRAP arch/x86/include/generated/uapi/asm/termbits.h
WRAP arch/x86/include/generated/uapi/asm/termios.h
WRAP arch/x86/include/generated/uapi/asm/types.h
UPD arch/x86/include/generated/asm/cpufeaturemasks.h
WRAP arch/x86/include/generated/asm/early_ioremap.h
WRAP arch/x86/include/generated/asm/fprobe.h
WRAP arch/x86/include/generated/asm/mcs_spinlock.h
UPD include/generated/compile.h
WRAP arch/x86/include/generated/asm/mmzone.h
WRAP arch/x86/include/generated/asm/irq_regs.h
HOSTCC arch/x86/tools/relocs_32.o
WRAP arch/x86/include/generated/asm/kmap_size.h
HOSTCC arch/x86/tools/relocs_64.o
WRAP arch/x86/include/generated/asm/local64.h
WRAP arch/x86/include/generated/asm/mmiowb.h
HOSTCC arch/x86/tools/relocs_common.o
WRAP arch/x86/include/generated/asm/module.lds.h
WRAP arch/x86/include/generated/asm/rwonce.h
HOSTCC scripts/kallsyms
HOSTCC scripts/sorttable
HOSTCC scripts/asn1_compiler
HOSTCC scripts/selinux/mdp/mdp
HOSTLD arch/x86/tools/relocs
UPD include/config/kernel.release
UPD include/generated/utsrelease.h
CC scripts/mod/empty.o
HOSTCC scripts/mod/mk_elfconfig
CC scripts/mod/devicetable-offsets.s
UPD scripts/mod/devicetable-offsets.h
MKELF scripts/mod/elfconfig.h
HOSTCC scripts/mod/modpost.o
HOSTCC scripts/mod/file2alias.o
HOSTCC scripts/mod/sumversion.o
HOSTCC scripts/mod/symsearch.o
HOSTLD scripts/mod/modpost
CC kernel/bounds.s
CHKSHA1 /workspace/kernel/include/linux/atomic/atomic-arch-fallback.h
CHKSHA1 /workspace/kernel/include/linux/atomic/atomic-instrumented.h
CHKSHA1 /workspace/kernel/include/linux/atomic/atomic-long.h
UPD include/generated/timeconst.h
UPD include/generated/bounds.h
CC arch/x86/kernel/asm-offsets.s
UPD include/generated/asm-offsets.h
CALL /workspace/kernel/scripts/checksyscalls.sh
LDS scripts/module.lds
HOSTCC usr/gen_init_cpio
CC init/main.o
CC init/do_mounts.o
CC certs/system_keyring.o
CC init/do_mounts_initrd.o
UPD init/utsversion-tmp.h
CC ipc/util.o
CC mm/filemap.o
CC init/initramfs.o
CC ipc/msgutil.o
CC mm/mempool.o
CC security/commoncap.o
CC init/calibrate.o
CC ipc/msg.o
CC mm/oom_kill.o
CC security/lsm_syscalls.o
CC block/bdev.o
AS arch/x86/lib/atomic64_cx8_32.o
CC io_uring/io_uring.o
CC ipc/sem.o
CC init/init_task.o
CC arch/x86/pci/i386.o
CC block/fops.o
CC security/keys/gc.o
CC arch/x86/power/cpu.o
CC arch/x86/realmode/init.o
CC arch/x86/video/video-common.o
AR arch/x86/crypto/built-in.a
CC security/integrity/iint.o
AR arch/x86/net/built-in.a
HOSTCC security/selinux/genheaders
CC block/partitions/core.o
AR virt/lib/built-in.a
CC arch/x86/events/amd/core.o
CC arch/x86/events/intel/core.o
AS arch/x86/realmode/rm/header.o
AR drivers/cache/built-in.a
CC arch/x86/virt/svm/cmdline.o
CC net/core/sock.o
AR arch/x86/platform/atom/built-in.a
CC arch/x86/mm/pat/set_memory.o
AR sound/i2c/other/built-in.a
AR virt/built-in.a
CC lib/math/div64.o
AR lib/math/tests/built-in.a
CC sound/core/seq/seq.o
CC arch/x86/kernel/fpu/init.o
CC fs/notify/dnotify/dnotify.o
AR arch/x86/platform/ce4100/built-in.a
AR sound/i2c/built-in.a
CC arch/x86/events/amd/lbr.o
AS arch/x86/realmode/rm/trampoline_32.o
AS arch/x86/lib/checksum_32.o
CC arch/x86/entry/vdso/vma.o
AR drivers/irqchip/built-in.a
CC sound/core/sound.o
CC arch/x86/platform/efi/memmap.o
CC arch/x86/mm/init.o
CC mm/fadvise.o
AR drivers/bus/mhi/built-in.a
AS arch/x86/realmode/rm/stack.o
AR drivers/bus/built-in.a
CC kernel/sched/core.o
CC arch/x86/lib/cmdline.o
AS arch/x86/realmode/rm/reboot.o
CC crypto/asymmetric_keys/asymmetric_type.o
AR drivers/pwm/built-in.a
AS arch/x86/realmode/rm/wakeup_asm.o
AR drivers/leds/trigger/built-in.a
AR drivers/leds/blink/built-in.a
AR arch/x86/virt/svm/built-in.a
CC arch/x86/realmode/rm/wakemain.o
AR arch/x86/virt/vmx/built-in.a
AR drivers/leds/simatic/built-in.a
AR arch/x86/virt/built-in.a
CC drivers/leds/led-core.o
CC arch/x86/mm/init_32.o
AS arch/x86/lib/cmpxchg8b_emu.o
CC lib/math/gcd.o
GEN security/selinux/flask.h security/selinux/av_permissions.h
CC security/selinux/avc.o
CC arch/x86/lib/cpu.o
CC arch/x86/realmode/rm/video-mode.o
CC lib/math/lcm.o
CC lib/math/int_log.o
CC security/min_addr.o
AS arch/x86/realmode/rm/copy.o
GEN usr/initramfs_data.cpio
COPY usr/initramfs_inc_data
AS arch/x86/realmode/rm/bioscall.o
AS usr/initramfs_data.o
CC arch/x86/kernel/fpu/bugs.o
HOSTCC certs/extract-cert
CC arch/x86/realmode/rm/regs.o
AR usr/built-in.a
CC arch/x86/realmode/rm/video-vga.o
CC lib/math/int_pow.o
CC arch/x86/mm/pat/memtype.o
CC lib/math/int_sqrt.o
CC arch/x86/kernel/fpu/core.o
CC arch/x86/realmode/rm/video-vesa.o
CC lib/math/reciprocal_div.o
CC arch/x86/realmode/rm/video-bios.o
CC sound/core/seq/seq_lock.o
CC arch/x86/lib/delay.o
CC arch/x86/kernel/fpu/regset.o
CC lib/math/rational.o
AR arch/x86/video/built-in.a
CC ipc/shm.o
PASYMS arch/x86/realmode/rm/pasyms.h
CC net/core/request_sock.o
CERT certs/x509_certificate_list
CERT certs/signing_key.x509
AS certs/system_certificates.o
LDS arch/x86/realmode/rm/realmode.lds
CC security/integrity/integrity_audit.o
AR certs/built-in.a
LD arch/x86/realmode/rm/realmode.elf
CC sound/core/init.o
RELOCS arch/x86/realmode/rm/realmode.relocs
CC crypto/asymmetric_keys/restrict.o
OBJCOPY arch/x86/realmode/rm/realmode.bin
CC crypto/asymmetric_keys/signature.o
AS arch/x86/realmode/rmpiggy.o
CC drivers/leds/led-class.o
AR arch/x86/realmode/built-in.a
CC crypto/asymmetric_keys/public_key.o
CC drivers/leds/led-triggers.o
CC crypto/api.o
CC block/bio.o
CC arch/x86/pci/init.o
CC lib/crypto/mpi/generic_mpih-lshift.o
CC security/keys/key.o
CC arch/x86/entry/vdso/extable.o
AR fs/notify/dnotify/built-in.a
CC arch/x86/platform/efi/quirks.o
CC fs/notify/inotify/inotify_fsnotify.o
CC arch/x86/power/hibernate_32.o
AS arch/x86/lib/getuser.o
CC block/partitions/msdos.o
CC lib/crypto/memneq.o
CC kernel/locking/mutex.o
GEN arch/x86/lib/inat-tables.c
CC arch/x86/lib/insn-eval.o
CC sound/core/seq/seq_clientmgr.o
CC arch/x86/mm/fault.o
CC arch/x86/kernel/fpu/signal.o
CC kernel/power/qos.o
CC crypto/cipher.o
AR lib/math/built-in.a
AR fs/notify/fanotify/built-in.a
AR arch/x86/platform/geode/built-in.a
CC ipc/syscall.o
AR arch/x86/platform/iris/built-in.a
CC arch/x86/events/zhaoxin/core.o
CC net/core/skbuff.o
CC security/keys/keyring.o
CC security/keys/keyctl.o
CC lib/crypto/utils.o
CC io_uring/opdef.o
CC arch/x86/events/amd/ibs.o
AR arch/x86/entry/vsyscall/built-in.a
AS arch/x86/power/hibernate_asm_32.o
CC init/version.o
CC arch/x86/events/intel/bts.o
CC mm/maccess.o
CC arch/x86/platform/efi/efi.o
CC fs/notify/inotify/inotify_user.o
CC kernel/locking/semaphore.o
CC arch/x86/pci/pcbios.o
CC ipc/ipc_sysctl.o
CC arch/x86/mm/pat/memtype_interval.o
ASN.1 crypto/asymmetric_keys/x509.asn1.[ch]
ASN.1 crypto/asymmetric_keys/x509_akid.asn1.[ch]
CC crypto/asymmetric_keys/x509_loader.o
CC lib/crypto/mpi/generic_mpih-mul1.o
AR security/integrity/built-in.a
AR init/built-in.a
CC crypto/asymmetric_keys/x509_public_key.o
CC kernel/printk/printk.o
CC lib/crypto/mpi/generic_mpih-mul2.o
AR drivers/leds/built-in.a
CC drivers/pci/pcie/portdrv.o
CC drivers/pci/msi/pcidev_msi.o
CC arch/x86/power/hibernate.o
CC drivers/pci/msi/api.o
CC arch/x86/platform/efi/efi_32.o
LDS arch/x86/entry/vdso/vdso32/vdso32.lds
AS arch/x86/entry/vdso/vdso32/note.o
CC block/partitions/efi.o
CC lib/crypto/mpi/generic_mpih-mul3.o
AS arch/x86/entry/vdso/vdso32/system_call.o
CC lib/crypto/mpi/generic_mpih-rshift.o
CC net/ethernet/eth.o
CC drivers/pci/pcie/rcec.o
AS arch/x86/entry/vdso/vdso32/sigreturn.o
CC arch/x86/entry/vdso/vdso32/vclock_gettime.o
CC block/elevator.o
AR lib/tests/built-in.a
CC block/blk-core.o
CC drivers/video/console/dummycon.o
CC arch/x86/lib/insn.o
CC security/selinux/hooks.o
CC drivers/video/backlight/backlight.o
AR drivers/video/fbdev/core/built-in.a
AR drivers/video/fbdev/omap/built-in.a
CC arch/x86/kernel/fpu/xstate.o
AR drivers/idle/built-in.a
AR drivers/video/fbdev/omap2/omapfb/dss/built-in.a
CC mm/page-writeback.o
AR drivers/video/fbdev/omap2/omapfb/displays/built-in.a
AR drivers/video/fbdev/omap2/omapfb/built-in.a
AR drivers/video/fbdev/omap2/built-in.a
CC ipc/mqueue.o
AR drivers/video/fbdev/built-in.a
CC kernel/sched/fair.o
CC security/keys/permission.o
AR arch/x86/events/zhaoxin/built-in.a
CC sound/core/memory.o
CC arch/x86/lib/kaslr.o
CC arch/x86/events/amd/uncore.o
CC arch/x86/platform/intel/iosf_mbi.o
ASN.1 crypto/asymmetric_keys/pkcs7.asn1.[ch]
AR arch/x86/mm/pat/built-in.a
CC crypto/asymmetric_keys/pkcs7_trust.o
CC drivers/pci/pcie/bwctrl.o
CC net/core/datagram.o
CC kernel/power/main.o
CC arch/x86/pci/mmconfig_32.o
CC net/core/stream.o
AR drivers/char/ipmi/built-in.a
CC drivers/video/console/vgacon.o
CC kernel/printk/printk_safe.o
AR arch/x86/power/built-in.a
CC kernel/locking/rwsem.o
CC crypto/algapi.o
CC lib/crypto/mpi/generic_mpih-sub1.o
CC drivers/video/aperture.o
CC drivers/pci/msi/msi.o
CC sound/core/seq/seq_memory.o
CC arch/x86/lib/memcpy_32.o
CC arch/x86/mm/ioremap.o
CC arch/x86/entry/vdso/vdso32/vgetcpu.o
AR fs/notify/inotify/built-in.a
AS arch/x86/lib/memmove_32.o
CC fs/notify/fsnotify.o
CC kernel/sched/build_policy.o
AS arch/x86/platform/efi/efi_stub_32.o
CC arch/x86/lib/misc.o
CC arch/x86/lib/pc-conf-reg.o
CC arch/x86/platform/efi/runtime-map.o
CC drivers/video/cmdline.o
CC kernel/printk/nbcon.o
HOSTCC arch/x86/entry/vdso/vdso2c
CC sound/core/seq/seq_queue.o
CC drivers/pci/msi/irqdomain.o
CC kernel/irq/irqdesc.o
CC security/keys/process_keys.o
CC crypto/asymmetric_keys/pkcs7_verify.o
CC drivers/video/nomodeset.o
AR block/partitions/built-in.a
AS arch/x86/lib/putuser.o
CC security/security.o
AS arch/x86/lib/retpoline.o
CC arch/x86/lib/string_32.o
CC arch/x86/lib/strstr_32.o
CC fs/nfs_common/nfsacl.o
AR drivers/video/backlight/built-in.a
CC arch/x86/lib/usercopy.o
CC fs/iomap/trace.o
CC fs/quota/dquot.o
CC arch/x86/pci/direct.o
CC drivers/pci/pcie/aspm.o
CC arch/x86/entry/vdso/vdso32-setup.o
AR arch/x86/platform/intel/built-in.a
CC fs/proc/task_mmu.o
CC lib/crypto/mpi/generic_mpih-add1.o
AS arch/x86/entry/entry.o
CC fs/kernfs/mount.o
CC fs/iomap/iter.o
CC fs/iomap/buffered-io.o
CC crypto/asymmetric_keys/x509.asn1.o
CC crypto/asymmetric_keys/x509_akid.asn1.o
AR net/ethernet/built-in.a
CC sound/core/seq/seq_fifo.o
CC crypto/asymmetric_keys/x509_cert_parser.o
AR arch/x86/kernel/fpu/built-in.a
CC arch/x86/lib/usercopy_32.o
CC arch/x86/kernel/cpu/mce/core.o
CC net/core/scm.o
CC kernel/locking/percpu-rwsem.o
VDSO arch/x86/entry/vdso/vdso32.so.dbg
CC net/core/gen_stats.o
OBJCOPY arch/x86/entry/vdso/vdso32.so
CC arch/x86/mm/extable.o
CC net/core/gen_estimator.o
VDSO2C arch/x86/entry/vdso/vdso-image-32.c
AR arch/x86/platform/efi/built-in.a
CC arch/x86/entry/vdso/vdso-image-32.o
CC fs/sysfs/file.o
CC kernel/irq/handle.o
AR arch/x86/platform/intel-mid/built-in.a
CC kernel/power/console.o
AR arch/x86/platform/intel-quark/built-in.a
CC fs/proc/inode.o
CC kernel/rcu/update.o
AR arch/x86/platform/olpc/built-in.a
AR arch/x86/events/amd/built-in.a
AR drivers/video/console/built-in.a
CC fs/iomap/direct-io.o
CC arch/x86/kernel/acpi/boot.o
AR arch/x86/platform/scx200/built-in.a
CC drivers/video/hdmi.o
CC fs/iomap/ioend.o
AR arch/x86/platform/ts5500/built-in.a
AR arch/x86/platform/uv/built-in.a
AR arch/x86/platform/built-in.a
CC crypto/scatterwalk.o
CC sound/core/control.o
CC fs/notify/notification.o
AR drivers/pci/msi/built-in.a
CC kernel/printk/printk_ringbuffer.o
CC arch/x86/events/intel/ds.o
CC arch/x86/lib/msr-smp.o
CC lib/crypto/mpi/mpicoder.o
AR arch/x86/entry/vdso/built-in.a
CC fs/nfs_common/grace.o
AS arch/x86/entry/entry_32.o
CC arch/x86/pci/mmconfig-shared.o
CC arch/x86/entry/syscall_32.o
CC fs/iomap/fiemap.o
CC ipc/namespace.o
CC security/keys/request_key.o
CC crypto/asymmetric_keys/pkcs7.asn1.o
CC crypto/asymmetric_keys/pkcs7_parser.o
CC sound/core/seq/seq_prioq.o
CC arch/x86/kernel/cpu/mce/severity.o
CC arch/x86/lib/cache-smp.o
CC kernel/irq/manage.o
CC kernel/locking/spinlock.o
CC fs/kernfs/inode.o
CC mm/folio-compat.o
CC block/blk-sysfs.o
CC arch/x86/kernel/cpu/mtrr/mtrr.o
CC arch/x86/lib/crc32-glue.o
CC arch/x86/kernel/cpu/mtrr/if.o
CC kernel/power/process.o
CC io_uring/kbuf.o
CC fs/notify/group.o
AR sound/drivers/opl3/built-in.a
CC fs/sysfs/dir.o
AR sound/drivers/opl4/built-in.a
CC mm/readahead.o
AR sound/drivers/mpu401/built-in.a
AR sound/drivers/vx/built-in.a
CC arch/x86/kernel/cpu/mce/genpool.o
AR sound/drivers/pcsp/built-in.a
AR sound/drivers/built-in.a
CC arch/x86/kernel/cpu/mce/intel.o
CC arch/x86/kernel/cpu/mce/amd.o
AR drivers/video/built-in.a
CC arch/x86/mm/mmap.o
CC arch/x86/mm/pgtable.o
CC kernel/printk/sysctl.o
CC ipc/mq_sysctl.o
CC drivers/pci/pcie/pme.o
CC kernel/locking/osq_lock.o
CC lib/crypto/mpi/mpi-add.o
AR drivers/pci/pwrctrl/built-in.a
CC arch/x86/kernel/cpu/microcode/core.o
CC arch/x86/kernel/cpu/cacheinfo.o
CC fs/nfs_common/common.o
AR crypto/asymmetric_keys/built-in.a
CC crypto/proc.o
CC sound/core/seq/seq_timer.o
AS arch/x86/lib/crc32-pclmul.o
CC sound/core/misc.o
CC arch/x86/lib/msr.o
CC fs/quota/quota_v2.o
CC drivers/acpi/acpica/dsargs.o
CC arch/x86/kernel/acpi/sleep.o
CC kernel/locking/qspinlock.o
AR kernel/printk/built-in.a
CC security/selinux/selinuxfs.o
CC arch/x86/pci/fixup.o
CC fs/sysfs/symlink.o
AR ipc/built-in.a
AR sound/isa/ad1816a/built-in.a
CC kernel/power/suspend.o
CC kernel/power/hibernate.o
AR sound/isa/ad1848/built-in.a
CC security/keys/request_key_auth.o
AR sound/isa/cs423x/built-in.a
AR sound/isa/es1688/built-in.a
AR sound/isa/galaxy/built-in.a
CC fs/devpts/inode.o
CC fs/kernfs/dir.o
AR sound/isa/gus/built-in.a
AR sound/isa/msnd/built-in.a
AR sound/isa/opti9xx/built-in.a
AR sound/isa/sb/built-in.a
CC arch/x86/kernel/cpu/mtrr/generic.o
AR sound/isa/wavefront/built-in.a
CC lib/crypto/chacha.o
AS arch/x86/lib/msr-reg.o
CC fs/notify/mark.o
AR sound/isa/wss/built-in.a
AR sound/isa/built-in.a
CC fs/proc/root.o
CC lib/vdso/datastore.o
CC sound/core/device.o
CC fs/quota/quota_tree.o
AS arch/x86/entry/thunk.o
AR arch/x86/entry/built-in.a
CC drivers/acpi/acpica/dscontrol.o
CC lib/zlib_inflate/inffast.o
CC lib/zlib_deflate/deflate.o
CC lib/crypto/mpi/mpi-bit.o
CC lib/lzo/lzo1x_compress.o
CC block/blk-flush.o
CC crypto/aead.o
CC arch/x86/mm/physaddr.o
CC kernel/locking/rtmutex_api.o
AR drivers/pci/pcie/built-in.a
CC drivers/pci/hotplug/pci_hotplug_core.o
CC arch/x86/kernel/cpu/microcode/intel.o
CC kernel/locking/qrwlock.o
CC fs/iomap/seek.o
CC lib/lz4/lz4_decompress.o
AR fs/nfs_common/built-in.a
CC lib/zlib_inflate/inflate.o
CC sound/core/seq/seq_system.o
CC lib/zstd/zstd_decompress_module.o
CC mm/swap.o
CC lib/xz/xz_dec_syms.o
CC lib/dim/dim.o
CC io_uring/rsrc.o
AS arch/x86/kernel/acpi/wakeup_32.o
AR drivers/pci/controller/dwc/built-in.a
AR drivers/pci/controller/mobiveil/built-in.a
CC arch/x86/kernel/acpi/cstate.o
AR drivers/pci/controller/plda/built-in.a
AR drivers/pci/controller/built-in.a
CC lib/crypto/aes.o
AR drivers/pci/switch/built-in.a
CC lib/xz/xz_dec_stream.o
CC drivers/acpi/acpica/dsdebug.o
CC kernel/irq/spurious.o
CC fs/notify/fdinfo.o
CC arch/x86/lib/msr-reg-export.o
CC fs/sysfs/mount.o
CC security/keys/user_defined.o
CC arch/x86/kernel/apic/apic.o
AR lib/vdso/built-in.a
CC lib/crypto/arc4.o
CC lib/lzo/lzo1x_compress_safe.o
CC sound/core/info.o
CC io_uring/notif.o
CC lib/crypto/gf128mul.o
CC arch/x86/events/intel/knc.o
CC lib/zstd/decompress/huf_decompress.o
CC arch/x86/mm/tlb.o
AS arch/x86/lib/hweight.o
CC arch/x86/pci/acpi.o
CC lib/dim/net_dim.o
CC arch/x86/lib/iomem.o
CC lib/crypto/mpi/mpi-cmp.o
AR fs/devpts/built-in.a
CC arch/x86/kernel/cpu/mce/threshold.o
CC lib/dim/rdma_dim.o
CC fs/proc/base.o
CC drivers/acpi/acpica/dsfield.o
CC sound/core/seq/seq_ports.o
CC kernel/sched/build_utility.o
CC lib/zlib_inflate/infutil.o
CC lib/zlib_deflate/deftree.o
CC fs/iomap/swapfile.o
CC fs/quota/quota.o
AR arch/x86/kernel/acpi/built-in.a
CC block/blk-settings.o
CC arch/x86/kernel/cpu/scattered.o
CC lib/xz/xz_dec_lzma2.o
CC security/lsm_audit.o
CC arch/x86/kernel/cpu/mtrr/cleanup.o
CC drivers/pci/hotplug/acpi_pcihp.o
CC arch/x86/kernel/cpu/microcode/amd.o
CC kernel/irq/resend.o
CC security/device_cgroup.o
CC crypto/geniv.o
CC arch/x86/lib/atomic64_32.o
CC arch/x86/pci/legacy.o
CC kernel/rcu/sync.o
CC arch/x86/kernel/cpu/topology_common.o
AR fs/notify/built-in.a
CC arch/x86/lib/inat.o
AR drivers/acpi/pmic/built-in.a
CC security/keys/proc.o
CC kernel/power/snapshot.o
AR kernel/locking/built-in.a
CC lib/xz/xz_dec_bcj.o
CC arch/x86/kernel/apic/apic_common.o
CC lib/zlib_inflate/inftrees.o
CC fs/kernfs/file.o
CC lib/lzo/lzo1x_decompress_safe.o
CC crypto/lskcipher.o
AR arch/x86/lib/built-in.a
CC arch/x86/kernel/cpu/mtrr/amd.o
AR arch/x86/lib/lib.a
CC drivers/acpi/acpica/dsinit.o
CC arch/x86/pci/irq.o
CC lib/zlib_inflate/inflate_syms.o
CC kernel/rcu/srcutree.o
CC fs/sysfs/group.o
CC lib/crypto/mpi/mpi-sub-ui.o
CC fs/proc/generic.o
CC net/core/net_namespace.o
CC fs/quota/kqid.o
CC kernel/irq/chip.o
CC arch/x86/events/intel/lbr.o
CC security/selinux/netlink.o
CC lib/fonts/fonts.o
AR lib/lz4/built-in.a
CC lib/zlib_deflate/deflate_syms.o
AR net/802/built-in.a
CC security/selinux/nlmsgtab.o
CC block/blk-ioc.o
CC arch/x86/kernel/cpu/mtrr/cyrix.o
CC drivers/acpi/acpica/dsmethod.o
CC arch/x86/kernel/apic/apic_noop.o
CC sound/core/seq/seq_info.o
AR lib/zlib_inflate/built-in.a
AR lib/lzo/built-in.a
CC arch/x86/events/core.o
CC drivers/acpi/dptf/int340x_thermal.o
CC lib/zstd/decompress/zstd_ddict.o
AR drivers/pci/hotplug/built-in.a
AR fs/iomap/built-in.a
AR lib/dim/built-in.a
CC drivers/pci/access.o
CC net/core/secure_seq.o
AR lib/xz/built-in.a
AR kernel/livepatch/built-in.a
CC arch/x86/mm/cpu_entry_area.o
CC block/blk-map.o
CC fs/proc/array.o
CC mm/truncate.o
CC crypto/skcipher.o
CC lib/crypto/mpi/mpi-div.o
CC security/keys/sysctl.o
CC arch/x86/pci/common.o
CC net/core/flow_dissector.o
AR arch/x86/kernel/cpu/mce/built-in.a
CC arch/x86/pci/early.o
CC drivers/acpi/acpica/dsmthdat.o
AR lib/zlib_deflate/built-in.a
CC io_uring/tctx.o
CC fs/kernfs/symlink.o
CC lib/fonts/font_8x16.o
CC net/core/sysctl_net_core.o
CC drivers/acpi/x86/apple.o
AR fs/sysfs/built-in.a
CC sound/core/seq/seq_dummy.o
CC sound/core/isadma.o
CC kernel/dma/mapping.o
AR arch/x86/kernel/cpu/microcode/built-in.a
CC security/keys/keyctl_pkey.o
AR sound/pci/ac97/built-in.a
AR sound/pci/ali5451/built-in.a
AR sound/pci/asihpi/built-in.a
AR sound/ppc/built-in.a
AR sound/pci/au88x0/built-in.a
CC net/core/dev.o
AR sound/pci/aw2/built-in.a
AR sound/pci/ctxfi/built-in.a
AR drivers/acpi/dptf/built-in.a
AR sound/pci/ca0106/built-in.a
CC kernel/dma/direct.o
AR sound/pci/cs46xx/built-in.a
AR sound/pci/cs5535audio/built-in.a
CC kernel/irq/dummychip.o
CC fs/quota/netlink.o
CC arch/x86/kernel/apic/ipi.o
AR sound/pci/lola/built-in.a
AR sound/pci/lx6464es/built-in.a
CC drivers/acpi/tables.o
CC lib/crypto/blake2s.o
AR sound/pci/echoaudio/built-in.a
CC security/selinux/netif.o
CC arch/x86/kernel/cpu/mtrr/centaur.o
CC mm/vmscan.o
AR sound/pci/emu10k1/built-in.a
CC sound/pci/hda/hda_bind.o
CC arch/x86/events/probe.o
AR lib/fonts/built-in.a
CC net/sched/sch_generic.o
AR sound/arm/built-in.a
CC drivers/acpi/x86/cmos_rtc.o
CC drivers/acpi/acpica/dsobject.o
CC arch/x86/events/utils.o
CC drivers/acpi/osi.o
CC arch/x86/mm/maccess.o
CC fs/netfs/buffered_read.o
CC lib/crypto/mpi/mpi-mod.o
CC kernel/rcu/tree.o
CC arch/x86/mm/pgprot.o
CC arch/x86/mm/pgtable_32.o
CC lib/argv_split.o
CC lib/bug.o
CC lib/buildid.o
CC arch/x86/events/intel/p4.o
AR sound/core/seq/built-in.a
CC sound/core/vmaster.o
CC drivers/pci/bus.o
CC kernel/power/swap.o
CC fs/ext4/balloc.o
CC kernel/irq/devres.o
CC net/sched/sch_mq.o
CC drivers/acpi/osl.o
CC arch/x86/pci/bus_numa.o
CC block/blk-merge.o
AR security/keys/built-in.a
AR fs/kernfs/built-in.a
CC mm/shrinker.o
CC drivers/pci/probe.o
CC arch/x86/kernel/apic/vector.o
CC drivers/acpi/x86/lpss.o
CC fs/proc/fd.o
CC drivers/acpi/acpica/dsopcode.o
CC arch/x86/kernel/cpu/mtrr/legacy.o
CC io_uring/filetable.o
CC kernel/power/user.o
CC crypto/seqiv.o
CC lib/crypto/mpi/mpi-mul.o
CC lib/crypto/mpi/mpih-cmp.o
CC lib/crypto/mpi/mpih-div.o
CC sound/core/ctljack.o
AR sound/pci/ice1712/built-in.a
AR sound/pci/korg1212/built-in.a
CC arch/x86/kernel/kprobes/core.o
AR sound/pci/mixart/built-in.a
CC sound/pci/hda/hda_codec.o
CC drivers/acpi/x86/s2idle.o
CC arch/x86/kernel/kprobes/opt.o
AR fs/quota/built-in.a
CC net/sched/sch_frag.o
CC net/core/dev_api.o
CC kernel/irq/kexec.o
CC lib/zstd/decompress/zstd_decompress.o
CC kernel/rcu/rcu_segcblist.o
CC io_uring/rw.o
CC arch/x86/mm/iomap_32.o
CC drivers/acpi/utils.o
CC lib/crypto/mpi/mpih-mul.o
AR arch/x86/kernel/cpu/mtrr/built-in.a
CC fs/ext4/bitmap.o
CC arch/x86/kernel/cpu/topology_ext.o
CC lib/zstd/decompress/zstd_decompress_block.o
CC drivers/acpi/acpica/dspkginit.o
CC lib/crypto/blake2s-generic.o
CC arch/x86/pci/amd_bus.o
CC sound/core/jack.o
CC security/selinux/netnode.o
CC crypto/echainiv.o
CC fs/jbd2/transaction.o
CC fs/netfs/buffered_write.o
CC kernel/irq/autoprobe.o
CC fs/netfs/direct_read.o
CC kernel/irq/irqdomain.o
CC kernel/power/poweroff.o
CC sound/core/hwdep.o
CC arch/x86/events/intel/p6.o
CC arch/x86/kernel/cpu/topology_amd.o
AR sound/pci/nm256/built-in.a
CC fs/proc/proc_tty.o
CC net/netlink/af_netlink.o
AR sound/sh/built-in.a
CC fs/netfs/direct_write.o
CC kernel/entry/common.o
CC lib/crypto/mpi/mpi-pow.o
CC drivers/acpi/acpica/dsutils.o
CC arch/x86/mm/hugetlbpage.o
CC fs/jbd2/commit.o
CC lib/clz_tab.o
CC drivers/acpi/x86/utils.o
CC security/selinux/netport.o
CC drivers/pnp/pnpacpi/core.o
AR drivers/amba/built-in.a
CC io_uring/net.o
CC net/core/dev_addr_lists.o
CC fs/proc/cmdline.o
CC arch/x86/events/rapl.o
AR sound/pci/oxygen/built-in.a
CC kernel/irq/proc.o
AR kernel/power/built-in.a
CC kernel/entry/syscall_user_dispatch.o
AR arch/x86/kernel/kprobes/built-in.a
CC arch/x86/kernel/cpu/common.o
CC arch/x86/events/intel/pt.o
CC fs/proc/consoles.o
CC lib/crypto/sha1.o
CC mm/shmem.o
CC drivers/acpi/acpica/dswexec.o
CC crypto/ahash.o
CC drivers/pci/host-bridge.o
CC lib/cmdline.o
AR arch/x86/pci/built-in.a
CC kernel/irq/migration.o
CC block/blk-timeout.o
CC drivers/pnp/pnpacpi/rsparser.o
CC kernel/dma/ops_helpers.o
CC arch/x86/events/msr.o
CC fs/netfs/iterator.o
CC arch/x86/kernel/apic/init.o
CC net/sched/sch_api.o
CC fs/jbd2/recovery.o
CC sound/core/timer.o
CC fs/ext4/block_validity.o
CC net/core/dst.o
CC fs/netfs/locking.o
CC io_uring/poll.o
AR arch/x86/mm/built-in.a
CC sound/pci/hda/hda_jack.o
CC lib/zstd/zstd_common_module.o
CC lib/crypto/mpi/mpiutil.o
CC block/blk-lib.o
CC io_uring/eventfd.o
CC drivers/acpi/x86/blacklist.o
CC drivers/acpi/acpica/dswload.o
CC drivers/acpi/reboot.o
CC arch/x86/events/intel/uncore.o
CC crypto/shash.o
CC fs/proc/cpuinfo.o
CC kernel/irq/cpuhotplug.o
CC kernel/dma/remap.o
CC drivers/pci/remove.o
CC lib/crypto/sha256.o
CC arch/x86/kernel/apic/hw_nmi.o
CC drivers/acpi/acpica/dswload2.o
CC fs/ext4/dir.o
AR kernel/entry/built-in.a
CC drivers/pnp/core.o
CC arch/x86/kernel/cpu/rdrand.o
CC arch/x86/kernel/cpu/match.o
CC drivers/pnp/card.o
CC drivers/pci/pci.o
CC fs/netfs/main.o
CC security/selinux/status.o
CC arch/x86/kernel/apic/io_apic.o
CC mm/util.o
AR drivers/acpi/x86/built-in.a
CC fs/proc/devices.o
CC drivers/pci/pci-driver.o
CC arch/x86/events/intel/uncore_nhmex.o
CC lib/cpumask.o
AR drivers/pnp/pnpacpi/built-in.a
AR lib/crypto/mpi/built-in.a
CC io_uring/uring_cmd.o
CC lib/zstd/common/debug.o
LDS arch/x86/kernel/vmlinux.lds
AS arch/x86/kernel/head_32.o
CC drivers/acpi/acpica/dswscope.o
AR drivers/clk/actions/built-in.a
CC sound/core/hrtimer.o
CC drivers/pci/search.o
CC drivers/acpi/nvs.o
AR drivers/clk/analogbits/built-in.a
CC arch/x86/kernel/apic/msi.o
AR drivers/clk/bcm/built-in.a
AR sound/pci/pcxhr/built-in.a
CC net/sched/sch_blackhole.o
AR drivers/clk/imgtec/built-in.a
CC sound/core/pcm.o
AR drivers/clk/imx/built-in.a
CC fs/ext4/ext4_jbd2.o
AR drivers/clk/ingenic/built-in.a
AR kernel/dma/built-in.a
CC net/sched/cls_api.o
CC net/netlink/genetlink.o
CC drivers/pci/rom.o
AR drivers/clk/mediatek/built-in.a
CC block/blk-mq.o
AR lib/crypto/built-in.a
AR drivers/clk/microchip/built-in.a
CC drivers/acpi/wakeup.o
AR drivers/clk/mstar/built-in.a
CC fs/jbd2/checkpoint.o
AR drivers/clk/mvebu/built-in.a
CC io_uring/openclose.o
AR drivers/clk/ralink/built-in.a
AR drivers/clk/renesas/built-in.a
CC mm/mmzone.o
CC sound/core/pcm_native.o
CC kernel/irq/pm.o
AR drivers/clk/socfpga/built-in.a
AR drivers/clk/sophgo/built-in.a
AR drivers/clk/sprd/built-in.a
AR drivers/clk/starfive/built-in.a
CC net/netlink/policy.o
AR drivers/clk/sunxi-ng/built-in.a
AR drivers/clk/ti/built-in.a
AR drivers/clk/versatile/built-in.a
AR drivers/clk/xilinx/built-in.a
AR drivers/clk/built-in.a
CC sound/pci/hda/hda_auto_parser.o
CC arch/x86/kernel/cpu/bugs.o
CC arch/x86/kernel/cpu/aperfmperf.o
CC arch/x86/events/intel/uncore_snb.o
CC crypto/akcipher.o
CC drivers/acpi/acpica/dswstate.o
CC drivers/pnp/driver.o
CC fs/proc/interrupts.o
CC sound/pci/hda/hda_sysfs.o
CC sound/pci/hda/hda_controller.o
CC drivers/acpi/acpica/evevent.o
CC drivers/pnp/resource.o
CC mm/vmstat.o
CC fs/netfs/misc.o
CC arch/x86/kernel/apic/probe_32.o
CC drivers/acpi/acpica/evgpe.o
CC drivers/dma/dw/core.o
CC net/sched/act_api.o
CC security/selinux/ss/ebitmap.o
AR drivers/soc/apple/built-in.a
CC drivers/dma/hsu/hsu.o
CC net/core/netevent.o
AR drivers/soc/aspeed/built-in.a
AR drivers/soc/bcm/built-in.a
AR drivers/soc/fsl/built-in.a
AR drivers/soc/fujitsu/built-in.a
AR drivers/soc/hisilicon/built-in.a
CC crypto/sig.o
CC net/core/neighbour.o
CC kernel/irq/msi.o
AR drivers/soc/imx/built-in.a
CC fs/ext4/extents.o
AR drivers/soc/ixp4xx/built-in.a
CC fs/proc/loadavg.o
AR drivers/soc/loongson/built-in.a
CC arch/x86/events/intel/uncore_snbep.o
AR drivers/soc/mediatek/built-in.a
CC mm/backing-dev.o
CC arch/x86/kernel/head32.o
AR drivers/soc/microchip/built-in.a
AR drivers/soc/nuvoton/built-in.a
CC lib/zstd/common/entropy_common.o
AR drivers/soc/pxa/built-in.a
AR drivers/soc/amlogic/built-in.a
CC net/core/rtnetlink.o
AR drivers/soc/qcom/built-in.a
AR drivers/soc/renesas/built-in.a
CC security/selinux/ss/hashtab.o
AR drivers/soc/rockchip/built-in.a
AR kernel/rcu/built-in.a
CC drivers/dma/dw/dw.o
AR drivers/soc/sunxi/built-in.a
CC drivers/dma/dw/idma32.o
CC security/selinux/ss/symtab.o
AR drivers/soc/ti/built-in.a
CC arch/x86/kernel/ebda.o
AR drivers/soc/versatile/built-in.a
CC fs/jbd2/revoke.o
CC fs/jbd2/journal.o
AR drivers/soc/xilinx/built-in.a
AR drivers/soc/built-in.a
CC drivers/acpi/acpica/evgpeblk.o
AR sound/pci/riptide/built-in.a
AR net/bpf/built-in.a
CC io_uring/sqpoll.o
CC net/ethtool/ioctl.o
CC fs/proc/meminfo.o
CC lib/zstd/common/error_private.o
CC arch/x86/kernel/platform-quirks.o
CC drivers/dma/dw/acpi.o
CC net/ethtool/common.o
AR kernel/sched/built-in.a
CC io_uring/xattr.o
CC fs/ext4/extents_status.o
CC lib/zstd/common/fse_decompress.o
CC fs/netfs/objects.o
CC drivers/acpi/sleep.o
CC net/core/utils.o
CC crypto/kpp.o
CC net/ethtool/netlink.o
CC kernel/module/main.o
CC drivers/virtio/virtio.o
AR arch/x86/kernel/apic/built-in.a
CC block/blk-mq-tag.o
ASN.1 crypto/rsapubkey.asn1.[ch]
CC drivers/acpi/acpica/evgpeinit.o
AR drivers/dma/idxd/built-in.a
AR sound/pci/rme9652/built-in.a
CC sound/core/pcm_lib.o
CC net/sched/sch_fifo.o
CC drivers/pnp/manager.o
ASN.1 crypto/rsaprivkey.asn1.[ch]
CC drivers/virtio/virtio_ring.o
AR drivers/dma/hsu/built-in.a
CC fs/ramfs/inode.o
CC fs/netfs/read_collect.o
CC kernel/irq/affinity.o
CC kernel/irq/matrix.o
AR net/netlink/built-in.a
CC fs/netfs/read_pgpriv2.o
CC drivers/acpi/device_sysfs.o
AR drivers/dma/amd/built-in.a
CC mm/mm_init.o
CC fs/netfs/read_retry.o
CC arch/x86/kernel/cpu/cpuid-deps.o
CC kernel/module/strict_rwx.o
AR drivers/dma/dw/built-in.a
AR drivers/dma/mediatek/built-in.a
CC sound/pci/hda/hda_proc.o
AR drivers/dma/qcom/built-in.a
CC lib/zstd/common/zstd_common.o
AR drivers/dma/stm32/built-in.a
AR drivers/dma/ti/built-in.a
CC drivers/acpi/device_pm.o
CC fs/proc/stat.o
AR drivers/dma/xilinx/built-in.a
CC drivers/dma/dmaengine.o
AR lib/zstd/built-in.a
CC lib/ctype.o
CC security/selinux/ss/sidtab.o
CC drivers/acpi/acpica/evgpeutil.o
CC lib/dec_and_lock.o
CC sound/pci/hda/hda_hwdep.o
CC drivers/tty/vt/vt_ioctl.o
CC kernel/module/kmod.o
CC arch/x86/events/intel/uncore_discovery.o
AR sound/synth/emux/built-in.a
AR sound/synth/built-in.a
CC drivers/char/hw_random/core.o
CC lib/decompress.o
CC arch/x86/kernel/cpu/umwait.o
CC drivers/char/agp/backend.o
CC crypto/rsa.o
CC lib/decompress_bunzip2.o
CC drivers/pnp/support.o
AR drivers/iommu/amd/built-in.a
AR drivers/iommu/intel/built-in.a
AR drivers/iommu/arm/arm-smmu/built-in.a
AR drivers/iommu/arm/arm-smmu-v3/built-in.a
AR drivers/iommu/arm/built-in.a
AR drivers/iommu/iommufd/built-in.a
AR drivers/gpu/host1x/built-in.a
AR drivers/iommu/riscv/built-in.a
CC drivers/iommu/iommu.o
CC drivers/char/hw_random/intel-rng.o
CC drivers/acpi/acpica/evglock.o
CC drivers/acpi/proc.o
CC fs/ramfs/file-mmu.o
CC drivers/acpi/acpica/evhandler.o
CC crypto/rsa_helper.o
CC drivers/pci/setup-res.o
AR drivers/gpu/drm/tests/built-in.a
CC fs/proc/uptime.o
CC fs/hugetlbfs/inode.o
AR drivers/gpu/drm/arm/built-in.a
AR drivers/gpu/drm/clients/built-in.a
CC drivers/gpu/drm/display/drm_display_helper_mod.o
CC drivers/tty/hvc/hvc_console.o
CC crypto/rsa-pkcs1pad.o
CC mm/percpu.o
CC drivers/gpu/drm/display/drm_dp_dual_mode_helper.o
CC io_uring/nop.o
CC arch/x86/events/intel/cstate.o
CC net/sched/cls_cgroup.o
AR drivers/gpu/vga/built-in.a
CC drivers/tty/vt/vc_screen.o
CC crypto/rsassa-pkcs1.o
CC drivers/pci/irq.o
CC drivers/pnp/interface.o
CC drivers/pnp/quirks.o
CC fs/netfs/read_single.o
CC net/ethtool/bitset.o
CC drivers/acpi/acpica/evmisc.o
CC crypto/acompress.o
AR kernel/irq/built-in.a
CC net/sched/ematch.o
MKCAP arch/x86/kernel/cpu/capflags.c
CC kernel/time/time.o
CC sound/pci/hda/hda_intel.o
CC drivers/char/agp/generic.o
CC drivers/tty/serial/8250/8250_core.o
CC arch/x86/kernel/process_32.o
CC lib/decompress_inflate.o
CC fs/ext4/file.o
CC drivers/virtio/virtio_anchor.o
CC drivers/char/hw_random/amd-rng.o
CC block/blk-stat.o
AR fs/ramfs/built-in.a
CC drivers/acpi/acpica/evregion.o
CC fs/proc/util.o
CC drivers/acpi/acpica/evrgnini.o
CC drivers/dma/virt-dma.o
CC crypto/scompress.o
CC sound/core/pcm_misc.o
CC drivers/acpi/acpica/evsci.o
CC drivers/pci/vpd.o
CC security/selinux/ss/avtab.o
CC block/blk-mq-sysfs.o
CC block/blk-mq-cpumap.o
CC fs/netfs/rolling_buffer.o
CC fs/netfs/write_collect.o
AR drivers/tty/hvc/built-in.a
CC drivers/tty/vt/selection.o
AR fs/jbd2/built-in.a
CC net/netfilter/core.o
CC drivers/char/agp/isoch.o
CC io_uring/fs.o
CC kernel/module/tree_lookup.o
AR sound/usb/misc/built-in.a
AR sound/usb/usx2y/built-in.a
AR sound/usb/caiaq/built-in.a
AR sound/usb/6fire/built-in.a
AR sound/usb/hiface/built-in.a
AR arch/x86/events/intel/built-in.a
AR sound/usb/bcd2000/built-in.a
AR sound/usb/built-in.a
AR arch/x86/events/built-in.a
CC lib/decompress_unlz4.o
CC security/selinux/ss/policydb.o
CC drivers/gpu/drm/display/drm_dp_helper.o
CC drivers/tty/serial/serial_core.o
CC drivers/iommu/iommu-traces.o
CC fs/fat/cache.o
CC drivers/iommu/iommu-sysfs.o
CC sound/core/pcm_memory.o
CC drivers/pnp/system.o
CC drivers/acpi/acpica/evxface.o
CC drivers/virtio/virtio_pci_modern_dev.o
CC fs/proc/version.o
AR sound/firewire/built-in.a
AR drivers/tty/ipwireless/built-in.a
CC fs/fat/dir.o
CC drivers/tty/tty_io.o
CC drivers/char/hw_random/geode-rng.o
CC arch/x86/kernel/signal.o
CC drivers/dma/acpi-dma.o
CC fs/ext4/fsmap.o
CC fs/ext4/fsync.o
CC lib/decompress_unlzma.o
CC lib/decompress_unlzo.o
CC drivers/gpu/drm/ttm/ttm_tt.o
CC kernel/time/timer.o
CC drivers/tty/serial/8250/8250_platform.o
AR net/sched/built-in.a
CC drivers/acpi/bus.o
CC drivers/virtio/virtio_pci_legacy_dev.o
CC drivers/gpu/drm/i915/i915_config.o
CC kernel/time/hrtimer.o
CC block/blk-mq-sched.o
CC crypto/algboss.o
CC kernel/module/kallsyms.o
AR sound/sparc/built-in.a
CC drivers/connector/cn_queue.o
AR drivers/pnp/built-in.a
CC drivers/pci/setup-bus.o
CC drivers/char/agp/amd64-agp.o
CC drivers/acpi/acpica/evxfevnt.o
AR fs/hugetlbfs/built-in.a
CC net/ethtool/strset.o
CC drivers/char/agp/intel-agp.o
CC fs/proc/softirqs.o
CC crypto/testmgr.o
CC arch/x86/kernel/signal_32.o
CC drivers/tty/vt/keyboard.o
AR sound/spi/built-in.a
CC drivers/gpu/drm/i915/i915_driver.o
CC fs/netfs/write_issue.o
CC io_uring/splice.o
CC block/ioctl.o
CC fs/isofs/namei.o
CC drivers/char/hw_random/via-rng.o
CC sound/core/memalloc.o
CC drivers/connector/connector.o
CC drivers/gpu/drm/display/drm_dp_mst_topology.o
CC drivers/base/power/sysfs.o
CC kernel/time/sleep_timeout.o
AR sound/pci/hda/built-in.a
AR sound/pci/trident/built-in.a
AR sound/pci/ymfpci/built-in.a
AR sound/pci/vx222/built-in.a
CC drivers/acpi/acpica/evxfgpe.o
AR drivers/dma/built-in.a
AR sound/pci/built-in.a
CC kernel/time/timekeeping.o
CC fs/ext4/hash.o
CC net/core/link_watch.o
CC drivers/iommu/dma-iommu.o
CC arch/x86/kernel/cpu/powerflags.o
CC lib/decompress_unxz.o
CC fs/proc/namespaces.o
CC drivers/virtio/virtio_pci_modern.o
AR drivers/gpu/drm/renesas/rcar-du/built-in.a
AR drivers/gpu/drm/renesas/rz-du/built-in.a
AR drivers/gpu/drm/renesas/built-in.a
CC drivers/tty/serial/8250/8250_pnp.o
CC drivers/char/agp/intel-gtt.o
CC fs/ext4/ialloc.o
AR drivers/char/hw_random/built-in.a
CC arch/x86/kernel/traps.o
CC net/core/filter.o
CC drivers/gpu/drm/ttm/ttm_bo.o
CC kernel/module/procfs.o
CC mm/slab_common.o
CC net/core/sock_diag.o
CC drivers/gpu/drm/ttm/ttm_bo_util.o
CC net/netfilter/nf_log.o
CC crypto/cmac.o
CC net/ipv4/netfilter/nf_defrag_ipv4.o
CC drivers/acpi/acpica/evxfregn.o
CC fs/isofs/inode.o
CC drivers/acpi/acpica/exconcat.o
CC drivers/base/power/generic_ops.o
CC drivers/pci/vc.o
CC drivers/acpi/acpica/exconfig.o
CC net/ipv4/route.o
CC drivers/gpu/drm/ttm/ttm_bo_vm.o
CC net/netfilter/nf_queue.o
CC lib/decompress_unzstd.o
CC io_uring/sync.o
CC fs/fat/fatent.o
CC sound/core/pcm_timer.o
CC net/ethtool/linkinfo.o
CC block/genhd.o
CC drivers/base/power/common.o
CC drivers/base/power/qos.o
CC arch/x86/kernel/idt.o
CC drivers/acpi/glue.o
CC kernel/module/sysfs.o
CC arch/x86/kernel/cpu/topology.o
CC net/core/dev_ioctl.o
CC drivers/connector/cn_proc.o
CC fs/proc/self.o
CC drivers/tty/serial/8250/8250_rsa.o
CC drivers/acpi/acpica/exconvrt.o
CC drivers/acpi/acpica/excreate.o
CC crypto/hmac.o
CC drivers/tty/vt/vt.o
CC fs/netfs/write_retry.o
COPY drivers/tty/vt/defkeymap.c
CC drivers/iommu/iova.o
CC drivers/virtio/virtio_pci_common.o
CC fs/ext4/indirect.o
CC lib/dump_stack.o
AR drivers/char/agp/built-in.a
CC drivers/char/mem.o
CC drivers/char/random.o
CC drivers/gpu/drm/i915/i915_drm_client.o
AR drivers/gpu/drm/omapdrm/built-in.a
CC drivers/pci/mmap.o
CC drivers/base/power/runtime.o
CC drivers/virtio/virtio_pci_legacy.o
CC crypto/crypto_null.o
CC drivers/tty/vt/consolemap.o
CC security/selinux/ss/services.o
CC sound/core/seq_device.o
CC drivers/acpi/acpica/exdebug.o
HOSTCC drivers/tty/vt/conmakehash
CC net/xfrm/xfrm_policy.o
CC drivers/gpu/drm/ttm/ttm_module.o
CC io_uring/msg_ring.o
CC fs/proc/thread_self.o
CC drivers/base/firmware_loader/builtin/main.o
AR drivers/gpu/drm/tilcdc/built-in.a
CC crypto/md5.o
CC drivers/gpu/drm/ttm/ttm_execbuf_util.o
CC kernel/time/ntp.o
CC drivers/base/firmware_loader/main.o
CC lib/earlycpio.o
CC drivers/tty/serial/8250/8250_port.o
CC net/ipv4/netfilter/nf_reject_ipv4.o
AR kernel/module/built-in.a
CC drivers/acpi/acpica/exdump.o
CC net/netfilter/nf_sockopt.o
CC drivers/tty/serial/serial_base_bus.o
CC net/ethtool/linkmodes.o
CC kernel/futex/core.o
CC drivers/block/loop.o
CC fs/isofs/dir.o
CC drivers/block/virtio_blk.o
CC net/ipv4/netfilter/ip_tables.o
CC lib/extable.o
CC drivers/base/power/wakeirq.o
AR drivers/base/firmware_loader/builtin/built-in.a
CC drivers/pci/devres.o
CC drivers/base/power/main.o
CC fs/fat/file.o
AR fs/netfs/built-in.a
CC net/core/tso.o
AR drivers/iommu/built-in.a
CC drivers/char/misc.o
CC block/ioprio.o
CC drivers/gpu/drm/display/drm_dsc_helper.o
AR sound/core/built-in.a
CC fs/proc/proc_sysctl.o
CC drivers/acpi/acpica/exfield.o
CC drivers/tty/serial/serial_ctrl.o
AR sound/parisc/built-in.a
CC drivers/tty/n_tty.o
AR sound/pcmcia/vx/built-in.a
AR sound/pcmcia/pdaudiocf/built-in.a
CC drivers/virtio/virtio_pci_admin_legacy_io.o
AR drivers/connector/built-in.a
AR sound/pcmcia/built-in.a
CC lib/flex_proportions.o
CC drivers/acpi/acpica/exfldio.o
AR sound/mips/built-in.a
CC crypto/sha256_generic.o
AR sound/soc/built-in.a
AR sound/atmel/built-in.a
CC sound/hda/hda_bus_type.o
CC block/badblocks.o
CC drivers/gpu/drm/ttm/ttm_range_manager.o
CC arch/x86/kernel/irq.o
CC drivers/gpu/drm/display/drm_hdcp_helper.o
CC fs/proc/proc_net.o
CC net/ipv4/inetpeer.o
CC drivers/acpi/acpica/exmisc.o
CC drivers/char/virtio_console.o
CC io_uring/advise.o
CC kernel/time/clocksource.o
CC drivers/tty/vt/defkeymap.o
CONMK drivers/tty/vt/consolemap_deftbl.c
CC crypto/sha512_generic.o
CC lib/idr.o
CC drivers/gpu/drm/i915/i915_getparam.o
CC fs/isofs/util.o
CC kernel/futex/syscalls.o
CC drivers/pci/proc.o
CC arch/x86/kernel/irq_32.o
CC drivers/virtio/virtio_input.o
CC drivers/base/regmap/regmap.o
AR drivers/base/firmware_loader/built-in.a
CC fs/nfs/client.o
CC net/netfilter/utils.o
CC fs/nfs/dir.o
CC mm/compaction.o
CC mm/show_mem.o
CC fs/ext4/inline.o
CC kernel/cgroup/cgroup.o
CC drivers/acpi/acpica/exmutex.o
CC net/ethtool/rss.o
CC sound/hda/hdac_bus.o
CC drivers/acpi/acpica/exnames.o
CC drivers/gpu/drm/ttm/ttm_resource.o
CC fs/fat/inode.o
CC drivers/gpu/drm/i915/i915_ioctl.o
AR sound/x86/built-in.a
CC drivers/gpu/drm/i915/i915_irq.o
AR sound/xen/built-in.a
CC io_uring/statx.o
CC net/netfilter/nfnetlink.o
CC drivers/gpu/drm/display/drm_hdmi_helper.o
CC lib/iomem_copy.o
CC block/blk-rq-qos.o
CC kernel/cgroup/rstat.o
CC drivers/gpu/drm/ttm/ttm_pool.o
CC fs/isofs/rock.o
CC drivers/pci/pci-sysfs.o
CC net/ipv4/protocol.o
CC drivers/gpu/drm/virtio/virtgpu_drv.o
CC lib/irq_regs.o
AR drivers/block/built-in.a
CC net/netfilter/nfnetlink_log.o
CC crypto/sha3_generic.o
CC drivers/acpi/acpica/exoparg1.o
CC drivers/tty/serial/8250/8250_dma.o
CC arch/x86/kernel/cpu/proc.o
CC kernel/time/jiffies.o
CC lib/is_single_threaded.o
CC lib/klist.o
CC drivers/virtio/virtio_dma_buf.o
CC drivers/gpu/drm/virtio/virtgpu_kms.o
CC net/ipv4/netfilter/iptable_filter.o
CC drivers/tty/vt/consolemap_deftbl.o
CC crypto/ecb.o
CC drivers/base/power/wakeup.o
CC kernel/futex/pi.o
CC fs/proc/kcore.o
CC fs/proc/kmsg.o
AR drivers/tty/vt/built-in.a
CC net/core/sock_reuseport.o
CC sound/hda/hdac_device.o
CC mm/interval_tree.o
CC net/ethtool/linkstate.o
CC drivers/tty/serial/serial_port.o
CC drivers/gpu/drm/display/drm_scdc_helper.o
CC drivers/gpu/drm/i915/i915_mitigations.o
CC io_uring/timeout.o
CC drivers/char/hpet.o
CC kernel/time/timer_list.o
CC sound/hda/hdac_sysfs.o
CC drivers/acpi/acpica/exoparg2.o
CC lib/kobject.o
CC block/disk-events.o
CC kernel/trace/trace_clock.o
CC security/selinux/ss/conditional.o
AR drivers/base/test/built-in.a
CC drivers/gpu/drm/virtio/virtgpu_gem.o
CC crypto/cbc.o
CC kernel/cgroup/namespace.o
CC drivers/tty/tty_ioctl.o
CC fs/fat/misc.o
CC fs/nfs/file.o
CC arch/x86/kernel/cpu/feat_ctl.o
CC fs/isofs/export.o
AR drivers/virtio/built-in.a
CC fs/exportfs/expfs.o
CC drivers/tty/serial/8250/8250_dwlib.o
CC lib/kobject_uevent.o
AR drivers/gpu/drm/imx/built-in.a
CC drivers/base/component.o
CC drivers/acpi/acpica/exoparg3.o
CC drivers/gpu/drm/i915/i915_module.o
CC kernel/futex/requeue.o
CC fs/nfs/getroot.o
CC kernel/trace/ring_buffer.o
CC fs/proc/page.o
CC fs/ext4/inode.o
CC drivers/gpu/drm/ttm/ttm_device.o
CC net/core/fib_notifier.o
CC drivers/tty/tty_ldisc.o
CC crypto/ctr.o
CC drivers/char/nvram.o
CC drivers/pci/slot.o
CC fs/ext4/ioctl.o
CC kernel/bpf/core.o
CC fs/ext4/mballoc.o
CC security/selinux/ss/mls.o
CC arch/x86/kernel/cpu/intel.o
CC net/ipv4/netfilter/iptable_mangle.o
CC kernel/time/timeconv.o
CC drivers/base/regmap/regcache.o
CC drivers/acpi/acpica/exoparg6.o
CC block/blk-ia-ranges.o
AR drivers/gpu/drm/display/built-in.a
CC sound/hda/hdac_regmap.o
CC drivers/gpu/drm/ttm/ttm_sys_manager.o
CC fs/ext4/migrate.o
CC drivers/gpu/drm/virtio/virtgpu_vram.o
CC fs/isofs/joliet.o
CC drivers/base/power/wakeup_stats.o
CC net/netfilter/nf_conntrack_core.o
AR fs/exportfs/built-in.a
CC io_uring/fdinfo.o
CC mm/list_lru.o
CC net/ethtool/debug.o
CC fs/nfs/inode.o
CC fs/fat/nfs.o
CC kernel/cgroup/cgroup-v1.o
CC drivers/tty/serial/8250/8250_pcilib.o
CC drivers/gpu/drm/ttm/ttm_backup.o
CC drivers/gpu/drm/ttm/ttm_agp_backend.o
CC drivers/pci/pci-acpi.o
CC crypto/gcm.o
CC kernel/time/timecounter.o
CC drivers/acpi/acpica/exprep.o
CC kernel/time/alarmtimer.o
CC net/xfrm/xfrm_state.o
CC kernel/futex/waitwake.o
CC net/netfilter/nf_conntrack_standalone.o
AR fs/proc/built-in.a
CC drivers/gpu/drm/i915/i915_params.o
CC arch/x86/kernel/cpu/tsx.o
CC net/ipv4/ip_input.o
CC lib/logic_pio.o
CC fs/fat/namei_vfat.o
CC sound/hda/hdac_controller.o
AR drivers/char/built-in.a
CC drivers/base/power/trace.o
CC crypto/ccm.o
CC net/xfrm/xfrm_hash.o
CC arch/x86/kernel/dumpstack_32.o
CC fs/lockd/clntlock.o
CC drivers/acpi/scan.o
CC kernel/trace/trace.o
CC block/early-lookup.o
CC sound/hda/hdac_stream.o
CC drivers/acpi/acpica/exregion.o
CC fs/isofs/compress.o
CC drivers/gpu/drm/virtio/virtgpu_display.o
CC lib/maple_tree.o
CC drivers/base/regmap/regcache-rbtree.o
CC mm/workingset.o
CC drivers/tty/serial/8250/8250_early.o
CC arch/x86/kernel/cpu/intel_epb.o
CC net/ipv4/netfilter/ipt_REJECT.o
CC drivers/tty/serial/earlycon.o
CC kernel/cgroup/freezer.o
AR drivers/gpu/drm/ttm/built-in.a
CC io_uring/cancel.o
CC io_uring/waitid.o
CC kernel/cgroup/legacy_freezer.o
CC fs/nls/nls_base.o
CC net/ethtool/wol.o
CC security/selinux/ss/context.o
CC fs/ext4/mmp.o
AR kernel/futex/built-in.a
CC drivers/acpi/acpica/exresnte.o
CC kernel/cgroup/pids.o
CC drivers/tty/serial/8250/8250_exar.o
AR drivers/gpu/drm/panel/built-in.a
CC arch/x86/kernel/cpu/amd.o
CC crypto/aes_generic.o
CC fs/ext4/move_extent.o
CC drivers/pci/iomap.o
AR drivers/base/power/built-in.a
CC mm/debug.o
AR sound/virtio/built-in.a
CC drivers/gpu/drm/virtio/virtgpu_vq.o
CC drivers/gpu/drm/i915/i915_pci.o
CC block/bsg.o
AR drivers/gpu/drm/bridge/analogix/built-in.a
CC kernel/time/posix-timers.o
AR drivers/gpu/drm/bridge/cadence/built-in.a
AR drivers/gpu/drm/bridge/imx/built-in.a
AR drivers/gpu/drm/hisilicon/built-in.a
CC mm/gup.o
AR drivers/gpu/drm/bridge/synopsys/built-in.a
AR drivers/gpu/drm/bridge/built-in.a
CC kernel/events/core.o
CC fs/nls/nls_cp437.o
CC fs/nls/nls_ascii.o
CC drivers/gpu/drm/virtio/virtgpu_fence.o
CC drivers/acpi/mipi-disco-img.o
CC drivers/acpi/acpica/exresolv.o
AR fs/isofs/built-in.a
CC drivers/base/regmap/regcache-flat.o
CC fs/nls/nls_iso8859-1.o
CC security/selinux/netlabel.o
CC drivers/gpu/drm/virtio/virtgpu_object.o
CC fs/nfs/super.o
CC sound/hda/array.o
CC drivers/pci/quirks.o
CC arch/x86/kernel/time.o
CC kernel/trace/trace_output.o
CC fs/fat/namei_msdos.o
CC [M] net/ipv4/netfilter/iptable_nat.o
CC fs/lockd/clntproc.o
CC io_uring/register.o
CC net/xfrm/xfrm_input.o
CC crypto/authenc.o
CC net/ethtool/features.o
CC net/unix/af_unix.o
CC fs/nls/nls_utf8.o
CC mm/mmap_lock.o
CC net/unix/garbage.o
CC drivers/acpi/acpica/exresop.o
CC net/core/xdp.o
CC net/unix/sysctl_net_unix.o
AR drivers/gpu/drm/mxsfb/built-in.a
CC arch/x86/kernel/ioport.o
AR drivers/gpu/drm/sysfb/built-in.a
CC crypto/authencesn.o
CC drivers/tty/tty_buffer.o
CC drivers/base/regmap/regcache-maple.o
CC arch/x86/kernel/cpu/hygon.o
CC block/blk-cgroup.o
CC net/ipv6/netfilter/ip6_tables.o
CC net/packet/af_packet.o
CC drivers/tty/serial/8250/8250_lpss.o
CC arch/x86/kernel/dumpstack.o
AR fs/nls/built-in.a
CC block/blk-ioprio.o
CC block/blk-iolatency.o
CC sound/hda/hdmi_chmap.o
CC drivers/acpi/acpica/exserial.o
CC kernel/cgroup/rdma.o
CC drivers/gpu/drm/i915/i915_scatterlist.o
CC drivers/tty/tty_port.o
CC net/netfilter/nf_conntrack_expect.o
AR net/dsa/built-in.a
CC crypto/lzo.o
CC block/blk-iocost.o
AR kernel/bpf/built-in.a
CC fs/nfs/io.o
CC drivers/gpu/drm/virtio/virtgpu_debugfs.o
CC arch/x86/kernel/cpu/centaur.o
CC drivers/base/core.o
CC drivers/acpi/acpica/exstore.o
AR fs/fat/built-in.a
CC drivers/base/bus.o
CC drivers/acpi/resource.o
CC fs/ext4/namei.o
CC kernel/time/posix-cpu-timers.o
CC drivers/base/regmap/regmap-debugfs.o
CC kernel/events/ring_buffer.o
CC net/ipv4/ip_fragment.o
CC io_uring/truncate.o
AR security/selinux/built-in.a
AR security/built-in.a
CC drivers/gpu/drm/virtio/virtgpu_plane.o
CC fs/lockd/clntxdr.o
CC net/ethtool/privflags.o
AR net/ipv4/netfilter/built-in.a
CC drivers/tty/serial/8250/8250_mid.o
CC drivers/tty/serial/8250/8250_pci.o
CC net/ethtool/rings.o
CC drivers/gpu/drm/i915/i915_switcheroo.o
CC arch/x86/kernel/cpu/transmeta.o
CC drivers/gpu/drm/i915/i915_sysfs.o
CC crypto/lzo-rle.o
CC kernel/cgroup/cpuset.o
CC drivers/misc/eeprom/eeprom_93cx6.o
CC drivers/acpi/acpica/exstoren.o
CC drivers/acpi/acpi_processor.o
CC drivers/acpi/processor_core.o
CC arch/x86/kernel/nmi.o
CC sound/hda/trace.o
CC sound/hda/hdac_component.o
CC net/ethtool/channels.o
CC net/netfilter/nf_conntrack_helper.o
CC fs/nfs/direct.o
CC net/core/flow_offload.o
CC net/xfrm/xfrm_output.o
CC drivers/acpi/acpica/exstorob.o
CC net/xfrm/xfrm_sysctl.o
CC mm/highmem.o
CC net/core/gro.o
AR drivers/misc/eeprom/built-in.a
CC lib/memcat_p.o
AR drivers/misc/cb710/built-in.a
AR drivers/misc/lis3lv02d/built-in.a
CC lib/nmi_backtrace.o
AR drivers/misc/cardreader/built-in.a
AR drivers/misc/keba/built-in.a
AR drivers/misc/built-in.a
AR drivers/base/regmap/built-in.a
CC fs/nfs/pagelist.o
CC net/xfrm/xfrm_replay.o
CC kernel/fork.o
CC arch/x86/kernel/cpu/zhaoxin.o
CC crypto/rng.o
CC drivers/pci/pci-label.o
CC drivers/gpu/drm/virtio/virtgpu_ioctl.o
CC io_uring/memmap.o
CC net/ipv4/ip_forward.o
CC drivers/tty/tty_mutex.o
CC arch/x86/kernel/cpu/vortex.o
CC lib/objpool.o
CC net/core/netdev-genl.o
CC net/ipv6/af_inet6.o
CC drivers/acpi/acpica/exsystem.o
CC crypto/drbg.o
CC kernel/time/posix-clock.o
CC net/ipv6/netfilter/ip6table_filter.o
CC block/mq-deadline.o
CC net/ipv6/anycast.o
CC kernel/cgroup/misc.o
CC fs/lockd/host.o
AR fs/unicode/built-in.a
CC drivers/pci/vgaarb.o
CC drivers/tty/tty_ldsem.o
CC drivers/tty/serial/8250/8250_pericom.o
CC drivers/gpu/drm/i915/i915_utils.o
CC kernel/time/itimer.o
CC arch/x86/kernel/cpu/perfctr-watchdog.o
CC fs/lockd/svc.o
CC net/netfilter/nf_conntrack_proto.o
CC net/ipv6/netfilter/ip6table_mangle.o
CC sound/hda/hdac_i915.o
CC drivers/acpi/acpica/extrace.o
CC mm/memory.o
CC crypto/jitterentropy.o
AR net/unix/built-in.a
CC net/ipv4/ip_options.o
CC block/kyber-iosched.o
CC sound/sound_core.o
CC sound/last.o
CC net/ethtool/coalesce.o
CC fs/lockd/svclock.o
CC arch/x86/kernel/ldt.o
CC io_uring/alloc_cache.o
CC arch/x86/kernel/setup.o
CC kernel/trace/trace_seq.o
CC drivers/gpu/drm/virtio/virtgpu_prime.o
CC fs/autofs/init.o
CC fs/9p/vfs_super.o
CC kernel/cgroup/debug.o
CC drivers/acpi/acpica/exutils.o
CC net/sunrpc/auth_gss/auth_gss.o
CC block/blk-mq-debugfs.o
AR fs/hostfs/built-in.a
CC crypto/jitterentropy-kcapi.o
CC drivers/base/dd.o
CC fs/debugfs/inode.o
CC arch/x86/kernel/cpu/vmware.o
AR drivers/tty/serial/8250/built-in.a
AR drivers/tty/serial/built-in.a
CC drivers/acpi/acpica/hwacpi.o
CC drivers/tty/tty_baudrate.o
CC sound/hda/intel-dsp-config.o
CC fs/lockd/svcshare.o
CC net/xfrm/xfrm_device.o
CC drivers/gpu/drm/i915/intel_clock_gating.o
CC kernel/time/clockevents.o
CC net/core/netdev-genl-gen.o
CC arch/x86/kernel/x86_init.o
CC drivers/gpu/drm/virtio/virtgpu_trace_points.o
AR drivers/pci/built-in.a
CC io_uring/io-wq.o
CC net/sunrpc/clnt.o
CC net/ethtool/pause.o
CC net/sunrpc/xprt.o
CC kernel/trace/trace_stat.o
CC fs/debugfs/file.o
CC drivers/acpi/acpica/hwesleep.o
CC drivers/acpi/acpica/hwgpe.o
CC fs/autofs/inode.o
CC fs/ext4/page-io.o
CC crypto/ghash-generic.o
CC io_uring/futex.o
AR net/packet/built-in.a
AR drivers/gpu/drm/tiny/built-in.a
CC drivers/acpi/processor_pdc.o
CC arch/x86/kernel/cpu/hypervisor.o
CC fs/9p/vfs_inode.o
CC sound/hda/intel-nhlt.o
CC kernel/trace/trace_printk.o
CC drivers/tty/tty_jobctrl.o
AR kernel/cgroup/built-in.a
CC drivers/acpi/ec.o
CC net/ipv6/netfilter/nf_defrag_ipv6_hooks.o
CC drivers/base/syscore.o
AR net/wireless/tests/built-in.a
CC kernel/time/tick-common.o
CC net/wireless/core.o
AR net/mac80211/tests/built-in.a
CC net/mac80211/main.o
CC net/wireless/sysfs.o
CC kernel/time/tick-broadcast.o
CC arch/x86/kernel/cpu/mshyperv.o
CC net/netfilter/nf_conntrack_proto_generic.o
CC net/ipv6/ip6_output.o
CC fs/autofs/root.o
CC net/sunrpc/auth_gss/gss_mech_switch.o
CC net/ipv4/ip_output.o
CC fs/nfs/read.o
CC drivers/acpi/acpica/hwregs.o
CC drivers/acpi/dock.o
CC crypto/hash_info.o
CC crypto/rsapubkey.asn1.o
CC crypto/rsaprivkey.asn1.o
CC fs/lockd/svcproc.o
CC net/sunrpc/socklib.o
CC net/ipv6/ip6_input.o
AR crypto/built-in.a
CC net/core/gso.o
CC fs/autofs/symlink.o
CC net/ethtool/eee.o
CC kernel/exec_domain.o
CC net/wireless/radiotap.o
CC block/blk-pm.o
CC sound/hda/intel-sdw-acpi.o
CC drivers/gpu/drm/virtio/virtgpu_submit.o
CC net/wireless/util.o
CC drivers/tty/n_null.o
CC kernel/time/tick-broadcast-hrtimer.o
CC net/xfrm/xfrm_nat_keepalive.o
CC net/netfilter/nf_conntrack_proto_tcp.o
CC io_uring/epoll.o
AR drivers/mfd/built-in.a
CC net/sunrpc/auth_gss/svcauth_gss.o
CC drivers/acpi/acpica/hwsleep.o
CC drivers/gpu/drm/i915/intel_cpu_info.o
CC net/core/net-sysfs.o
CC kernel/trace/pid_list.o
CC drivers/gpu/drm/i915/intel_device_info.o
CC fs/ext4/readpage.o
CC fs/ext4/resize.o
AR drivers/gpu/drm/xlnx/built-in.a
CC kernel/time/tick-oneshot.o
CC lib/plist.o
AR fs/debugfs/built-in.a
CC drivers/acpi/acpica/hwvalid.o
CC lib/radix-tree.o
CC kernel/events/callchain.o
CC drivers/base/driver.o
CC drivers/acpi/acpica/hwxface.o
AR sound/hda/built-in.a
AR sound/built-in.a
CC fs/tracefs/inode.o
CC fs/9p/vfs_inode_dotl.o
CC drivers/acpi/acpica/hwxfsleep.o
CC drivers/tty/pty.o
CC net/core/hotdata.o
CC arch/x86/kernel/cpu/debugfs.o
CC kernel/panic.o
CC block/holder.o
CC fs/autofs/waitq.o
CC fs/lockd/svcsubs.o
CC net/ipv4/ip_sockglue.o
CC net/ipv6/netfilter/nf_conntrack_reasm.o
CC net/netlabel/netlabel_user.o
AR drivers/gpu/drm/gud/built-in.a
CC kernel/time/tick-sched.o
CC net/rfkill/core.o
CC net/ethtool/tsinfo.o
AR drivers/gpu/drm/virtio/built-in.a
CC net/ipv6/netfilter/nf_reject_ipv6.o
CC fs/nfs/symlink.o
CC net/ipv6/addrconf.o
CC fs/ext4/super.o
CC kernel/events/hw_breakpoint.o
CC drivers/acpi/acpica/hwpci.o
CC io_uring/napi.o
CC drivers/base/class.o
AR drivers/nfc/built-in.a
CC kernel/time/timer_migration.o
CC fs/9p/vfs_addr.o
CC fs/ext4/symlink.o
CC arch/x86/kernel/cpu/bus_lock.o
CC kernel/trace/trace_sched_switch.o
CC drivers/tty/tty_audit.o
CC net/xfrm/xfrm_algo.o
AR block/built-in.a
CC net/ethtool/cabletest.o
CC net/sunrpc/xprtsock.o
CC drivers/acpi/acpica/nsaccess.o
CC drivers/tty/sysrq.o
CC lib/ratelimit.o
CC drivers/gpu/drm/i915/intel_memory_region.o
CC fs/tracefs/event_inode.o
CC fs/autofs/expire.o
CC net/ipv6/addrlabel.o
CC net/netfilter/nf_conntrack_proto_udp.o
CC net/ethtool/tunnels.o
CC net/sunrpc/auth_gss/gss_rpc_upcall.o
CC net/netfilter/nf_conntrack_proto_icmp.o
CC lib/rbtree.o
CC net/mac80211/status.o
CC net/rfkill/input.o
CC net/netlabel/netlabel_kapi.o
CC drivers/base/platform.o
CC drivers/acpi/acpica/nsalloc.o
CC fs/lockd/mon.o
CC net/netlabel/netlabel_domainhash.o
CC arch/x86/kernel/i8259.o
CC fs/autofs/dev-ioctl.o
CC fs/9p/vfs_file.o
CC arch/x86/kernel/irqinit.o
CC mm/mincore.o
CC arch/x86/kernel/jump_label.o
CC net/xfrm/xfrm_user.o
CC arch/x86/kernel/cpu/capflags.o
CC fs/nfs/unlink.o
CC lib/seq_buf.o
CC net/ipv4/inet_hashtables.o
CC net/ipv6/netfilter/ip6t_ipv6header.o
AR arch/x86/kernel/cpu/built-in.a
CC net/mac80211/driver-ops.o
CC drivers/base/cpu.o
CC drivers/acpi/pci_root.o
CC kernel/cpu.o
CC net/core/netdev_rx_queue.o
CC drivers/acpi/acpica/nsarguments.o
CC kernel/events/uprobes.o
CC net/netlabel/netlabel_addrlist.o
AR net/rfkill/built-in.a
CC kernel/exit.o
CC fs/9p/vfs_dir.o
CC kernel/softirq.o
CC lib/siphash.o
AR drivers/gpu/drm/sitronix/built-in.a
CC fs/ext4/sysfs.o
CC net/core/net-procfs.o
CC kernel/trace/trace_nop.o
AR io_uring/built-in.a
CC mm/mlock.o
AR fs/tracefs/built-in.a
CC kernel/time/vsyscall.o
CC kernel/time/timekeeping_debug.o
CC [M] fs/efivarfs/inode.o
CC net/wireless/reg.o
AR drivers/tty/built-in.a
CC net/wireless/scan.o
CC fs/open.o
CC drivers/gpu/drm/i915/intel_pcode.o
CC mm/mmap.o
CC drivers/acpi/acpica/nsconvert.o
CC drivers/acpi/acpica/nsdump.o
CC net/sunrpc/auth_gss/gss_rpc_xdr.o
CC fs/lockd/trace.o
CC net/netfilter/nf_conntrack_extend.o
CC net/ethtool/fec.o
AR drivers/dax/hmem/built-in.a
AR drivers/dax/built-in.a
CC net/9p/mod.o
AR fs/autofs/built-in.a
AR drivers/gpu/drm/solomon/built-in.a
CC net/ipv4/inet_timewait_sock.o
CC fs/9p/vfs_dentry.o
CC lib/string.o
CC drivers/acpi/pci_link.o
CC arch/x86/kernel/irq_work.o
CC net/9p/client.o
CC net/dns_resolver/dns_key.o
CC net/handshake/alert.o
CC arch/x86/kernel/probe_roms.o
CC drivers/base/firmware.o
CC kernel/trace/blktrace.o
CC fs/9p/v9fs.o
CC lib/timerqueue.o
CC drivers/acpi/acpica/nseval.o
CC [M] fs/efivarfs/file.o
CC net/sunrpc/sched.o
CC lib/union_find.o
CC net/mac80211/sta_info.o
CC kernel/time/namespace.o
CC net/ethtool/eeprom.o
CC net/handshake/genl.o
CC net/core/netpoll.o
CC net/dns_resolver/dns_query.o
CC lib/vsprintf.o
CC drivers/acpi/acpica/nsinit.o
CC net/ipv6/netfilter/ip6t_REJECT.o
CC drivers/base/init.o
CC kernel/resource.o
CC net/netlabel/netlabel_mgmt.o
CC drivers/dma-buf/dma-buf.o
CC drivers/acpi/pci_irq.o
CC fs/nfs/write.o
CC net/ipv6/route.o
CC drivers/gpu/drm/i915/intel_region_ttm.o
CC net/ipv4/inet_connection_sock.o
CC mm/mmu_gather.o
CC [M] fs/efivarfs/super.o
CC net/ethtool/stats.o
CC net/handshake/netlink.o
CC fs/9p/fid.o
CC drivers/acpi/acpica/nsload.o
CC net/9p/error.o
CC net/ethtool/phc_vclocks.o
CC arch/x86/kernel/sys_ia32.o
CC net/netfilter/nf_conntrack_acct.o
CC net/sunrpc/auth_gss/trace.o
CC fs/lockd/xdr.o
AR kernel/time/built-in.a
CC [M] fs/efivarfs/vars.o
AR net/dns_resolver/built-in.a
CC kernel/trace/trace_events.o
CC net/9p/protocol.o
CC fs/9p/xattr.o
CC drivers/base/map.o
CC net/ethtool/mm.o
CC fs/lockd/netlink.o
CC net/core/fib_rules.o
CC fs/nfs/namespace.o
AR kernel/events/built-in.a
CC drivers/acpi/acpica/nsnames.o
CC drivers/base/devres.o
CC net/netlabel/netlabel_unlabeled.o
CC [M] drivers/gpu/drm/scheduler/sched_main.o
CC drivers/gpu/drm/i915/intel_runtime_pm.o
CC fs/nfs/mount_clnt.o
CC fs/nfs/nfstrace.o
CC net/handshake/request.o
CC net/mac80211/wep.o
CC net/ipv4/tcp.o
CC kernel/trace/trace_export.o
CC mm/mprotect.o
AR net/xfrm/built-in.a
CC net/ethtool/module.o
CC net/9p/trans_common.o
AR net/ipv6/netfilter/built-in.a
CC net/ethtool/cmis_fw_update.o
CC arch/x86/kernel/ksysfs.o
CC drivers/acpi/acpica/nsobject.o
CC drivers/dma-buf/dma-fence.o
CC [M] drivers/gpu/drm/scheduler/sched_fence.o
CC net/ethtool/cmis_cdb.o
CC drivers/gpu/drm/i915/intel_sbi.o
CC net/sunrpc/auth_gss/gss_krb5_mech.o
CC fs/read_write.o
AR fs/9p/built-in.a
LD [M] fs/efivarfs/efivarfs.o
CC net/wireless/nl80211.o
AR drivers/cxl/core/built-in.a
AR drivers/cxl/built-in.a
HOSTCC drivers/gpu/drm/xe/xe_gen_wa_oob
CC net/wireless/mlme.o
CC fs/nfs/export.o
CC net/handshake/tlshd.o
CC net/ipv4/tcp_input.o
CC net/9p/trans_fd.o
CC net/netlabel/netlabel_cipso_v4.o
GEN xe_wa_oob.c xe_wa_oob.h
CC [M] drivers/gpu/drm/xe/xe_bb.o
CC net/netfilter/nf_conntrack_seqadj.o
CC drivers/base/attribute_container.o
CC drivers/acpi/acpica/nsparse.o
CC net/netlabel/netlabel_calipso.o
CC net/netfilter/nf_conntrack_proto_icmpv6.o
CC net/devres.o
CC fs/lockd/clnt4xdr.o
CC drivers/acpi/acpi_apd.o
CC drivers/gpu/drm/i915/intel_step.o
CC arch/x86/kernel/bootflag.o
CC net/mac80211/aead_api.o
CC net/ipv4/tcp_output.o
CC net/handshake/trace.o
CC drivers/acpi/acpica/nspredef.o
CC net/sunrpc/auth.o
CC drivers/base/transport_class.o
CC drivers/dma-buf/dma-fence-array.o
CC lib/win_minmax.o
CC net/wireless/ibss.o
CC [M] drivers/gpu/drm/scheduler/sched_entity.o
CC net/ipv4/tcp_timer.o
CC mm/mremap.o
CC net/ipv4/tcp_ipv4.o
CC net/socket.o
CC mm/msync.o
CC net/sunrpc/auth_gss/gss_krb5_seal.o
CC net/ethtool/pse-pd.o
CC drivers/gpu/drm/drm_atomic.o
CC fs/lockd/xdr4.o
CC net/core/net-traces.o
CC [M] drivers/gpu/drm/xe/xe_bo.o
CC drivers/acpi/acpica/nsprepkg.o
CC net/core/selftests.o
CC arch/x86/kernel/e820.o
CC net/netfilter/nf_conntrack_netlink.o
CC drivers/base/topology.o
CC drivers/acpi/acpi_platform.o
CC fs/file_table.o
CC lib/xarray.o
CC net/ipv6/ip6_fib.o
CC mm/page_vma_mapped.o
CC drivers/gpu/drm/i915/intel_uncore.o
CC drivers/gpu/drm/drm_atomic_uapi.o
CC drivers/dma-buf/dma-fence-chain.o
CC net/wireless/sme.o
AR net/netlabel/built-in.a
CC net/wireless/chan.o
CC net/core/ptp_classifier.o
CC net/ipv4/tcp_minisocks.o
CC drivers/base/container.o
CC net/9p/trans_virtio.o
CC drivers/gpu/drm/drm_auth.o
CC drivers/acpi/acpica/nsrepair.o
LD [M] drivers/gpu/drm/scheduler/gpu-sched.o
CC kernel/trace/trace_event_perf.o
CC drivers/acpi/acpica/nsrepair2.o
CC drivers/acpi/acpica/nssearch.o
CC net/sunrpc/auth_gss/gss_krb5_unseal.o
CC net/ipv6/ipv6_sockglue.o
CC drivers/base/property.o
CC drivers/macintosh/mac_hid.o
CC net/sunrpc/auth_null.o
CC drivers/dma-buf/dma-fence-unwrap.o
CC net/mac80211/wpa.o
CC kernel/trace/trace_events_filter.o
CC kernel/trace/trace_events_trigger.o
AR net/handshake/built-in.a
CC fs/ext4/xattr.o
CC lib/lockref.o
CC net/wireless/ethtool.o
CC drivers/acpi/acpica/nsutils.o
CC mm/pagewalk.o
CC net/ethtool/plca.o
CC kernel/sysctl.o
CC fs/lockd/svc4proc.o
CC drivers/gpu/drm/i915/intel_uncore_trace.o
CC arch/x86/kernel/pci-dma.o
CC drivers/base/cacheinfo.o
CC net/netfilter/nf_conntrack_ftp.o
CC net/ipv6/ndisc.o
AR drivers/macintosh/built-in.a
CC drivers/acpi/acpi_pnp.o
CC net/sunrpc/auth_tls.o
CC net/sunrpc/auth_gss/gss_krb5_wrap.o
CC drivers/dma-buf/dma-resv.o
CC net/ipv4/tcp_cong.o
CC drivers/acpi/acpica/nswalk.o
CC net/wireless/mesh.o
CC kernel/capability.o
CC fs/nfs/sysfs.o
CC lib/bcd.o
CC lib/sort.o
CC fs/ext4/xattr_hurd.o
AR net/9p/built-in.a
CC net/ipv6/udp.o
CC fs/super.o
CC net/ethtool/phy.o
CC fs/lockd/procfs.o
CC drivers/acpi/acpica/nsxfeval.o
CC drivers/base/swnode.o
CC arch/x86/kernel/quirks.o
CC drivers/base/faux.o
CC lib/parser.o
CC net/sysctl_net.o
CC mm/pgtable-generic.o
CC net/mac80211/scan.o
CC net/ipv4/tcp_metrics.o
CC kernel/ptrace.o
CC net/netfilter/nf_conntrack_irc.o
CC drivers/gpu/drm/i915/intel_wakeref.o
CC net/sunrpc/auth_gss/gss_krb5_crypto.o
CC [M] drivers/gpu/drm/xe/xe_bo_evict.o
CC drivers/dma-buf/sync_file.o
CC fs/nfs/fs_context.o
CC drivers/acpi/power.o
CC net/core/netprio_cgroup.o
CC net/sunrpc/auth_gss/gss_krb5_keys.o
CC arch/x86/kernel/kdebugfs.o
CC drivers/acpi/event.o
CC drivers/acpi/acpica/nsxfname.o
CC lib/debug_locks.o
CC mm/rmap.o
CC kernel/trace/trace_eprobe.o
AR drivers/scsi/pcmcia/built-in.a
CC drivers/scsi/scsi.o
CC net/ipv4/tcp_fastopen.o
CC net/ipv4/tcp_rate.o
CC arch/x86/kernel/alternative.o
CC lib/random32.o
AR drivers/nvme/common/built-in.a
CC drivers/gpu/drm/drm_blend.o
AR drivers/nvme/host/built-in.a
AR fs/lockd/built-in.a
CC kernel/user.o
AR drivers/nvme/target/built-in.a
AR drivers/nvme/built-in.a
CC net/ipv6/udplite.o
CC mm/vmalloc.o
CC net/netfilter/nf_conntrack_sip.o
CC drivers/gpu/drm/drm_bridge.o
CC fs/char_dev.o
CC drivers/base/auxiliary.o
CC [M] drivers/gpu/drm/xe/xe_devcoredump.o
CC drivers/acpi/acpica/nsxfobj.o
CC kernel/trace/trace_kprobe.o
CC net/ethtool/tsconfig.o
CC net/sunrpc/auth_unix.o
CC lib/bust_spinlocks.o
AR drivers/dma-buf/built-in.a
CC fs/ext4/xattr_trusted.o
CC kernel/signal.o
CC drivers/scsi/hosts.o
CC fs/stat.o
CC drivers/acpi/evged.o
CC drivers/acpi/sysfs.o
CC fs/nfs/nfsroot.o
CC lib/kasprintf.o
CC drivers/gpu/drm/i915/vlv_iosf_sb.o
CC drivers/ata/libata-core.o
CC drivers/scsi/scsi_ioctl.o
CC drivers/ata/libata-scsi.o
CC drivers/acpi/acpica/psargs.o
CC drivers/ata/libata-eh.o
AR drivers/net/phy/mediatek/built-in.a
AR drivers/net/phy/qcom/built-in.a
CC drivers/ata/libata-transport.o
CC drivers/net/phy/realtek/realtek_main.o
CC drivers/base/devtmpfs.o
CC drivers/net/phy/mdio-boardinfo.o
CC drivers/firewire/init_ohci1394_dma.o
CC net/mac80211/offchannel.o
CC net/mac80211/ht.o
CC kernel/sys.o
CC kernel/trace/error_report-traces.o
CC net/wireless/ap.o
CC kernel/trace/power-traces.o
CC lib/bitmap.o
CC fs/nfs/sysctl.o
AR net/sunrpc/auth_gss/built-in.a
CC kernel/trace/rpm-traces.o
CC drivers/base/module.o
CC arch/x86/kernel/i8253.o
CC mm/vma.o
CC fs/ext4/xattr_user.o
CC drivers/cdrom/cdrom.o
CC net/core/netclassid_cgroup.o
CC fs/ext4/fast_commit.o
CC drivers/acpi/acpica/psloop.o
CC fs/exec.o
CC drivers/ata/libata-trace.o
CC net/wireless/trace.o
CC net/netfilter/nf_nat_core.o
CC [M] drivers/gpu/drm/xe/xe_device.o
CC fs/pipe.o
CC net/ipv4/tcp_recovery.o
AR net/ethtool/built-in.a
CC fs/ext4/orphan.o
CC drivers/gpu/drm/i915/vlv_suspend.o
CC net/sunrpc/svc.o
AR drivers/firewire/built-in.a
CC mm/process_vm_access.o
CC arch/x86/kernel/hw_breakpoint.o
CC net/ipv6/raw.o
CC drivers/net/phy/stubs.o
CC net/mac80211/agg-tx.o
CC net/ipv4/tcp_ulp.o
CC kernel/umh.o
CC arch/x86/kernel/tsc.o
CC drivers/base/auxiliary_sysfs.o
CC net/core/dst_cache.o
CC drivers/scsi/scsicam.o
CC drivers/acpi/acpica/psobject.o
CC net/ipv6/icmp.o
CC net/ipv4/tcp_offload.o
CC lib/scatterlist.o
CC net/netfilter/nf_nat_proto.o
CC drivers/acpi/property.o
AR drivers/net/phy/realtek/built-in.a
CC net/wireless/ocb.o
CC net/mac80211/agg-rx.o
CC net/wireless/pmsr.o
CC fs/nfs/nfs3super.o
CC drivers/base/devcoredump.o
CC net/netfilter/nf_nat_helper.o
CC drivers/acpi/acpica/psopcode.o
CC net/core/gro_cells.o
CC net/mac80211/vht.o
CC kernel/workqueue.o
CC lib/list_sort.o
CC drivers/scsi/scsi_error.o
CC net/ipv4/tcp_plb.o
CC drivers/gpu/drm/i915/soc/intel_dram.o
CC [M] drivers/gpu/drm/xe/xe_device_sysfs.o
CC drivers/net/phy/mdio_devres.o
CC drivers/acpi/acpica/psopinfo.o
CC drivers/gpu/drm/drm_cache.o
CC kernel/pid.o
AR drivers/net/pse-pd/built-in.a
GEN net/wireless/shipped-certs.c
CC fs/nfs/nfs3client.o
CC net/ipv6/mcast.o
CC kernel/trace/trace_dynevent.o
CC drivers/net/phy/phy.o
CC arch/x86/kernel/tsc_msr.o
CC drivers/acpi/acpica/psparse.o
CC drivers/base/platform-msi.o
CC lib/uuid.o
CC drivers/gpu/drm/drm_color_mgmt.o
CC [M] drivers/gpu/drm/xe/xe_dma_buf.o
CC arch/x86/kernel/io_delay.o
CC kernel/trace/trace_probe.o
CC net/ipv6/reassembly.o
CC net/sunrpc/svcsock.o
CC drivers/gpu/drm/drm_connector.o
CC kernel/trace/trace_uprobe.o
AR drivers/cdrom/built-in.a
CC fs/namei.o
CC lib/iov_iter.o
CC lib/clz_ctz.o
CC lib/bsearch.o
CC drivers/scsi/scsi_lib.o
CC drivers/acpi/acpica/psscope.o
CC arch/x86/kernel/rtc.o
CC net/ipv6/tcp_ipv6.o
CC mm/page_alloc.o
CC fs/ext4/acl.o
CC net/netfilter/nf_nat_masquerade.o
CC net/core/failover.o
CC drivers/base/physical_location.o
CC net/wireless/shipped-certs.o
CC drivers/net/phy/phy-c45.o
CC drivers/net/mdio/acpi_mdio.o
CC fs/nfs/nfs3proc.o
CC drivers/scsi/constants.o
CC [M] drivers/gpu/drm/xe/xe_drm_client.o
CC mm/page_frag_cache.o
CC net/sunrpc/svcauth.o
CC drivers/acpi/acpica/pstree.o
CC drivers/gpu/drm/i915/soc/intel_gmch.o
CC fs/nfs/nfs3xdr.o
CC kernel/task_work.o
CC arch/x86/kernel/resource.o
CC net/ipv4/datagram.o
CC fs/ext4/xattr_security.o
CC drivers/base/trace.o
CC fs/nfs/nfs3acl.o
CC net/sunrpc/svcauth_unix.o
AR drivers/net/pcs/built-in.a
CC net/ipv6/ping.o
CC net/ipv6/exthdrs.o
AR drivers/auxdisplay/built-in.a
AS arch/x86/kernel/irqflags.o
CC drivers/net/phy/phy-core.o
CC net/ipv4/raw.o
CC drivers/acpi/acpica/psutils.o
CC drivers/pcmcia/cs.o
CC arch/x86/kernel/static_call.o
CC drivers/usb/common/common.o
CC drivers/input/serio/serio.o
CC drivers/pcmcia/socket_sysfs.o
CC drivers/usb/common/debug.o
CC kernel/trace/rethook.o
CC fs/nfs/nfs4proc.o
CC mm/init-mm.o
CC [M] drivers/gpu/drm/xe/xe_eu_stall.o
CC drivers/gpu/drm/i915/soc/intel_rom.o
AR net/core/built-in.a
CC drivers/acpi/acpica/pswalk.o
CC drivers/gpu/drm/drm_crtc.o
CC drivers/net/mdio/fwnode_mdio.o
CC arch/x86/kernel/process.o
CC net/sunrpc/addr.o
CC [M] drivers/gpu/drm/xe/xe_exec.o
CC lib/find_bit.o
CC drivers/gpu/drm/drm_displayid.o
CC drivers/usb/core/usb.o
CC net/mac80211/he.o
AR fs/ext4/built-in.a
CC fs/nfs/nfs4xdr.o
CC drivers/scsi/scsi_lib_dma.o
AR drivers/base/built-in.a
CC net/netfilter/nf_nat_ftp.o
AR drivers/net/ethernet/3com/built-in.a
CC drivers/net/ethernet/8390/ne2k-pci.o
CC drivers/acpi/acpica/psxface.o
CC drivers/acpi/acpica/rsaddr.o
AR drivers/usb/common/built-in.a
AR drivers/net/wireless/admtek/built-in.a
AR drivers/net/wireless/ath/built-in.a
CC [M] drivers/gpu/drm/xe/xe_exec_queue.o
CC net/netfilter/nf_nat_irc.o
AR drivers/net/wireless/atmel/built-in.a
CC net/mac80211/s1g.o
CC drivers/input/serio/i8042.o
AR drivers/net/wireless/broadcom/built-in.a
AR drivers/net/wireless/intel/built-in.a
AR drivers/net/usb/built-in.a
CC drivers/ata/libata-sata.o
AR drivers/net/wireless/intersil/built-in.a
AR drivers/net/wireless/marvell/built-in.a
AR drivers/net/wireless/mediatek/built-in.a
CC kernel/extable.o
AR drivers/net/wireless/microchip/built-in.a
AR drivers/net/wireless/purelifi/built-in.a
CC drivers/pcmcia/cardbus.o
AR drivers/net/wireless/quantenna/built-in.a
AR drivers/net/wireless/ralink/built-in.a
AR drivers/net/ethernet/adaptec/built-in.a
AR drivers/net/wireless/realtek/built-in.a
CC drivers/usb/core/hub.o
AR kernel/trace/built-in.a
CC net/ipv4/udp.o
CC drivers/rtc/lib.o
CC drivers/scsi/scsi_scan.o
CC drivers/input/keyboard/atkbd.o
AR drivers/net/wireless/rsi/built-in.a
AR drivers/usb/phy/built-in.a
AR drivers/net/wireless/silabs/built-in.a
CC lib/llist.o
AR drivers/net/wireless/st/built-in.a
CC mm/memblock.o
AR drivers/net/wireless/ti/built-in.a
AR drivers/net/wireless/zydas/built-in.a
AR drivers/net/wireless/virtual/built-in.a
AR drivers/net/wireless/built-in.a
CC drivers/net/phy/phy_device.o
CC drivers/pcmcia/ds.o
CC [M] drivers/gpu/drm/xe/xe_execlist.o
CC net/sunrpc/rpcb_clnt.o
CC drivers/net/phy/linkmode.o
CC drivers/net/ethernet/8390/8390.o
CC drivers/acpi/acpica/rscalc.o
CC drivers/gpu/drm/i915/i915_memcpy.o
CC drivers/gpu/drm/drm_drv.o
AR drivers/net/mdio/built-in.a
CC net/mac80211/ibss.o
CC lib/lwq.o
CC drivers/input/serio/serport.o
CC drivers/rtc/class.o
CC drivers/gpu/drm/i915/i915_mm.o
CC drivers/usb/mon/mon_main.o
CC net/netfilter/nf_nat_sip.o
CC drivers/input/mouse/psmouse-base.o
CC arch/x86/kernel/ptrace.o
CC lib/memweight.o
CC kernel/params.o
CC fs/fcntl.o
CC net/ipv4/udplite.o
CC drivers/gpu/drm/drm_dumb_buffers.o
CC drivers/rtc/interface.o
CC lib/kfifo.o
CC drivers/acpi/acpica/rscreate.o
CC mm/slub.o
CC drivers/net/phy/phy_link_topology.o
CC net/netfilter/x_tables.o
AR drivers/net/ethernet/agere/built-in.a
CC drivers/net/mii.o
CC net/ipv6/datagram.o
CC drivers/pcmcia/pcmcia_resource.o
CC drivers/input/serio/libps2.o
CC drivers/gpu/drm/i915/i915_sw_fence.o
CC fs/ioctl.o
AR drivers/net/ethernet/alacritech/built-in.a
CC drivers/usb/mon/mon_stat.o
CC drivers/acpi/acpica/rsdumpinfo.o
AR drivers/input/keyboard/built-in.a
CC drivers/acpi/acpica/rsinfo.o
CC net/ipv6/ip6_flowlabel.o
CC drivers/ata/libata-sff.o
CC drivers/i2c/algos/i2c-algo-bit.o
CC drivers/usb/mon/mon_text.o
CC lib/percpu-refcount.o
CC net/mac80211/iface.o
CC mm/madvise.o
GEN drivers/scsi/scsi_devinfo_tbl.c
CC drivers/scsi/scsi_devinfo.o
CC drivers/usb/host/pci-quirks.o
CC drivers/acpi/debugfs.o
CC net/ipv6/inet6_connection_sock.o
CC [M] drivers/gpu/drm/xe/xe_force_wake.o
CC mm/page_io.o
CC drivers/scsi/scsi_sysctl.o
CC drivers/acpi/acpica/rsio.o
AR drivers/net/ethernet/8390/built-in.a
AR drivers/net/ethernet/alteon/built-in.a
CC net/ipv4/udp_offload.o
CC drivers/input/mouse/synaptics.o
AR drivers/net/ethernet/amazon/built-in.a
AR drivers/net/ethernet/amd/built-in.a
AR drivers/net/ethernet/aquantia/built-in.a
AR drivers/net/ethernet/arc/built-in.a
AR drivers/net/ethernet/asix/built-in.a
AR drivers/net/ethernet/atheros/built-in.a
CC drivers/usb/host/ehci-hcd.o
AR drivers/net/ethernet/cadence/built-in.a
CC drivers/net/ethernet/broadcom/bnx2.o
CC drivers/gpu/drm/i915/i915_sw_fence_work.o
CC drivers/usb/host/ehci-pci.o
CC arch/x86/kernel/tls.o
CC [M] drivers/gpu/drm/xe/xe_ggtt.o
CC arch/x86/kernel/step.o
AR drivers/input/serio/built-in.a
AR drivers/net/ethernet/brocade/built-in.a
CC drivers/net/ethernet/broadcom/tg3.o
CC kernel/kthread.o
CC drivers/pcmcia/cistpl.o
CC net/ipv6/udp_offload.o
AR drivers/i3c/built-in.a
CC net/sunrpc/timer.o
AR drivers/media/i2c/built-in.a
CC drivers/usb/mon/mon_bin.o
CC drivers/acpi/acpica/rsirq.o
AR drivers/media/tuners/built-in.a
AR drivers/media/rc/keymaps/built-in.a
AR drivers/media/rc/built-in.a
AR drivers/media/common/b2c2/built-in.a
CC lib/rhashtable.o
AR drivers/media/common/saa7146/built-in.a
AR drivers/media/common/siano/built-in.a
AR drivers/media/common/v4l2-tpg/built-in.a
AR drivers/media/common/videobuf2/built-in.a
AR drivers/media/common/built-in.a
AR drivers/media/platform/allegro-dvt/built-in.a
CC lib/base64.o
AR drivers/media/platform/amlogic/meson-ge2d/built-in.a
CC drivers/gpu/drm/i915/i915_syncmap.o
AR drivers/media/platform/amlogic/built-in.a
CC arch/x86/kernel/i8237.o
AR drivers/media/platform/amphion/built-in.a
AR drivers/media/platform/aspeed/built-in.a
AR drivers/media/platform/atmel/built-in.a
AR drivers/i2c/algos/built-in.a
CC drivers/i2c/busses/i2c-i801.o
CC drivers/net/phy/phy_package.o
AR drivers/media/platform/broadcom/built-in.a
AR drivers/media/platform/cadence/built-in.a
AR drivers/i2c/muxes/built-in.a
CC arch/x86/kernel/stacktrace.o
CC drivers/net/phy/phy_caps.o
AR drivers/media/platform/chips-media/coda/built-in.a
AR drivers/media/platform/chips-media/wave5/built-in.a
CC net/ipv6/seg6.o
CC drivers/scsi/scsi_proc.o
AR drivers/media/platform/chips-media/built-in.a
CC drivers/pcmcia/pcmcia_cis.o
AR drivers/net/ethernet/cavium/common/built-in.a
CC drivers/i2c/i2c-boardinfo.o
AR drivers/media/platform/imagination/built-in.a
AR drivers/net/ethernet/cavium/thunder/built-in.a
CC drivers/net/phy/mdio_bus.o
AR drivers/media/platform/intel/built-in.a
AR drivers/net/ethernet/cavium/liquidio/built-in.a
AR drivers/media/platform/marvell/built-in.a
AR drivers/net/ethernet/cavium/octeon/built-in.a
AR drivers/net/ethernet/cavium/built-in.a
AR drivers/media/platform/mediatek/jpeg/built-in.a
AR drivers/media/platform/microchip/built-in.a
AR drivers/media/platform/mediatek/mdp/built-in.a
CC net/mac80211/link.o
CC drivers/rtc/nvmem.o
CC drivers/acpi/acpica/rslist.o
AR drivers/media/platform/mediatek/vcodec/common/built-in.a
AR drivers/media/platform/mediatek/vcodec/encoder/built-in.a
AR drivers/media/platform/mediatek/vcodec/decoder/built-in.a
AR drivers/media/platform/mediatek/vcodec/built-in.a
AR drivers/media/platform/mediatek/vpu/built-in.a
AR drivers/media/platform/mediatek/mdp3/built-in.a
AR drivers/media/platform/mediatek/built-in.a
AR drivers/media/platform/nuvoton/built-in.a
AR drivers/media/platform/nvidia/tegra-vde/built-in.a
AR drivers/media/platform/nvidia/built-in.a
CC net/ipv6/fib6_notifier.o
AR drivers/media/pci/ttpci/built-in.a
AR drivers/media/platform/nxp/dw100/built-in.a
AR drivers/media/pci/b2c2/built-in.a
AR drivers/media/platform/nxp/imx-jpeg/built-in.a
CC drivers/rtc/dev.o
AR drivers/media/pci/pluto2/built-in.a
CC drivers/rtc/proc.o
AR drivers/media/platform/nxp/imx8-isi/built-in.a
CC [M] drivers/gpu/drm/xe/xe_gpu_scheduler.o
AR drivers/media/pci/dm1105/built-in.a
AR drivers/media/platform/nxp/built-in.a
AR drivers/media/pci/pt1/built-in.a
AR drivers/media/pci/pt3/built-in.a
AR drivers/media/platform/qcom/camss/built-in.a
AR drivers/media/pci/mantis/built-in.a
AR drivers/media/platform/qcom/iris/built-in.a
AR drivers/media/pci/ngene/built-in.a
AR drivers/media/platform/qcom/venus/built-in.a
AR drivers/media/platform/qcom/built-in.a
AR drivers/media/pci/ddbridge/built-in.a
CC drivers/gpu/drm/i915/i915_user_extensions.o
AR drivers/media/pci/saa7146/built-in.a
CC drivers/rtc/sysfs.o
AR drivers/media/platform/raspberrypi/pisp_be/built-in.a
AR drivers/media/pci/smipcie/built-in.a
AR drivers/media/platform/raspberrypi/rp1-cfe/built-in.a
AR drivers/media/pci/netup_unidvb/built-in.a
AR drivers/media/platform/raspberrypi/built-in.a
AR drivers/media/pci/intel/ipu3/built-in.a
CC drivers/acpi/acpica/rsmemory.o
AR drivers/media/platform/renesas/rcar-vin/built-in.a
AR drivers/media/pci/intel/ivsc/built-in.a
AR drivers/pps/clients/built-in.a
AR drivers/media/pci/intel/built-in.a
CC drivers/pps/pps.o
AR drivers/media/platform/renesas/rzg2l-cru/built-in.a
CC net/mac80211/rate.o
AR drivers/media/pci/built-in.a
AR drivers/media/platform/renesas/vsp1/built-in.a
AR drivers/media/platform/renesas/built-in.a
CC drivers/acpi/acpi_lpat.o
CC drivers/gpu/drm/drm_edid.o
AR drivers/media/platform/rockchip/rga/built-in.a
CC drivers/pcmcia/rsrc_mgr.o
AR drivers/media/platform/rockchip/rkisp1/built-in.a
AR drivers/media/platform/rockchip/built-in.a
AR drivers/media/platform/samsung/exynos-gsc/built-in.a
AR drivers/media/platform/samsung/exynos4-is/built-in.a
AR drivers/media/platform/samsung/s3c-camif/built-in.a
AR drivers/media/platform/samsung/s5p-g2d/built-in.a
AR drivers/media/platform/samsung/s5p-jpeg/built-in.a
AR drivers/media/platform/samsung/s5p-mfc/built-in.a
AR drivers/media/platform/samsung/built-in.a
CC arch/x86/kernel/reboot.o
CC net/netfilter/xt_tcpudp.o
CC [M] drivers/gpu/drm/xe/xe_gsc.o
AR drivers/media/platform/st/sti/bdisp/built-in.a
AR drivers/media/platform/st/sti/c8sectpfe/built-in.a
CC net/ipv4/arp.o
AR drivers/media/platform/st/sti/delta/built-in.a
AR drivers/media/platform/st/sti/hva/built-in.a
AR drivers/media/platform/st/stm32/built-in.a
CC drivers/net/loopback.o
CC drivers/net/netconsole.o
CC drivers/usb/core/hcd.o
AR drivers/media/platform/st/built-in.a
CC drivers/input/mouse/focaltech.o
CC net/sunrpc/xdr.o
AR drivers/media/platform/sunxi/sun4i-csi/built-in.a
CC drivers/gpu/drm/i915/i915_debugfs.o
AR drivers/media/platform/sunxi/sun6i-csi/built-in.a
CC drivers/acpi/acpica/rsmisc.o
AR drivers/usb/mon/built-in.a
AR drivers/media/platform/sunxi/sun6i-mipi-csi2/built-in.a
CC drivers/usb/core/urb.o
CC drivers/net/virtio_net.o
AR drivers/media/platform/sunxi/sun8i-a83t-mipi-csi2/built-in.a
CC drivers/scsi/scsi_debugfs.o
AR drivers/media/platform/sunxi/sun8i-di/built-in.a
CC kernel/sys_ni.o
AR drivers/input/joystick/built-in.a
CC lib/once.o
AR drivers/media/platform/sunxi/sun8i-rotate/built-in.a
AR drivers/media/platform/sunxi/built-in.a
CC drivers/gpu/drm/i915/i915_debugfs_params.o
CC drivers/gpu/drm/i915/i915_pmu.o
CC drivers/acpi/acpica/rsserial.o
AR drivers/media/platform/synopsys/hdmirx/built-in.a
AR drivers/media/platform/synopsys/built-in.a
CC drivers/ata/libata-pmp.o
AR drivers/media/platform/ti/am437x/built-in.a
AR drivers/media/platform/verisilicon/built-in.a
AR drivers/media/platform/ti/cal/built-in.a
AR drivers/input/tablet/built-in.a
CC drivers/input/mouse/alps.o
AR drivers/media/platform/ti/vpe/built-in.a
AR drivers/media/platform/ti/davinci/built-in.a
AR drivers/media/platform/ti/j721e-csi2rx/built-in.a
CC drivers/usb/class/usblp.o
AR drivers/media/platform/ti/omap/built-in.a
CC drivers/usb/storage/scsiglue.o
AR drivers/media/platform/ti/omap3isp/built-in.a
AR drivers/media/platform/ti/built-in.a
AR drivers/usb/misc/built-in.a
CC drivers/net/phy/mdio_device.o
CC drivers/pps/kapi.o
CC fs/nfs/nfs4state.o
AR drivers/media/platform/via/built-in.a
CC drivers/rtc/rtc-mc146818-lib.o
CC drivers/usb/core/message.o
AR drivers/media/platform/xilinx/built-in.a
CC lib/refcount.o
AR drivers/media/platform/built-in.a
CC drivers/usb/core/driver.o
AR drivers/i2c/busses/built-in.a
CC drivers/i2c/i2c-core-base.o
AR drivers/media/usb/b2c2/built-in.a
AR drivers/media/usb/dvb-usb/built-in.a
CC net/netfilter/xt_CONNSECMARK.o
CC drivers/pcmcia/rsrc_nonstatic.o
AR drivers/media/usb/dvb-usb-v2/built-in.a
AR drivers/media/usb/s2255/built-in.a
AR drivers/media/usb/siano/built-in.a
AR drivers/media/usb/ttusb-budget/built-in.a
CC fs/readdir.o
AR drivers/media/usb/ttusb-dec/built-in.a
CC kernel/nsproxy.o
AR drivers/media/usb/built-in.a
AR drivers/media/mmc/siano/built-in.a
AR drivers/media/mmc/built-in.a
AR drivers/media/firewire/built-in.a
CC net/sunrpc/sunrpc_syms.o
AR drivers/media/spi/built-in.a
AR drivers/media/test-drivers/built-in.a
CC drivers/usb/early/ehci-dbgp.o
AR drivers/media/built-in.a
CC net/ipv6/rpl.o
CC net/ipv6/ioam6.o
CC lib/rcuref.o
CC drivers/acpi/acpica/rsutils.o
AR drivers/input/touchscreen/built-in.a
CC drivers/acpi/acpi_pcc.o
CC [M] drivers/gpu/drm/xe/xe_gsc_debugfs.o
CC arch/x86/kernel/msr.o
CC lib/usercopy.o
CC drivers/scsi/scsi_trace.o
CC drivers/pps/sysfs.o
CC drivers/rtc/rtc-cmos.o
CC net/netfilter/xt_NFLOG.o
CC drivers/i2c/i2c-core-smbus.o
CC drivers/ptp/ptp_clock.o
CC drivers/acpi/acpica/rsxface.o
CC fs/select.o
CC lib/errseq.o
CC drivers/usb/storage/protocol.o
AR drivers/input/misc/built-in.a
CC net/sunrpc/cache.o
CC net/mac80211/michael.o
AR drivers/usb/class/built-in.a
CC drivers/net/phy/swphy.o
CC drivers/gpu/drm/drm_eld.o
CC net/ipv6/sysctl_net_ipv6.o
CC lib/bucket_locks.o
CC drivers/usb/core/config.o
AR drivers/net/ethernet/chelsio/built-in.a
CC drivers/pcmcia/yenta_socket.o
CC drivers/ata/libata-acpi.o
CC net/sunrpc/rpc_pipe.o
AR drivers/pps/built-in.a
CC drivers/input/input.o
CC drivers/acpi/acpica/tbdata.o
CC drivers/input/mouse/byd.o
CC net/ipv6/xfrm6_policy.o
AR drivers/usb/early/built-in.a
CC net/netfilter/xt_SECMARK.o
CC drivers/net/phy/fixed_phy.o
CC [M] drivers/gpu/drm/xe/xe_gsc_proxy.o
CC net/ipv4/icmp.o
CC kernel/notifier.o
CC mm/swap_state.o
CC mm/swapfile.o
CC drivers/gpu/drm/i915/gt/gen2_engine_cs.o
CC net/sunrpc/sysfs.o
CC lib/generic-radix-tree.o
CC arch/x86/kernel/cpuid.o
CC drivers/scsi/scsi_logging.o
CC drivers/scsi/scsi_pm.o
CC drivers/usb/host/ohci-hcd.o
CC drivers/net/net_failover.o
CC net/netfilter/xt_TCPMSS.o
CC net/mac80211/tkip.o
CC kernel/ksysfs.o
CC fs/dcache.o
CC drivers/usb/storage/transport.o
CC drivers/acpi/acpica/tbfadt.o
CC drivers/gpu/drm/i915/gt/gen6_engine_cs.o
CC drivers/input/mouse/logips2pp.o
CC drivers/ata/libata-pata-timings.o
AR drivers/rtc/built-in.a
CC drivers/scsi/scsi_bsg.o
CC [M] drivers/gpu/drm/xe/xe_gsc_submit.o
CC lib/bitmap-str.o
CC drivers/i2c/i2c-core-acpi.o
CC drivers/ptp/ptp_chardev.o
CC fs/inode.o
CC arch/x86/kernel/early-quirks.o
CC net/ipv4/devinet.o
CC drivers/acpi/ac.o
CC kernel/cred.o
CC drivers/input/mouse/lifebook.o
CC drivers/acpi/acpica/tbfind.o
CC fs/attr.o
CC fs/nfs/nfs4renewd.o
CC drivers/usb/core/file.o
CC drivers/gpu/drm/i915/gt/gen6_ppgtt.o
AR drivers/net/ethernet/cisco/built-in.a
CC mm/dmapool.o
CC drivers/ptp/ptp_sysfs.o
AR drivers/net/phy/built-in.a
CC drivers/acpi/acpica/tbinstal.o
CC drivers/input/mouse/trackpoint.o
CC net/ipv6/xfrm6_state.o
CC net/ipv6/xfrm6_input.o
AR drivers/pcmcia/built-in.a
CC drivers/power/supply/power_supply_core.o
CC drivers/power/supply/power_supply_sysfs.o
CC drivers/input/input-compat.o
CC lib/string_helpers.o
CC drivers/ata/ahci.o
CC net/netfilter/xt_conntrack.o
CC drivers/scsi/scsi_common.o
CC net/mac80211/aes_cmac.o
AR drivers/net/ethernet/cortina/built-in.a
CC [M] drivers/gpu/drm/xe/xe_gt.o
CC arch/x86/kernel/smp.o
CC drivers/power/supply/power_supply_leds.o
CC drivers/gpu/drm/i915/gt/gen7_renderclear.o
CC arch/x86/kernel/smpboot.o
CC drivers/ptp/ptp_vclock.o
CC drivers/usb/storage/usb.o
CC drivers/hwmon/hwmon.o
AR drivers/thermal/broadcom/built-in.a
AR drivers/thermal/renesas/built-in.a
CC drivers/acpi/acpica/tbprint.o
CC fs/bad_inode.o
AR drivers/thermal/samsung/built-in.a
CC drivers/thermal/intel/intel_tcc.o
CC drivers/ata/libahci.o
CC drivers/usb/storage/initializers.o
CC net/netfilter/xt_policy.o
CC drivers/i2c/i2c-smbus.o
CC drivers/ata/ata_piix.o
CC drivers/usb/core/buffer.o
AR drivers/thermal/st/built-in.a
CC drivers/ata/pata_amd.o
CC fs/file.o
CC fs/nfs/nfs4super.o
CC net/mac80211/aes_gmac.o
CC net/ipv4/af_inet.o
CC drivers/scsi/scsi_transport_spi.o
CC drivers/gpu/drm/drm_encoder.o
CC drivers/thermal/intel/therm_throt.o
AR drivers/watchdog/built-in.a
CC drivers/input/mouse/cypress_ps2.o
AR drivers/net/ethernet/dlink/built-in.a
AR drivers/net/ethernet/dec/tulip/built-in.a
CC net/sunrpc/svc_xprt.o
AR drivers/net/ethernet/dec/built-in.a
CC drivers/usb/storage/sierra_ms.o
CC kernel/reboot.o
CC drivers/gpu/drm/i915/gt/gen8_engine_cs.o
CC drivers/acpi/acpica/tbutils.o
AR drivers/net/ethernet/emulex/built-in.a
CC net/ipv4/igmp.o
AR drivers/net/ethernet/engleder/built-in.a
CC drivers/acpi/acpica/tbxface.o
CC drivers/power/supply/power_supply_hwmon.o
CC drivers/md/md.o
CC lib/hexdump.o
CC arch/x86/kernel/tsc_sync.o
CC drivers/ptp/ptp_kvm_x86.o
CC drivers/acpi/button.o
CC arch/x86/kernel/setup_percpu.o
CC fs/filesystems.o
CC net/ipv6/xfrm6_output.o
CC drivers/usb/host/ohci-pci.o
CC drivers/usb/core/sysfs.o
CC net/ipv6/xfrm6_protocol.o
CC mm/hugetlb.o
CC lib/kstrtox.o
CC net/mac80211/fils_aead.o
CC drivers/md/md-bitmap.o
CC net/ipv4/fib_frontend.o
CC arch/x86/kernel/mpparse.o
CC drivers/input/mouse/psmouse-smbus.o
AR drivers/i2c/built-in.a
CC drivers/acpi/acpica/tbxfload.o
CC drivers/usb/core/endpoint.o
CC drivers/acpi/fan_core.o
CC drivers/usb/storage/option_ms.o
CC drivers/gpu/drm/drm_file.o
CC [M] drivers/gpu/drm/xe/xe_gt_ccs_mode.o
AR drivers/power/supply/built-in.a
AR drivers/power/built-in.a
CC drivers/ptp/ptp_kvm_common.o
CC drivers/md/md-autodetect.o
AR drivers/net/ethernet/ezchip/built-in.a
CC drivers/input/input-mt.o
CC drivers/input/input-poller.o
CC drivers/md/dm.o
CC drivers/usb/core/devio.o
CC mm/mmu_notifier.o
CC net/netfilter/xt_state.o
CC drivers/ata/pata_oldpiix.o
AR drivers/hwmon/built-in.a
CC kernel/async.o
CC [M] drivers/gpu/drm/xe/xe_gt_clock.o
CC lib/iomap.o
CC fs/namespace.o
CC drivers/acpi/acpica/tbxfroot.o
CC fs/nfs/nfs4file.o
CC [M] drivers/thermal/intel/x86_pkg_temp_thermal.o
CC net/sunrpc/xprtmultipath.o
CC drivers/usb/host/uhci-hcd.o
CC drivers/gpu/drm/i915/gt/gen8_ppgtt.o
CC drivers/md/dm-table.o
CC drivers/input/ff-core.o
CC mm/migrate.o
CC drivers/usb/storage/usual-tables.o
CC arch/x86/kernel/trace_clock.o
CC net/ipv4/fib_semantics.o
CC drivers/scsi/virtio_scsi.o
AR drivers/net/ethernet/fujitsu/built-in.a
CC drivers/usb/host/xhci.o
CC drivers/usb/host/xhci-mem.o
CC drivers/md/dm-target.o
AR net/wireless/built-in.a
CC net/mac80211/cfg.o
AR drivers/input/mouse/built-in.a
CC kernel/range.o
CC drivers/cpufreq/cpufreq.o
CC drivers/acpi/acpica/utaddress.o
CC kernel/smpboot.o
AR drivers/ptp/built-in.a
CC [M] net/netfilter/nf_log_syslog.o
CC drivers/gpu/drm/i915/gt/intel_breadcrumbs.o
CC net/ipv4/fib_trie.o
AR drivers/thermal/qcom/built-in.a
CC [M] drivers/gpu/drm/xe/xe_gt_freq.o
CC drivers/md/dm-linear.o
CC net/ipv4/fib_notifier.o
CC net/mac80211/ethtool.o
CC arch/x86/kernel/trace.o
AR drivers/thermal/tegra/built-in.a
CC drivers/acpi/acpica/utalloc.o
CC drivers/cpuidle/governors/menu.o
CC drivers/cpuidle/governors/haltpoll.o
CC drivers/ata/pata_sch.o
CC arch/x86/kernel/rethook.o
CC net/ipv6/netfilter.o
AR drivers/usb/storage/built-in.a
CC fs/seq_file.o
AR drivers/mmc/built-in.a
AR drivers/thermal/intel/built-in.a
CC arch/x86/kernel/vmcore_info_32.o
CC lib/iomap_copy.o
CC drivers/input/touchscreen.o
AR drivers/thermal/mediatek/built-in.a
CC net/ipv6/proc.o
CC drivers/thermal/thermal_core.o
CC drivers/acpi/acpica/utascii.o
AR drivers/ufs/built-in.a
CC drivers/cpuidle/cpuidle.o
CC net/sunrpc/stats.o
CC lib/devres.o
CC drivers/usb/host/xhci-ext-caps.o
CC kernel/ucount.o
CC drivers/ata/pata_mpiix.o
CC mm/page_counter.o
CC drivers/acpi/acpica/utbuffer.o
CC fs/xattr.o
CC drivers/thermal/thermal_sysfs.o
CC drivers/gpu/drm/i915/gt/intel_context.o
CC drivers/scsi/sd.o
CC drivers/md/dm-stripe.o
CC arch/x86/kernel/machine_kexec_32.o
CC drivers/scsi/sr.o
CC net/mac80211/rx.o
CC [M] drivers/gpu/drm/xe/xe_gt_idle.o
CC drivers/input/ff-memless.o
CC net/ipv6/syncookies.o
CC lib/check_signature.o
CC drivers/acpi/fan_attr.o
CC drivers/cpuidle/driver.o
CC drivers/gpu/drm/drm_fourcc.o
CC net/ipv4/inet_fragment.o
CC fs/nfs/delegation.o
CC kernel/regset.o
CC drivers/acpi/acpica/utcksum.o
CC lib/interval_tree.o
AR drivers/cpuidle/governors/built-in.a
AR drivers/firmware/arm_ffa/built-in.a
AR drivers/firmware/arm_scmi/built-in.a
AR drivers/firmware/broadcom/built-in.a
CC kernel/ksyms_common.o
CC fs/nfs/nfs4idmap.o
AR drivers/firmware/cirrus/test/built-in.a
AR drivers/firmware/cirrus/built-in.a
CC drivers/ata/ata_generic.o
AR drivers/firmware/meson/built-in.a
AR drivers/firmware/microchip/built-in.a
CC drivers/cpuidle/governor.o
CC drivers/firmware/efi/efi-bgrt.o
CC [M] net/netfilter/xt_mark.o
CC drivers/usb/core/notify.o
CC drivers/input/sparse-keymap.o
AS arch/x86/kernel/relocate_kernel_32.o
CC net/ipv6/calipso.o
CC drivers/input/vivaldi-fmap.o
CC drivers/firmware/efi/libstub/efi-stub-helper.o
CC lib/assoc_array.o
CC drivers/gpu/drm/i915/gt/intel_context_sseu.o
AR drivers/net/ethernet/fungible/built-in.a
CC drivers/gpu/drm/drm_framebuffer.o
CC drivers/cpuidle/sysfs.o
CC net/sunrpc/sysctl.o
CC drivers/usb/core/generic.o
CC drivers/acpi/acpica/utcopy.o
CC drivers/firmware/efi/efi.o
CC drivers/scsi/sr_ioctl.o
CC arch/x86/kernel/module.o
CC drivers/usb/host/xhci-ring.o
CC fs/libfs.o
AR drivers/firmware/imx/built-in.a
CC drivers/acpi/fan_hwmon.o
CC drivers/cpuidle/poll_state.o
CC [M] net/netfilter/xt_nat.o
CC drivers/firmware/efi/vars.o
CC net/ipv4/ping.o
CC kernel/groups.o
CC [M] drivers/gpu/drm/xe/xe_gt_mcr.o
CC drivers/cpufreq/freq_table.o
CC lib/bitrev.o
AR drivers/net/ethernet/google/built-in.a
CC drivers/gpu/drm/i915/gt/intel_engine_cs.o
CC [M] net/netfilter/xt_LOG.o
CC drivers/thermal/thermal_trip.o
CC drivers/input/input-leds.o
CC drivers/gpu/drm/drm_gem.o
CC net/ipv6/ah6.o
CC drivers/acpi/acpica/utexcep.o
AR drivers/ata/built-in.a
AR drivers/firmware/psci/built-in.a
CC fs/fs-writeback.o
CC drivers/usb/host/xhci-hub.o
CC drivers/cpuidle/cpuidle-haltpoll.o
AR drivers/net/ethernet/hisilicon/built-in.a
AR drivers/net/ethernet/huawei/built-in.a
CC drivers/acpi/acpica/utdebug.o
CC drivers/firmware/efi/reboot.o
CC net/ipv6/esp6.o
CC arch/x86/kernel/doublefault_32.o
CC drivers/usb/core/quirks.o
CC drivers/firmware/efi/libstub/gop.o
CC lib/crc-ccitt.o
CC net/ipv4/ip_tunnel_core.o
CC fs/pnode.o
CC drivers/firmware/efi/memattr.o
CC [M] drivers/gpu/drm/xe/xe_gt_pagefault.o
CC drivers/firmware/efi/tpm.o
CC drivers/usb/core/devices.o
CC mm/hugetlb_cgroup.o
CC drivers/thermal/thermal_helpers.o
CC drivers/usb/core/phy.o
CC drivers/cpufreq/cpufreq_performance.o
CC drivers/firmware/efi/libstub/secureboot.o
CC arch/x86/kernel/early_printk.o
CC drivers/acpi/acpica/utdecode.o
AR net/sunrpc/built-in.a
CC drivers/acpi/acpi_video.o
CC lib/crc16.o
AR drivers/cpuidle/built-in.a
HOSTCC lib/gen_crc32table
CC drivers/input/evdev.o
CC drivers/thermal/thermal_thresholds.o
CC drivers/md/dm-ioctl.o
CC drivers/gpu/drm/i915/gt/intel_engine_heartbeat.o
CC kernel/kcmp.o
CC drivers/firmware/efi/memmap.o
CC drivers/usb/core/port.o
CC fs/splice.o
CC drivers/cpufreq/cpufreq_userspace.o
CC drivers/cpufreq/cpufreq_ondemand.o
CC net/ipv6/sit.o
CC drivers/gpu/drm/drm_ioctl.o
CC lib/xxhash.o
CC drivers/net/ethernet/intel/e1000/e1000_main.o
CC drivers/acpi/acpica/utdelete.o
CC [M] drivers/gpu/drm/xe/xe_gt_sysfs.o
CC net/ipv6/addrconf_core.o
CC net/ipv4/gre_offload.o
CC net/mac80211/spectmgmt.o
CC drivers/net/ethernet/intel/e1000e/82571.o
CC drivers/acpi/acpica/uterror.o
CC drivers/firmware/efi/libstub/tpm.o
CC kernel/freezer.o
CC fs/nfs/callback.o
AR drivers/crypto/stm32/built-in.a
CC drivers/thermal/thermal_netlink.o
CC drivers/net/ethernet/intel/e1000e/ich8lan.o
AR drivers/crypto/inside-secure/eip93/built-in.a
CC arch/x86/kernel/hpet.o
AR drivers/crypto/inside-secure/built-in.a
AR drivers/firmware/qcom/built-in.a
AR drivers/crypto/xilinx/built-in.a
AR drivers/crypto/hisilicon/built-in.a
CC drivers/gpu/drm/drm_lease.o
CC lib/genalloc.o
AR drivers/crypto/intel/keembay/built-in.a
CC net/ipv6/exthdrs_core.o
AR drivers/crypto/intel/ixp4xx/built-in.a
CC [M] net/netfilter/xt_MASQUERADE.o
AR drivers/crypto/intel/built-in.a
AR drivers/crypto/starfive/built-in.a
AR drivers/crypto/built-in.a
CC drivers/firmware/efi/capsule.o
AR drivers/net/ethernet/broadcom/built-in.a
CC drivers/md/dm-io.o
CC drivers/net/ethernet/intel/e1000/e1000_hw.o
CC drivers/scsi/sr_vendor.o
CC [M] drivers/gpu/drm/xe/xe_gt_throttle.o
CC mm/early_ioremap.o
CC kernel/profile.o
CC [M] net/netfilter/xt_addrtype.o
CC drivers/net/ethernet/intel/e1000e/80003es2lan.o
CC drivers/acpi/acpica/uteval.o
CC drivers/thermal/thermal_hwmon.o
CC drivers/usb/core/hcd-pci.o
AR drivers/net/ethernet/i825xx/built-in.a
CC net/mac80211/tx.o
CC drivers/cpufreq/cpufreq_governor.o
AR drivers/input/built-in.a
CC net/ipv6/ip6_checksum.o
CC drivers/acpi/video_detect.o
CC drivers/md/dm-kcopyd.o
CC drivers/net/ethernet/intel/e1000/e1000_ethtool.o
CC drivers/scsi/sg.o
CC drivers/thermal/gov_step_wise.o
CC drivers/net/ethernet/intel/e1000e/mac.o
CC arch/x86/kernel/amd_nb.o
CC drivers/firmware/efi/libstub/file.o
CC lib/percpu_counter.o
CC drivers/acpi/acpica/utglobal.o
CC mm/secretmem.o
CC net/mac80211/key.o
CC fs/sync.o
CC fs/utimes.o
CC drivers/net/ethernet/intel/e1000e/manage.o
CC drivers/md/dm-sysfs.o
AR drivers/firmware/samsung/built-in.a
CC drivers/cpufreq/cpufreq_governor_attr_set.o
CC kernel/stacktrace.o
CC net/ipv4/metrics.o
CC drivers/acpi/processor_driver.o
CC drivers/gpu/drm/i915/gt/intel_engine_pm.o
CC drivers/clocksource/acpi_pm.o
CC drivers/gpu/drm/i915/gt/intel_engine_user.o
CC fs/d_path.o
CC fs/nfs/callback_xdr.o
CC [M] drivers/gpu/drm/xe/xe_gt_tlb_invalidation.o
CC drivers/acpi/acpica/uthex.o
CC fs/nfs/callback_proc.o
CC lib/audit.o
CC drivers/firmware/efi/libstub/mem.o
CC drivers/acpi/acpica/utids.o
CC net/mac80211/util.o
CC drivers/usb/core/usb-acpi.o
CC kernel/dma.o
CC drivers/usb/host/xhci-dbg.o
CC lib/syscall.o
CC drivers/hid/usbhid/hid-core.o
CC drivers/hid/hid-core.o
CC drivers/md/dm-stats.o
AR drivers/thermal/built-in.a
CC mm/hmm.o
CC mm/memfd.o
CC drivers/cpufreq/acpi-cpufreq.o
CC drivers/gpu/drm/drm_managed.o
CC drivers/net/ethernet/intel/e100.o
CC arch/x86/kernel/amd_node.o
AR drivers/platform/x86/amd/built-in.a
CC drivers/platform/x86/wmi.o
AR drivers/platform/x86/intel/built-in.a
CC kernel/smp.o
CC drivers/net/ethernet/intel/e1000/e1000_param.o
AR net/netfilter/built-in.a
CC net/mac80211/parse.o
AR drivers/net/ethernet/microsoft/built-in.a
CC drivers/acpi/acpica/utinit.o
AR drivers/firmware/smccc/built-in.a
CC drivers/clocksource/i8253.o
CC [M] drivers/gpu/drm/xe/xe_gt_topology.o
CC drivers/hid/hid-input.o
CC drivers/hid/usbhid/hiddev.o
CC drivers/usb/host/xhci-trace.o
CC net/mac80211/wme.o
CC drivers/acpi/acpica/utlock.o
CC drivers/gpu/drm/i915/gt/intel_execlists_submission.o
CC net/ipv6/ip6_icmp.o
CC fs/nfs/nfs4namespace.o
CC drivers/gpu/drm/drm_mm.o
CC drivers/gpu/drm/drm_mode_config.o
AR drivers/firmware/tegra/built-in.a
CC net/mac80211/chan.o
CC drivers/firmware/efi/libstub/random.o
CC lib/errname.o
CC lib/nlattr.o
AR drivers/usb/core/built-in.a
CC drivers/firmware/efi/libstub/randomalloc.o
CC net/mac80211/trace.o
AR drivers/firmware/xilinx/built-in.a
CC drivers/firmware/efi/libstub/pci.o
CC drivers/hid/usbhid/hid-pidff.o
CC drivers/gpu/drm/drm_mode_object.o
AR drivers/clocksource/built-in.a
CC net/mac80211/mlme.o
CC drivers/mailbox/mailbox.o
CC drivers/acpi/acpica/utmath.o
CC net/ipv6/output_core.o
CC arch/x86/kernel/kvm.o
CC net/ipv4/netlink.o
CC drivers/md/dm-rq.o
CC drivers/scsi/scsi_sysfs.o
CC drivers/acpi/processor_thermal.o
CC arch/x86/kernel/kvmclock.o
CC drivers/cpufreq/amd-pstate.o
CC mm/execmem.o
CC fs/nfs/nfs4getroot.o
CC fs/nfs/nfs4client.o
AR drivers/platform/surface/built-in.a
CC drivers/platform/x86/wmi-bmof.o
CC drivers/firmware/dmi_scan.o
CC drivers/net/ethernet/intel/e1000e/nvm.o
CC drivers/acpi/acpica/utmisc.o
CC fs/nfs/nfs4session.o
CC net/ipv6/protocol.o
AR drivers/perf/built-in.a
CC drivers/mailbox/pcc.o
CC drivers/md/dm-io-rewind.o
CC net/ipv4/nexthop.o
CC arch/x86/kernel/paravirt.o
CC drivers/firmware/dmi-id.o
CC [M] drivers/gpu/drm/xe/xe_guc.o
CC drivers/acpi/processor_idle.o
CC drivers/firmware/efi/libstub/skip_spaces.o
CC drivers/firmware/efi/libstub/lib-cmdline.o
CC drivers/firmware/efi/esrt.o
CC kernel/uid16.o
CC drivers/platform/x86/eeepc-laptop.o
AR drivers/net/ethernet/litex/built-in.a
CC drivers/cpufreq/amd-pstate-trace.o
CC drivers/gpu/drm/i915/gt/intel_ggtt.o
CC drivers/firmware/efi/libstub/lib-ctype.o
CC drivers/acpi/acpica/utmutex.o
CC drivers/firmware/efi/libstub/alignedmem.o
CC drivers/firmware/efi/libstub/relocate.o
AR drivers/net/ethernet/intel/e1000/built-in.a
CC drivers/usb/host/xhci-debugfs.o
CC lib/cpu_rmap.o
CC net/mac80211/tdls.o
CC fs/nfs/dns_resolve.o
CC drivers/hid/hid-quirks.o
CC drivers/firmware/efi/libstub/printk.o
CC drivers/cpufreq/intel_pstate.o
AR mm/built-in.a
AR drivers/net/ethernet/marvell/octeon_ep/built-in.a
CC net/ipv4/udp_tunnel_stub.o
AR drivers/net/ethernet/marvell/octeon_ep_vf/built-in.a
AR drivers/net/ethernet/marvell/octeontx2/built-in.a
CC drivers/net/ethernet/marvell/sky2.o
CC drivers/gpu/drm/drm_modes.o
AR drivers/net/ethernet/marvell/prestera/built-in.a
CC drivers/platform/x86/p2sb.o
CC net/mac80211/ocb.o
AR drivers/hid/usbhid/built-in.a
CC drivers/acpi/acpica/utnonansi.o
CC fs/nfs/nfs4trace.o
AR drivers/mailbox/built-in.a
CC drivers/usb/host/xhci-pci.o
CC fs/stack.o
CC drivers/gpu/drm/drm_modeset_lock.o
CC lib/dynamic_queue_limits.o
CC [M] drivers/gpu/drm/xe/xe_guc_ads.o
CC drivers/firmware/memmap.o
CC drivers/md/dm-builtin.o
CC arch/x86/kernel/pvclock.o
AR drivers/scsi/built-in.a
CC net/mac80211/airtime.o
CC net/ipv6/ip6_offload.o
CC drivers/net/ethernet/intel/e1000e/phy.o
CC drivers/hid/hid-debug.o
AR drivers/net/ethernet/mellanox/built-in.a
AR drivers/net/ethernet/meta/built-in.a
CC kernel/kallsyms.o
CC lib/glob.o
CC [M] drivers/gpu/drm/xe/xe_guc_buf.o
CC drivers/acpi/acpica/utobject.o
CC drivers/gpu/drm/drm_plane.o
CC drivers/net/ethernet/intel/e1000e/param.o
CC drivers/hid/hidraw.o
CC drivers/hid/hid-generic.o
AR drivers/hwtracing/intel_th/built-in.a
AR drivers/net/ethernet/micrel/built-in.a
CC drivers/firmware/efi/libstub/vsprintf.o
CC drivers/gpu/drm/i915/gt/intel_ggtt_fencing.o
CC drivers/firmware/efi/runtime-wrappers.o
CC [M] drivers/gpu/drm/xe/xe_guc_capture.o
CC net/ipv4/ip_tunnel.o
CC drivers/firmware/efi/libstub/x86-stub.o
CC kernel/acct.o
AR drivers/platform/x86/built-in.a
CC net/ipv6/tcpv6_offload.o
CC net/ipv4/sysctl_net_ipv4.o
AR drivers/platform/built-in.a
CC net/ipv4/proc.o
CC fs/nfs/nfs4sysctl.o
CC arch/x86/kernel/pcspeaker.o
AR drivers/android/built-in.a
CC drivers/acpi/processor_throttling.o
AR drivers/net/ethernet/microchip/built-in.a
CC net/mac80211/eht.o
CC drivers/firmware/efi/libstub/smbios.o
CC drivers/acpi/acpica/utosi.o
CC net/ipv6/exthdrs_offload.o
CC arch/x86/kernel/check.o
CC fs/fs_struct.o
CC net/mac80211/led.o
CC drivers/net/ethernet/intel/e1000e/ethtool.o
CC drivers/md/dm-raid1.o
CC drivers/net/ethernet/intel/e1000e/netdev.o
CC lib/strncpy_from_user.o
CC drivers/md/dm-log.o
CC drivers/md/dm-region-hash.o
CC drivers/net/ethernet/intel/e1000e/ptp.o
CC drivers/acpi/acpica/utownerid.o
CC drivers/md/dm-zero.o
CC drivers/gpu/drm/drm_prime.o
CC drivers/hid/hid-a4tech.o
AR drivers/usb/host/built-in.a
AR drivers/usb/built-in.a
CC lib/strnlen_user.o
CC arch/x86/kernel/uprobes.o
CC net/ipv6/inet6_hashtables.o
CC drivers/acpi/acpica/utpredef.o
CC drivers/gpu/drm/drm_print.o
STUBCPY drivers/firmware/efi/libstub/alignedmem.stub.o
STUBCPY drivers/firmware/efi/libstub/efi-stub-helper.stub.o
CC [M] drivers/gpu/drm/xe/xe_guc_ct.o
CC drivers/hid/hid-apple.o
STUBCPY drivers/firmware/efi/libstub/file.stub.o
STUBCPY drivers/firmware/efi/libstub/gop.stub.o
AR drivers/nvmem/layouts/built-in.a
STUBCPY drivers/firmware/efi/libstub/lib-cmdline.stub.o
CC drivers/nvmem/core.o
STUBCPY drivers/firmware/efi/libstub/lib-ctype.stub.o
STUBCPY drivers/firmware/efi/libstub/mem.stub.o
AR drivers/net/ethernet/mscc/built-in.a
STUBCPY drivers/firmware/efi/libstub/pci.stub.o
CC drivers/gpu/drm/i915/gt/intel_gt.o
STUBCPY drivers/firmware/efi/libstub/printk.stub.o
STUBCPY drivers/firmware/efi/libstub/random.stub.o
STUBCPY drivers/firmware/efi/libstub/randomalloc.stub.o
STUBCPY drivers/firmware/efi/libstub/relocate.stub.o
STUBCPY drivers/firmware/efi/libstub/secureboot.stub.o
STUBCPY drivers/firmware/efi/libstub/skip_spaces.stub.o
CC net/mac80211/pm.o
STUBCPY drivers/firmware/efi/libstub/smbios.stub.o
STUBCPY drivers/firmware/efi/libstub/tpm.stub.o
STUBCPY drivers/firmware/efi/libstub/vsprintf.stub.o
STUBCPY drivers/firmware/efi/libstub/x86-stub.stub.o
CC kernel/vmcore_info.o
CC [M] drivers/gpu/drm/xe/xe_guc_db_mgr.o
CC drivers/acpi/processor_perflib.o
AR drivers/firmware/efi/libstub/lib.a
CC arch/x86/kernel/perf_regs.o
CC net/ipv4/fib_rules.o
CC net/mac80211/rc80211_minstrel_ht.o
CC drivers/firmware/efi/capsule-loader.o
AR drivers/net/ethernet/myricom/built-in.a
CC drivers/firmware/efi/earlycon.o
CC [M] drivers/gpu/drm/xe/xe_guc_engine_activity.o
CC drivers/acpi/acpica/utresdecode.o
CC drivers/hid/hid-belkin.o
CC kernel/elfcorehdr.o
CC fs/statfs.o
AR drivers/cpufreq/built-in.a
CC drivers/gpu/drm/drm_property.o
CC lib/net_utils.o
CC drivers/gpu/drm/i915/gt/intel_gt_buffer_pool.o
CC net/ipv4/ipmr.o
AR drivers/net/ethernet/natsemi/built-in.a
CC drivers/acpi/acpica/utresrc.o
CC drivers/acpi/acpica/utstate.o
CC lib/sg_pool.o
CC [M] drivers/gpu/drm/xe/xe_guc_hwconfig.o
CC drivers/hid/hid-cherry.o
CC arch/x86/kernel/tracepoint.o
CC drivers/acpi/container.o
CC net/ipv4/ipmr_base.o
CC fs/fs_pin.o
CC kernel/kexec_core.o
CC arch/x86/kernel/itmt.o
CC lib/stackdepot.o
CC net/ipv6/mcast_snoop.o
AR drivers/md/built-in.a
CC kernel/kexec.o
CC drivers/hid/hid-chicony.o
CC fs/nsfs.o
CC drivers/acpi/acpica/utstring.o
CC net/ipv4/syncookies.o
CC [M] drivers/gpu/drm/xe/xe_guc_id_mgr.o
CC drivers/gpu/drm/i915/gt/intel_gt_ccs_mode.o
CC lib/asn1_decoder.o
CC drivers/acpi/thermal_lib.o
AR drivers/net/ethernet/neterion/built-in.a
AR drivers/net/ethernet/netronome/built-in.a
GEN lib/oid_registry_data.c
CC net/ipv4/tunnel4.o
CC drivers/acpi/acpica/utstrsuppt.o
AR drivers/firmware/efi/built-in.a
CC fs/fs_types.o
AR drivers/firmware/built-in.a
CC net/ipv4/ipconfig.o
CC arch/x86/kernel/umip.o
CC arch/x86/kernel/unwind_frame.o
CC net/mac80211/wbrf.o
CC lib/ucs2_string.o
AR drivers/net/ethernet/ni/built-in.a
CC drivers/gpu/drm/i915/gt/intel_gt_clock_utils.o
CC kernel/utsname.o
CC drivers/gpu/drm/i915/gt/intel_gt_debugfs.o
CC drivers/net/ethernet/nvidia/forcedeth.o
CC drivers/gpu/drm/drm_rect.o
AR drivers/nvmem/built-in.a
CC drivers/acpi/thermal.o
CC drivers/acpi/acpica/utstrtoul64.o
CC kernel/pid_namespace.o
CC drivers/gpu/drm/i915/gt/intel_gt_engines_debugfs.o
CC [M] drivers/gpu/drm/xe/xe_guc_klv_helpers.o
CC drivers/acpi/acpica/utxface.o
CC net/ipv4/netfilter.o
CC fs/fs_context.o
AR drivers/net/ethernet/oki-semi/built-in.a
CC lib/sbitmap.o
CC drivers/acpi/acpica/utxfinit.o
CC drivers/gpu/drm/i915/gt/intel_gt_irq.o
AR drivers/net/ethernet/marvell/built-in.a
CC drivers/hid/hid-cypress.o
CC fs/fs_parser.o
CC kernel/stop_machine.o
CC [M] drivers/gpu/drm/xe/xe_guc_log.o
CC drivers/gpu/drm/drm_syncobj.o
AR drivers/net/ethernet/packetengines/built-in.a
CC drivers/hid/hid-ezkey.o
CC lib/group_cpus.o
CC drivers/acpi/nhlt.o
CC drivers/acpi/acpica/utxferror.o
CC kernel/audit.o
CC fs/fsopen.o
CC [M] drivers/gpu/drm/xe/xe_guc_pc.o
CC [M] drivers/gpu/drm/xe/xe_guc_submit.o
CC drivers/gpu/drm/drm_sysfs.o
AR fs/nfs/built-in.a
CC lib/fw_table.o
CC drivers/acpi/acpi_memhotplug.o
CC drivers/gpu/drm/i915/gt/intel_gt_mcr.o
CC kernel/auditfilter.o
CC fs/init.o
CC net/ipv4/tcp_cubic.o
CC drivers/hid/hid-gyration.o
AR drivers/net/ethernet/qlogic/built-in.a
CC drivers/acpi/acpica/utxfmutex.o
CC net/ipv4/tcp_sigpool.o
AR arch/x86/kernel/built-in.a
AR net/ipv6/built-in.a
CC [M] drivers/gpu/drm/xe/xe_heci_gsc.o
CC net/ipv4/cipso_ipv4.o
CC fs/kernel_read_file.o
AR arch/x86/built-in.a
CC [M] drivers/gpu/drm/xe/xe_huc.o
CC drivers/acpi/ioapic.o
CC drivers/gpu/drm/drm_trace_points.o
CC drivers/acpi/battery.o
CC kernel/auditsc.o
CC drivers/hid/hid-ite.o
CC [M] drivers/gpu/drm/xe/xe_hw_engine.o
CC drivers/acpi/bgrt.o
CC fs/mnt_idmapping.o
CC net/ipv4/xfrm4_policy.o
CC kernel/audit_watch.o
CC drivers/gpu/drm/drm_vblank.o
AR drivers/acpi/acpica/built-in.a
AR drivers/net/ethernet/qualcomm/emac/built-in.a
CC net/ipv4/xfrm4_state.o
AR drivers/net/ethernet/qualcomm/built-in.a
CC drivers/net/ethernet/realtek/8139too.o
CC drivers/gpu/drm/drm_vblank_work.o
CC [M] drivers/gpu/drm/xe/xe_hw_engine_class_sysfs.o
AR drivers/net/ethernet/renesas/built-in.a
CC [M] drivers/gpu/drm/xe/xe_hw_engine_group.o
AR drivers/net/ethernet/rdc/built-in.a
CC net/ipv4/xfrm4_input.o
CC drivers/gpu/drm/i915/gt/intel_gt_pm.o
AR lib/lib.a
CC drivers/gpu/drm/drm_vma_manager.o
CC kernel/audit_fsnotify.o
GEN lib/crc32table.h
CC lib/oid_registry.o
CC drivers/hid/hid-kensington.o
CC drivers/net/ethernet/realtek/r8169_main.o
CC drivers/acpi/spcr.o
AR drivers/net/ethernet/rocker/built-in.a
CC [M] drivers/gpu/drm/xe/xe_hw_fence.o
CC drivers/hid/hid-microsoft.o
CC drivers/gpu/drm/drm_writeback.o
CC drivers/gpu/drm/i915/gt/intel_gt_pm_debugfs.o
CC fs/remap_range.o
CC drivers/gpu/drm/drm_panel.o
CC net/ipv4/xfrm4_output.o
CC drivers/gpu/drm/i915/gt/intel_gt_pm_irq.o
AR drivers/net/ethernet/samsung/built-in.a
CC kernel/audit_tree.o
CC [M] drivers/gpu/drm/xe/xe_irq.o
CC drivers/net/ethernet/realtek/r8169_firmware.o
CC drivers/hid/hid-monterey.o
CC fs/pidfs.o
CC lib/crc32.o
CC net/ipv4/xfrm4_protocol.o
AR drivers/net/ethernet/seeq/built-in.a
CC drivers/net/ethernet/realtek/r8169_phy_config.o
CC drivers/hid/hid-ntrig.o
CC [M] drivers/gpu/drm/xe/xe_lrc.o
CC drivers/gpu/drm/i915/gt/intel_gt_requests.o
CC fs/buffer.o
CC kernel/kprobes.o
CC drivers/hid/hid-pl.o
AR drivers/net/ethernet/silan/built-in.a
CC drivers/gpu/drm/i915/gt/intel_gt_sysfs.o
AR drivers/acpi/built-in.a
CC kernel/seccomp.o
CC fs/mpage.o
CC [M] drivers/gpu/drm/xe/xe_migrate.o
CC drivers/gpu/drm/drm_pci.o
CC kernel/relay.o
AR drivers/net/ethernet/sis/built-in.a
CC drivers/gpu/drm/i915/gt/intel_gt_sysfs_pm.o
CC [M] drivers/gpu/drm/xe/xe_mmio.o
AR lib/built-in.a
CC [M] drivers/gpu/drm/xe/xe_mocs.o
CC [M] drivers/gpu/drm/xe/xe_module.o
CC drivers/gpu/drm/i915/gt/intel_gtt.o
AR drivers/net/ethernet/sfc/built-in.a
CC [M] drivers/gpu/drm/xe/xe_oa.o
CC kernel/utsname_sysctl.o
CC drivers/hid/hid-petalynx.o
CC fs/proc_namespace.o
CC kernel/delayacct.o
AR drivers/net/ethernet/smsc/built-in.a
CC drivers/gpu/drm/i915/gt/intel_llc.o
CC [M] drivers/gpu/drm/xe/xe_observation.o
CC drivers/gpu/drm/drm_debugfs.o
CC drivers/gpu/drm/i915/gt/intel_lrc.o
CC kernel/taskstats.o
AR drivers/net/ethernet/socionext/built-in.a
CC fs/direct-io.o
CC drivers/gpu/drm/drm_debugfs_crc.o
CC [M] drivers/gpu/drm/xe/xe_pat.o
CC drivers/gpu/drm/i915/gt/intel_migrate.o
CC [M] drivers/gpu/drm/xe/xe_pci.o
CC fs/eventpoll.o
CC kernel/tsacct.o
CC drivers/hid/hid-redragon.o
CC drivers/gpu/drm/drm_panel_orientation_quirks.o
AR drivers/net/ethernet/stmicro/built-in.a
CC fs/anon_inodes.o
AR drivers/net/ethernet/sun/built-in.a
CC drivers/gpu/drm/drm_buddy.o
CC kernel/tracepoint.o
CC fs/signalfd.o
CC fs/timerfd.o
CC drivers/gpu/drm/i915/gt/intel_mocs.o
CC [M] drivers/gpu/drm/xe/xe_pcode.o
CC fs/eventfd.o
CC drivers/gpu/drm/drm_gem_shmem_helper.o
CC kernel/irq_work.o
AR drivers/net/ethernet/tehuti/built-in.a
CC drivers/hid/hid-samsung.o
CC kernel/static_call.o
CC drivers/gpu/drm/drm_atomic_helper.o
CC drivers/gpu/drm/i915/gt/intel_ppgtt.o
CC fs/aio.o
AR net/ipv4/built-in.a
AR drivers/net/ethernet/intel/e1000e/built-in.a
AR drivers/net/ethernet/ti/built-in.a
AR drivers/net/ethernet/intel/built-in.a
CC [M] drivers/gpu/drm/xe/xe_pm.o
AR drivers/net/ethernet/vertexcom/built-in.a
CC kernel/padata.o
CC drivers/gpu/drm/drm_atomic_state_helper.o
CC kernel/jump_label.o
CC drivers/gpu/drm/drm_bridge_helper.o
CC drivers/hid/hid-sony.o
CC [M] drivers/gpu/drm/xe/xe_preempt_fence.o
AR drivers/net/ethernet/nvidia/built-in.a
CC kernel/context_tracking.o
CC drivers/gpu/drm/i915/gt/intel_rc6.o
CC fs/locks.o
CC [M] drivers/gpu/drm/xe/xe_pt.o
CC drivers/gpu/drm/drm_crtc_helper.o
CC drivers/hid/hid-sunplus.o
CC drivers/hid/hid-topseed.o
CC kernel/iomem.o
AR drivers/net/ethernet/via/built-in.a
CC fs/binfmt_misc.o
CC drivers/gpu/drm/i915/gt/intel_region_lmem.o
CC kernel/rseq.o
CC drivers/gpu/drm/i915/gt/intel_renderstate.o
CC drivers/gpu/drm/drm_damage_helper.o
CC drivers/gpu/drm/i915/gt/intel_reset.o
CC [M] drivers/gpu/drm/xe/xe_pt_walk.o
AR drivers/net/ethernet/wangxun/built-in.a
CC fs/binfmt_script.o
CC drivers/gpu/drm/i915/gt/intel_ring.o
CC fs/binfmt_elf.o
CC [M] drivers/gpu/drm/xe/xe_pxp.o
CC [M] drivers/gpu/drm/xe/xe_pxp_debugfs.o
AR drivers/net/ethernet/wiznet/built-in.a
CC drivers/gpu/drm/i915/gt/intel_ring_submission.o
CC drivers/gpu/drm/drm_flip_work.o
CC drivers/gpu/drm/i915/gt/intel_rps.o
CC fs/mbcache.o
CC drivers/gpu/drm/drm_format_helper.o
CC [M] drivers/gpu/drm/xe/xe_pxp_submit.o
AR drivers/net/ethernet/xilinx/built-in.a
AR drivers/net/ethernet/xircom/built-in.a
CC fs/posix_acl.o
AR drivers/net/ethernet/synopsys/built-in.a
CC drivers/gpu/drm/i915/gt/intel_sa_media.o
CC [M] drivers/gpu/drm/xe/xe_query.o
CC drivers/gpu/drm/drm_gem_atomic_helper.o
CC fs/coredump.o
CC drivers/gpu/drm/i915/gt/intel_sseu.o
CC [M] drivers/gpu/drm/xe/xe_range_fence.o
CC drivers/gpu/drm/drm_gem_framebuffer_helper.o
AR drivers/net/ethernet/pensando/built-in.a
CC [M] drivers/gpu/drm/xe/xe_reg_sr.o
CC drivers/gpu/drm/drm_kms_helper_common.o
CC fs/drop_caches.o
CC drivers/gpu/drm/i915/gt/intel_sseu_debugfs.o
CC [M] drivers/gpu/drm/xe/xe_reg_whitelist.o
CC drivers/gpu/drm/drm_modeset_helper.o
CC [M] drivers/gpu/drm/xe/xe_ring_ops.o
CC drivers/gpu/drm/drm_plane_helper.o
CC [M] drivers/gpu/drm/xe/xe_rtp.o
CC drivers/gpu/drm/i915/gt/intel_timeline.o
CC [M] drivers/gpu/drm/xe/xe_sa.o
CC drivers/gpu/drm/drm_probe_helper.o
CC drivers/gpu/drm/drm_self_refresh_helper.o
AR net/mac80211/built-in.a
AR net/built-in.a
CC drivers/gpu/drm/drm_simple_kms_helper.o
CC [M] drivers/gpu/drm/xe/xe_sched_job.o
CC drivers/gpu/drm/i915/gt/intel_tlb.o
CC drivers/gpu/drm/bridge/panel.o
AR drivers/hid/built-in.a
CC [M] drivers/gpu/drm/xe/xe_shrinker.o
CC fs/sysctls.o
CC drivers/gpu/drm/drm_mipi_dsi.o
CC [M] drivers/gpu/drm/drm_exec.o
AR kernel/built-in.a
CC [M] drivers/gpu/drm/drm_gpuvm.o
CC drivers/gpu/drm/i915/gt/intel_wopcm.o
CC [M] drivers/gpu/drm/xe/xe_step.o
CC fs/fhandle.o
CC [M] drivers/gpu/drm/xe/xe_survivability_mode.o
CC drivers/gpu/drm/i915/gt/intel_workarounds.o
AR drivers/net/ethernet/realtek/built-in.a
AR drivers/net/ethernet/built-in.a
CC [M] drivers/gpu/drm/drm_suballoc.o
CC [M] drivers/gpu/drm/xe/xe_sync.o
CC [M] drivers/gpu/drm/drm_gem_ttm_helper.o
AR drivers/net/built-in.a
CC [M] drivers/gpu/drm/xe/xe_tile.o
CC [M] drivers/gpu/drm/xe/xe_tile_sysfs.o
CC drivers/gpu/drm/i915/gt/shmem_utils.o
CC [M] drivers/gpu/drm/xe/xe_trace.o
CC [M] drivers/gpu/drm/xe/xe_trace_bo.o
CC drivers/gpu/drm/i915/gt/sysfs_engines.o
CC drivers/gpu/drm/i915/gt/intel_ggtt_gmch.o
CC drivers/gpu/drm/i915/gt/gen6_renderstate.o
CC drivers/gpu/drm/i915/gt/gen7_renderstate.o
CC [M] drivers/gpu/drm/xe/xe_trace_guc.o
CC [M] drivers/gpu/drm/xe/xe_trace_lrc.o
CC [M] drivers/gpu/drm/xe/xe_ttm_stolen_mgr.o
CC [M] drivers/gpu/drm/xe/xe_ttm_sys_mgr.o
CC [M] drivers/gpu/drm/xe/xe_ttm_vram_mgr.o
CC drivers/gpu/drm/i915/gt/gen8_renderstate.o
CC drivers/gpu/drm/i915/gt/gen9_renderstate.o
CC [M] drivers/gpu/drm/xe/xe_tuning.o
CC [M] drivers/gpu/drm/xe/xe_uc.o
CC drivers/gpu/drm/i915/gem/i915_gem_busy.o
CC [M] drivers/gpu/drm/xe/xe_uc_fw.o
CC [M] drivers/gpu/drm/xe/xe_vm.o
CC drivers/gpu/drm/i915/gem/i915_gem_clflush.o
CC drivers/gpu/drm/i915/gem/i915_gem_context.o
CC [M] drivers/gpu/drm/xe/xe_vram.o
CC drivers/gpu/drm/i915/gem/i915_gem_create.o
CC drivers/gpu/drm/i915/gem/i915_gem_dmabuf.o
CC [M] drivers/gpu/drm/xe/xe_vram_freq.o
CC drivers/gpu/drm/i915/gem/i915_gem_domain.o
LD [M] drivers/gpu/drm/drm_suballoc_helper.o
CC [M] drivers/gpu/drm/xe/xe_vsec.o
CC drivers/gpu/drm/i915/gem/i915_gem_execbuffer.o
CC drivers/gpu/drm/i915/gem/i915_gem_internal.o
CC [M] drivers/gpu/drm/xe/xe_wa.o
CC [M] drivers/gpu/drm/xe/xe_wait_user_fence.o
CC drivers/gpu/drm/i915/gem/i915_gem_lmem.o
CC drivers/gpu/drm/i915/gem/i915_gem_mman.o
CC drivers/gpu/drm/i915/gem/i915_gem_object.o
CC [M] drivers/gpu/drm/xe/xe_wopcm.o
CC drivers/gpu/drm/i915/gem/i915_gem_pages.o
CC [M] drivers/gpu/drm/xe/xe_hmm.o
CC [M] drivers/gpu/drm/xe/xe_hwmon.o
LD [M] drivers/gpu/drm/drm_ttm_helper.o
CC drivers/gpu/drm/i915/gem/i915_gem_phys.o
CC drivers/gpu/drm/i915/gem/i915_gem_pm.o
CC [M] drivers/gpu/drm/xe/xe_pmu.o
CC drivers/gpu/drm/i915/gem/i915_gem_region.o
CC drivers/gpu/drm/i915/gem/i915_gem_shmem.o
CC [M] drivers/gpu/drm/xe/xe_gt_sriov_vf.o
CC drivers/gpu/drm/i915/gem/i915_gem_shrinker.o
CC [M] drivers/gpu/drm/xe/xe_guc_relay.o
AR fs/built-in.a
CC drivers/gpu/drm/i915/gem/i915_gem_stolen.o
CC [M] drivers/gpu/drm/xe/xe_memirq.o
CC [M] drivers/gpu/drm/xe/xe_sriov.o
CC drivers/gpu/drm/i915/gem/i915_gem_throttle.o
CC drivers/gpu/drm/i915/gem/i915_gem_tiling.o
CC drivers/gpu/drm/i915/gem/i915_gem_ttm.o
CC [M] drivers/gpu/drm/xe/xe_sriov_vf.o
CC drivers/gpu/drm/i915/gem/i915_gem_ttm_move.o
CC drivers/gpu/drm/i915/gem/i915_gem_ttm_pm.o
CC [M] drivers/gpu/drm/xe/display/ext/i915_irq.o
CC [M] drivers/gpu/drm/xe/display/ext/i915_utils.o
CC drivers/gpu/drm/i915/gem/i915_gem_userptr.o
CC drivers/gpu/drm/i915/gem/i915_gem_wait.o
CC drivers/gpu/drm/i915/gem/i915_gemfs.o
CC [M] drivers/gpu/drm/xe/display/intel_bo.o
CC [M] drivers/gpu/drm/xe/display/intel_fb_bo.o
CC [M] drivers/gpu/drm/xe/display/intel_fbdev_fb.o
CC [M] drivers/gpu/drm/xe/display/xe_display.o
CC [M] drivers/gpu/drm/xe/display/xe_display_misc.o
CC drivers/gpu/drm/i915/i915_active.o
CC [M] drivers/gpu/drm/xe/display/xe_display_rpm.o
CC drivers/gpu/drm/i915/i915_cmd_parser.o
CC [M] drivers/gpu/drm/xe/display/xe_display_wa.o
CC [M] drivers/gpu/drm/xe/display/xe_dsb_buffer.o
CC drivers/gpu/drm/i915/i915_deps.o
CC [M] drivers/gpu/drm/xe/display/xe_fb_pin.o
CC drivers/gpu/drm/i915/i915_gem.o
CC [M] drivers/gpu/drm/xe/display/xe_hdcp_gsc.o
CC drivers/gpu/drm/i915/i915_gem_evict.o
CC drivers/gpu/drm/i915/i915_gem_gtt.o
CC drivers/gpu/drm/i915/i915_gem_ww.o
CC [M] drivers/gpu/drm/xe/display/xe_plane_initial.o
CC [M] drivers/gpu/drm/xe/display/xe_tdf.o
CC [M] drivers/gpu/drm/xe/i915-soc/intel_dram.o
CC drivers/gpu/drm/i915/i915_query.o
CC drivers/gpu/drm/i915/i915_request.o
CC drivers/gpu/drm/i915/i915_scheduler.o
CC [M] drivers/gpu/drm/xe/i915-soc/intel_rom.o
CC [M] drivers/gpu/drm/xe/i915-display/icl_dsi.o
CC drivers/gpu/drm/i915/i915_trace_points.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_alpm.o
CC drivers/gpu/drm/i915/i915_ttm_buddy_manager.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_atomic.o
CC drivers/gpu/drm/i915/i915_vma.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_atomic_plane.o
CC drivers/gpu/drm/i915/i915_vma_resource.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_audio.o
CC drivers/gpu/drm/i915/gt/uc/intel_gsc_fw.o
CC drivers/gpu/drm/i915/gt/uc/intel_gsc_proxy.o
CC drivers/gpu/drm/i915/gt/uc/intel_gsc_uc.o
CC drivers/gpu/drm/i915/gt/uc/intel_gsc_uc_debugfs.o
CC drivers/gpu/drm/i915/gt/uc/intel_gsc_uc_heci_cmd_submit.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_backlight.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_bios.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_ads.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_bw.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_cdclk.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_capture.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_cmtg.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_ct.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_color.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_combo_phy.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_debugfs.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_connector.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_crtc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_crtc_state_dump.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_cursor.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_fw.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_cx0_phy.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_hwconfig.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_ddi.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_log.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_ddi_buf_trans.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_log_debugfs.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_conversion.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_device.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_rc.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_slpc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_driver.o
CC drivers/gpu/drm/i915/gt/uc/intel_guc_submission.o
CC drivers/gpu/drm/i915/gt/uc/intel_huc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_irq.o
CC drivers/gpu/drm/i915/gt/uc/intel_huc_debugfs.o
CC drivers/gpu/drm/i915/gt/uc/intel_huc_fw.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_params.o
CC drivers/gpu/drm/i915/gt/uc/intel_uc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_power.o
CC drivers/gpu/drm/i915/gt/uc/intel_uc_debugfs.o
CC drivers/gpu/drm/i915/gt/uc/intel_uc_fw.o
CC drivers/gpu/drm/i915/gt/intel_gsc.o
CC drivers/gpu/drm/i915/i915_hwmon.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_power_map.o
CC drivers/gpu/drm/i915/display/hsw_ips.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_power_well.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_trace.o
CC drivers/gpu/drm/i915/display/i9xx_plane.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_wa.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dkl_phy.o
CC drivers/gpu/drm/i915/display/i9xx_display_sr.o
CC drivers/gpu/drm/i915/display/i9xx_wm.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dmc.o
CC drivers/gpu/drm/i915/display/intel_alpm.o
CC drivers/gpu/drm/i915/display/intel_atomic.o
CC drivers/gpu/drm/i915/display/intel_atomic_plane.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dmc_wl.o
CC drivers/gpu/drm/i915/display/intel_audio.o
CC drivers/gpu/drm/i915/display/intel_bios.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dp.o
CC drivers/gpu/drm/i915/display/intel_bo.o
CC drivers/gpu/drm/i915/display/intel_bw.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dp_aux.o
CC drivers/gpu/drm/i915/display/intel_cdclk.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dp_aux_backlight.o
CC drivers/gpu/drm/i915/display/intel_cmtg.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dp_hdcp.o
CC drivers/gpu/drm/i915/display/intel_color.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dp_link_training.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dp_mst.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dp_test.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dpll.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dpll_mgr.o
CC drivers/gpu/drm/i915/display/intel_combo_phy.o
CC drivers/gpu/drm/i915/display/intel_connector.o
CC drivers/gpu/drm/i915/display/intel_crtc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dpt_common.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_drrs.o
CC drivers/gpu/drm/i915/display/intel_crtc_state_dump.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dsb.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dsi.o
CC drivers/gpu/drm/i915/display/intel_cursor.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dsi_dcs_backlight.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_dsi_vbt.o
CC drivers/gpu/drm/i915/display/intel_display.o
CC drivers/gpu/drm/i915/display/intel_display_conversion.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_encoder.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_fb.o
CC drivers/gpu/drm/i915/display/intel_display_driver.o
CC drivers/gpu/drm/i915/display/intel_display_irq.o
CC drivers/gpu/drm/i915/display/intel_display_params.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_fbc.o
CC drivers/gpu/drm/i915/display/intel_display_power.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_fdi.o
CC drivers/gpu/drm/i915/display/intel_display_power_map.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_fifo_underrun.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_frontbuffer.o
CC drivers/gpu/drm/i915/display/intel_display_power_well.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_global_state.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_gmbus.o
CC drivers/gpu/drm/i915/display/intel_display_reset.o
CC drivers/gpu/drm/i915/display/intel_display_rpm.o
CC drivers/gpu/drm/i915/display/intel_display_rps.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_hdcp.o
CC drivers/gpu/drm/i915/display/intel_display_snapshot.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_hdcp_gsc_message.o
CC drivers/gpu/drm/i915/display/intel_display_wa.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_hdmi.o
CC drivers/gpu/drm/i915/display/intel_dmc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_hotplug.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_hotplug_irq.o
CC drivers/gpu/drm/i915/display/intel_dmc_wl.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_hti.o
CC drivers/gpu/drm/i915/display/intel_dpio_phy.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_link_bw.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_lspcon.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_modeset_lock.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_modeset_setup.o
CC drivers/gpu/drm/i915/display/intel_dpll.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_modeset_verify.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_panel.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_pfit.o
CC drivers/gpu/drm/i915/display/intel_dpll_mgr.o
CC drivers/gpu/drm/i915/display/intel_dpt.o
CC drivers/gpu/drm/i915/display/intel_dpt_common.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_pmdemand.o
CC drivers/gpu/drm/i915/display/intel_drrs.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_pch.o
CC drivers/gpu/drm/i915/display/intel_dsb.o
CC drivers/gpu/drm/i915/display/intel_dsb_buffer.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_pps.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_psr.o
CC drivers/gpu/drm/i915/display/intel_fb.o
CC drivers/gpu/drm/i915/display/intel_fb_bo.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_qp_tables.o
CC drivers/gpu/drm/i915/display/intel_fb_pin.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_quirks.o
CC drivers/gpu/drm/i915/display/intel_fbc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_snps_hdmi_pll.o
CC drivers/gpu/drm/i915/display/intel_fdi.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_snps_phy.o
CC drivers/gpu/drm/i915/display/intel_fifo_underrun.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_tc.o
CC drivers/gpu/drm/i915/display/intel_frontbuffer.o
CC drivers/gpu/drm/i915/display/intel_global_state.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_vblank.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_vdsc.o
CC drivers/gpu/drm/i915/display/intel_hdcp.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_vga.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_vrr.o
CC drivers/gpu/drm/i915/display/intel_hdcp_gsc.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_wm.o
CC drivers/gpu/drm/i915/display/intel_hdcp_gsc_message.o
CC [M] drivers/gpu/drm/xe/i915-display/skl_scaler.o
CC [M] drivers/gpu/drm/xe/i915-display/skl_universal_plane.o
CC [M] drivers/gpu/drm/xe/i915-display/skl_watermark.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_acpi.o
CC drivers/gpu/drm/i915/display/intel_hotplug.o
CC drivers/gpu/drm/i915/display/intel_hotplug_irq.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_opregion.o
CC [M] drivers/gpu/drm/xe/xe_debugfs.o
CC [M] drivers/gpu/drm/xe/xe_gt_debugfs.o
CC drivers/gpu/drm/i915/display/intel_hti.o
CC [M] drivers/gpu/drm/xe/xe_gt_sriov_vf_debugfs.o
CC drivers/gpu/drm/i915/display/intel_link_bw.o
CC [M] drivers/gpu/drm/xe/xe_gt_stats.o
CC drivers/gpu/drm/i915/display/intel_load_detect.o
CC drivers/gpu/drm/i915/display/intel_lpe_audio.o
CC drivers/gpu/drm/i915/display/intel_modeset_lock.o
CC [M] drivers/gpu/drm/xe/xe_guc_debugfs.o
CC drivers/gpu/drm/i915/display/intel_modeset_setup.o
CC drivers/gpu/drm/i915/display/intel_modeset_verify.o
CC [M] drivers/gpu/drm/xe/xe_huc_debugfs.o
CC [M] drivers/gpu/drm/xe/xe_uc_debugfs.o
CC drivers/gpu/drm/i915/display/intel_overlay.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_debugfs.o
CC drivers/gpu/drm/i915/display/intel_pch.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_display_debugfs_params.o
CC drivers/gpu/drm/i915/display/intel_pch_display.o
CC [M] drivers/gpu/drm/xe/i915-display/intel_pipe_crc.o
CC drivers/gpu/drm/i915/display/intel_pch_refclk.o
CC drivers/gpu/drm/i915/display/intel_plane_initial.o
CC drivers/gpu/drm/i915/display/intel_pmdemand.o
CC drivers/gpu/drm/i915/display/intel_psr.o
CC drivers/gpu/drm/i915/display/intel_quirks.o
CC drivers/gpu/drm/i915/display/intel_sprite.o
CC drivers/gpu/drm/i915/display/intel_sprite_uapi.o
CC drivers/gpu/drm/i915/display/intel_tc.o
CC drivers/gpu/drm/i915/display/intel_vblank.o
CC drivers/gpu/drm/i915/display/intel_vga.o
CC drivers/gpu/drm/i915/display/intel_wm.o
CC drivers/gpu/drm/i915/display/skl_scaler.o
CC drivers/gpu/drm/i915/display/skl_universal_plane.o
CC drivers/gpu/drm/i915/display/skl_watermark.o
CC drivers/gpu/drm/i915/display/vlv_sideband.o
CC drivers/gpu/drm/i915/display/intel_acpi.o
CC drivers/gpu/drm/i915/display/intel_opregion.o
CC drivers/gpu/drm/i915/display/intel_display_debugfs.o
CC drivers/gpu/drm/i915/display/intel_display_debugfs_params.o
CC drivers/gpu/drm/i915/display/intel_pipe_crc.o
CC drivers/gpu/drm/i915/display/dvo_ch7017.o
CC drivers/gpu/drm/i915/display/dvo_ch7xxx.o
CC drivers/gpu/drm/i915/display/dvo_ivch.o
CC drivers/gpu/drm/i915/display/dvo_ns2501.o
CC drivers/gpu/drm/i915/display/dvo_sil164.o
CC drivers/gpu/drm/i915/display/dvo_tfp410.o
CC drivers/gpu/drm/i915/display/g4x_dp.o
CC drivers/gpu/drm/i915/display/g4x_hdmi.o
CC drivers/gpu/drm/i915/display/icl_dsi.o
CC drivers/gpu/drm/i915/display/intel_backlight.o
CC drivers/gpu/drm/i915/display/intel_crt.o
CC drivers/gpu/drm/i915/display/intel_cx0_phy.o
CC drivers/gpu/drm/i915/display/intel_ddi.o
CC drivers/gpu/drm/i915/display/intel_ddi_buf_trans.o
CC drivers/gpu/drm/i915/display/intel_display_device.o
CC drivers/gpu/drm/i915/display/intel_display_trace.o
CC drivers/gpu/drm/i915/display/intel_dkl_phy.o
CC drivers/gpu/drm/i915/display/intel_dp.o
CC drivers/gpu/drm/i915/display/intel_dp_aux.o
CC drivers/gpu/drm/i915/display/intel_dp_aux_backlight.o
CC drivers/gpu/drm/i915/display/intel_dp_hdcp.o
CC drivers/gpu/drm/i915/display/intel_dp_link_training.o
CC drivers/gpu/drm/i915/display/intel_dp_mst.o
CC drivers/gpu/drm/i915/display/intel_dp_test.o
CC drivers/gpu/drm/i915/display/intel_dsi.o
CC drivers/gpu/drm/i915/display/intel_dsi_dcs_backlight.o
CC drivers/gpu/drm/i915/display/intel_dsi_vbt.o
CC drivers/gpu/drm/i915/display/intel_dvo.o
CC drivers/gpu/drm/i915/display/intel_encoder.o
CC drivers/gpu/drm/i915/display/intel_gmbus.o
CC drivers/gpu/drm/i915/display/intel_hdmi.o
CC drivers/gpu/drm/i915/display/intel_lspcon.o
CC drivers/gpu/drm/i915/display/intel_lvds.o
CC drivers/gpu/drm/i915/display/intel_panel.o
CC drivers/gpu/drm/i915/display/intel_pfit.o
CC drivers/gpu/drm/i915/display/intel_pps.o
CC drivers/gpu/drm/i915/display/intel_qp_tables.o
CC drivers/gpu/drm/i915/display/intel_sdvo.o
CC drivers/gpu/drm/i915/display/intel_snps_hdmi_pll.o
CC drivers/gpu/drm/i915/display/intel_snps_phy.o
CC drivers/gpu/drm/i915/display/intel_tv.o
CC drivers/gpu/drm/i915/display/intel_vdsc.o
CC drivers/gpu/drm/i915/display/intel_vrr.o
CC drivers/gpu/drm/i915/display/vlv_dsi.o
CC drivers/gpu/drm/i915/display/vlv_dsi_pll.o
CC drivers/gpu/drm/i915/i915_perf.o
CC drivers/gpu/drm/i915/pxp/intel_pxp.o
CC drivers/gpu/drm/i915/pxp/intel_pxp_huc.o
CC drivers/gpu/drm/i915/pxp/intel_pxp_tee.o
CC drivers/gpu/drm/i915/i915_gpu_error.o
CC drivers/gpu/drm/i915/i915_vgpu.o
LD [M] drivers/gpu/drm/xe/xe.o
AR drivers/gpu/drm/i915/built-in.a
AR drivers/gpu/drm/built-in.a
AR drivers/gpu/built-in.a
AR drivers/built-in.a
AR built-in.a
AR vmlinux.a
LD vmlinux.o
OBJCOPY modules.builtin.modinfo
GEN modules.builtin
MODPOST Module.symvers
CC .vmlinux.export.o
CC [M] fs/efivarfs/efivarfs.mod.o
CC [M] .module-common.o
CC [M] drivers/gpu/drm/drm_exec.mod.o
CC [M] drivers/gpu/drm/drm_gpuvm.mod.o
CC [M] drivers/gpu/drm/drm_suballoc_helper.mod.o
CC [M] drivers/gpu/drm/drm_ttm_helper.mod.o
CC [M] drivers/gpu/drm/scheduler/gpu-sched.mod.o
CC [M] drivers/gpu/drm/xe/xe.mod.o
CC [M] drivers/thermal/intel/x86_pkg_temp_thermal.mod.o
CC [M] net/netfilter/nf_log_syslog.mod.o
CC [M] net/netfilter/xt_mark.mod.o
CC [M] net/netfilter/xt_nat.mod.o
CC [M] net/netfilter/xt_LOG.mod.o
CC [M] net/netfilter/xt_MASQUERADE.mod.o
CC [M] net/netfilter/xt_addrtype.mod.o
CC [M] net/ipv4/netfilter/iptable_nat.mod.o
LD [M] drivers/gpu/drm/scheduler/gpu-sched.ko
LD [M] fs/efivarfs/efivarfs.ko
LD [M] drivers/gpu/drm/xe/xe.ko
LD [M] drivers/thermal/intel/x86_pkg_temp_thermal.ko
LD [M] net/netfilter/xt_MASQUERADE.ko
LD [M] drivers/gpu/drm/drm_suballoc_helper.ko
LD [M] net/netfilter/xt_mark.ko
LD [M] net/netfilter/xt_nat.ko
LD [M] net/netfilter/xt_LOG.ko
LD [M] drivers/gpu/drm/drm_ttm_helper.ko
LD [M] net/netfilter/xt_addrtype.ko
LD [M] net/ipv4/netfilter/iptable_nat.ko
LD [M] drivers/gpu/drm/drm_exec.ko
LD [M] net/netfilter/nf_log_syslog.ko
LD [M] drivers/gpu/drm/drm_gpuvm.ko
UPD include/generated/utsversion.h
CC init/version-timestamp.o
KSYMS .tmp_vmlinux0.kallsyms.S
AS .tmp_vmlinux0.kallsyms.o
LD .tmp_vmlinux1
NM .tmp_vmlinux1.syms
KSYMS .tmp_vmlinux1.kallsyms.S
AS .tmp_vmlinux1.kallsyms.o
LD .tmp_vmlinux2
NM .tmp_vmlinux2.syms
KSYMS .tmp_vmlinux2.kallsyms.S
AS .tmp_vmlinux2.kallsyms.o
LD vmlinux.unstripped
NM System.map
SORTTAB vmlinux.unstripped
RSTRIP vmlinux
CC arch/x86/boot/a20.o
AS arch/x86/boot/bioscall.o
CC arch/x86/boot/cmdline.o
AS arch/x86/boot/copy.o
HOSTCC arch/x86/boot/mkcpustr
CC arch/x86/boot/cpuflags.o
CC arch/x86/boot/cpucheck.o
CC arch/x86/boot/early_serial_console.o
CC arch/x86/boot/edd.o
CC arch/x86/boot/main.o
CC arch/x86/boot/memory.o
CC arch/x86/boot/pm.o
AS arch/x86/boot/pmjump.o
CC arch/x86/boot/printf.o
CC arch/x86/boot/regs.o
CC arch/x86/boot/string.o
CC arch/x86/boot/tty.o
CC arch/x86/boot/video.o
CC arch/x86/boot/video-mode.o
CC arch/x86/boot/version.o
CC arch/x86/boot/video-vga.o
CC arch/x86/boot/video-vesa.o
CC arch/x86/boot/video-bios.o
LDS arch/x86/boot/compressed/vmlinux.lds
AS arch/x86/boot/compressed/kernel_info.o
AS arch/x86/boot/compressed/head_32.o
VOFFSET arch/x86/boot/compressed/../voffset.h
CC arch/x86/boot/compressed/string.o
CC arch/x86/boot/compressed/cmdline.o
CC arch/x86/boot/compressed/error.o
OBJCOPY arch/x86/boot/compressed/vmlinux.bin
RELOCS arch/x86/boot/compressed/vmlinux.relocs
HOSTCC arch/x86/boot/compressed/mkpiggy
CC arch/x86/boot/compressed/cpuflags.o
CC arch/x86/boot/compressed/early_serial_console.o
CC arch/x86/boot/compressed/kaslr.o
CC arch/x86/boot/compressed/acpi.o
CC arch/x86/boot/compressed/efi.o
CPUSTR arch/x86/boot/cpustr.h
CC arch/x86/boot/cpu.o
GZIP arch/x86/boot/compressed/vmlinux.bin.gz
CC arch/x86/boot/compressed/misc.o
MKPIGGY arch/x86/boot/compressed/piggy.S
AS arch/x86/boot/compressed/piggy.o
LD arch/x86/boot/compressed/vmlinux
ZOFFSET arch/x86/boot/zoffset.h
OBJCOPY arch/x86/boot/vmlinux.bin
AS arch/x86/boot/header.o
LD arch/x86/boot/setup.elf
OBJCOPY arch/x86/boot/setup.bin
BUILD arch/x86/boot/bzImage
Kernel: arch/x86/boot/bzImage is ready (#1)
run-parts: executing /workspace/ci/hooks/20-kernel-doc
+ SRC_DIR=/workspace/kernel
+ cd /workspace/kernel
+ find drivers/gpu/drm/xe/ -name '*.[ch]' -not -path 'drivers/gpu/drm/xe/display/*'
+ xargs ./scripts/kernel-doc -Werror -none include/uapi/drm/xe_drm.h
All hooks done
^ permalink raw reply [flat|nested] 24+ messages in thread* ✓ CI.checksparse: success for Suppress some dumps during fault injection tests
2025-05-12 16:19 [PATCH 0/2] Suppress some dumps during fault injection tests Michal Wajdeczko
` (10 preceding siblings ...)
2025-05-13 11:21 ` ✓ CI.Hooks: " Patchwork
@ 2025-05-13 11:22 ` Patchwork
2025-05-13 12:01 ` ✓ Xe.CI.BAT: " Patchwork
` (5 subsequent siblings)
17 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-05-13 11:22 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Suppress some dumps during fault injection tests
URL : https://patchwork.freedesktop.org/series/148900/
State : success
== Summary ==
+ trap cleanup EXIT
+ KERNEL=/kernel
+ MT=/root/linux/maintainer-tools
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools /root/linux/maintainer-tools
Cloning into '/root/linux/maintainer-tools'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ make -C /root/linux/maintainer-tools
make: Entering directory '/root/linux/maintainer-tools'
cc -O2 -g -Wextra -o remap-log remap-log.c
make: Leaving directory '/root/linux/maintainer-tools'
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ /root/linux/maintainer-tools/dim sparse --fast c9de1544553b1d6112ccc32977b6d56881cedcea
Sparse version: 0.6.4 (Ubuntu: 0.6.4-4ubuntu3)
Fast mode used, each commit won't be checked separately.
Okay!
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 24+ messages in thread* ✓ Xe.CI.BAT: success for Suppress some dumps during fault injection tests
2025-05-12 16:19 [PATCH 0/2] Suppress some dumps during fault injection tests Michal Wajdeczko
` (11 preceding siblings ...)
2025-05-13 11:22 ` ✓ CI.checksparse: " Patchwork
@ 2025-05-13 12:01 ` Patchwork
2025-05-13 13:38 ` ✓ Xe.CI.Full: " Patchwork
` (4 subsequent siblings)
17 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-05-13 12:01 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1426 bytes --]
== Series Details ==
Series: Suppress some dumps during fault injection tests
URL : https://patchwork.freedesktop.org/series/148900/
State : success
== Summary ==
CI Bug Log - changes from xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f_BAT -> xe-pw-148900v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (10 -> 9)
------------------------------
Missing (1): bat-adlp-vm
Known issues
------------
Here are the changes found in xe-pw-148900v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_intel_bb@intel-bb-blit-y:
- bat-adlp-vf: [PASS][1] -> [ABORT][2] ([Intel XE#3970])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/bat-adlp-vf/igt@xe_intel_bb@intel-bb-blit-y.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/bat-adlp-vf/igt@xe_intel_bb@intel-bb-blit-y.html
[Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970
Build changes
-------------
* Linux: xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f -> xe-pw-148900v1
IGT_8362: 8362
xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f: f28b1630b0e26e108cf5e2d9379bfed92dc4113f
xe-pw-148900v1: 148900v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/index.html
[-- Attachment #2: Type: text/html, Size: 1991 bytes --]
^ permalink raw reply [flat|nested] 24+ messages in thread* ✓ Xe.CI.Full: success for Suppress some dumps during fault injection tests
2025-05-12 16:19 [PATCH 0/2] Suppress some dumps during fault injection tests Michal Wajdeczko
` (12 preceding siblings ...)
2025-05-13 12:01 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-05-13 13:38 ` Patchwork
2025-05-26 22:04 ` ✓ CI.Patch_applied: " Patchwork
` (3 subsequent siblings)
17 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-05-13 13:38 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 95142 bytes --]
== Series Details ==
Series: Suppress some dumps during fault injection tests
URL : https://patchwork.freedesktop.org/series/148900/
State : success
== Summary ==
CI Bug Log - changes from xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f_FULL -> xe-pw-148900v1_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-148900v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@write:
- shard-dg2-set2: [PASS][1] -> [SKIP][2] ([Intel XE#2134]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@fbdev@write.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@fbdev@write.html
* igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries-display-off:
- shard-dg2-set2: [PASS][3] -> [SKIP][4] ([Intel XE#4208] / [Intel XE#4618])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries-display-off.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries-display-off.html
* igt@intel_sysfs_debugfs@xe-sysfs-read-all-entries:
- shard-adlp: [PASS][5] -> [DMESG-WARN][6] ([Intel XE#4173]) +1 other test dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-adlp-8/igt@intel_sysfs_debugfs@xe-sysfs-read-all-entries.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-adlp-8/igt@intel_sysfs_debugfs@xe-sysfs-read-all-entries.html
* igt@kms_async_flips@invalid-async-flip-atomic@pipe-c-hdmi-a-1:
- shard-adlp: [PASS][7] -> [DMESG-WARN][8] ([Intel XE#4543]) +1 other test dmesg-warn
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-adlp-4/igt@kms_async_flips@invalid-async-flip-atomic@pipe-c-hdmi-a-1.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-adlp-4/igt@kms_async_flips@invalid-async-flip-atomic@pipe-c-hdmi-a-1.html
* igt@kms_atomic@plane-invalid-params-fence:
- shard-dg2-set2: [PASS][9] -> [SKIP][10] ([Intel XE#4208] / [i915#2575]) +62 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@kms_atomic@plane-invalid-params-fence.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_atomic@plane-invalid-params-fence.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2327])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-adlp: [PASS][12] -> [DMESG-FAIL][13] ([Intel XE#4543])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2328])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-bmg: [PASS][16] -> [SKIP][17] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#367])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#367])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2887]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#455] / [Intel XE#787]) +19 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#787]) +125 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4:
- shard-dg2-set2: [PASS][24] -> [INCOMPLETE][25] ([Intel XE#2705] / [Intel XE#4212]) +1 other test incomplete
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#4416]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2252])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@vga-hpd-after-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#373])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd-after-suspend.html
* igt@kms_content_protection@atomic@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][29] ([Intel XE#1178])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-436/igt@kms_content_protection@atomic@pipe-a-dp-4.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][30] ([Intel XE#1178])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-2/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2320]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: [PASS][32] -> [SKIP][33] ([Intel XE#2291]) +5 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][34] -> [FAIL][35] ([Intel XE#4633])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_dp_aux_dev:
- shard-bmg: [PASS][36] -> [SKIP][37] ([Intel XE#3009])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-7/igt@kms_dp_aux_dev.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-4/igt@kms_dp_aux_dev.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [PASS][38] -> [SKIP][39] ([Intel XE#4294])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#4422])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [PASS][41] -> [SKIP][42] ([Intel XE#2373])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-8/igt@kms_feature_discovery@display-2x.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2316]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#2316]) +11 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-8/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@dpms-vs-vblank-race@a-hdmi-a3:
- shard-bmg: [PASS][46] -> [FAIL][47] ([Intel XE#3098]) +1 other test fail
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-6/igt@kms_flip@dpms-vs-vblank-race@a-hdmi-a3.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-5/igt@kms_flip@dpms-vs-vblank-race@a-hdmi-a3.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1:
- shard-lnl: [PASS][48] -> [FAIL][49] ([Intel XE#886]) +2 other tests fail
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@b-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp4:
- shard-dg2-set2: [PASS][50] -> [FAIL][51] ([Intel XE#301] / [Intel XE#3321]) +3 other tests fail
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
* igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6:
- shard-dg2-set2: [PASS][52] -> [FAIL][53] ([Intel XE#301]) +2 other tests fail
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling:
- shard-dg2-set2: [PASS][54] -> [SKIP][55] ([Intel XE#2351] / [Intel XE#4208]) +6 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#455]) +5 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2293] / [Intel XE#2380])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2293])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#651]) +4 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-slowdraw.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2312]) +6 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2311]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#653]) +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2313]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#1503])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-3/igt@kms_hdr@invalid-hdr.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [PASS][66] -> [SKIP][67] ([Intel XE#3012])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-7/igt@kms_joiner@basic-force-big-joiner.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-4/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#2763]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#2763] / [Intel XE#455])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#1489])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr@fbc-psr-primary-blt:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@kms_psr@fbc-psr-primary-blt.html
* igt@kms_psr@psr2-primary-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#2850] / [Intel XE#929])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_psr@psr2-primary-blt.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-bmg: [PASS][75] -> [SKIP][76] ([Intel XE#1435])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#1435])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-adlp: [PASS][78] -> [DMESG-WARN][79] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-adlp-8/igt@kms_vblank@ts-continuation-dpms-suspend.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-adlp-6/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#756])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#1280] / [Intel XE#455])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_create@create-invalid-size:
- shard-dg2-set2: [PASS][82] -> [SKIP][83] ([Intel XE#4208]) +115 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@xe_create@create-invalid-size.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@xe_create@create-invalid-size.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#4837]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug_online@interrupt-all-set-breakpoint:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#4837]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind:
- shard-dg2-set2: [PASS][86] -> [SKIP][87] ([Intel XE#1392]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-433/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html
* igt@xe_exec_basic@multigpu-once-userptr:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2322])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@xe_exec_basic@multigpu-once-userptr.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#288]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#2360])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
* igt@xe_exec_reset@cm-close-fd:
- shard-adlp: [PASS][91] -> [DMESG-WARN][92] ([Intel XE#3868])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-adlp-1/igt@xe_exec_reset@cm-close-fd.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-adlp-3/igt@xe_exec_reset@cm-close-fd.html
* igt@xe_exec_system_allocator@fault-benchmark:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#4915]) +17 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@xe_exec_system_allocator@fault-benchmark.html
* igt@xe_exec_system_allocator@many-large-mmap-free-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#4943]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@xe_exec_system_allocator@many-large-mmap-free-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset:
- shard-lnl: [PASS][95] -> [FAIL][96] ([Intel XE#4929] / [Intel XE#5018])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-lnl-3/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-new-bo-map-nomemset.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][97], [PASS][98], [PASS][99], [PASS][100], [PASS][101], [PASS][102], [PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121]) -> ([PASS][122], [PASS][123], [PASS][124], [PASS][125], [SKIP][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147]) ([Intel XE#2457])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-7/igt@xe_module_load@load.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-5/igt@xe_module_load@load.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-5/igt@xe_module_load@load.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-5/igt@xe_module_load@load.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-5/igt@xe_module_load@load.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-6/igt@xe_module_load@load.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-6/igt@xe_module_load@load.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-6/igt@xe_module_load@load.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-7/igt@xe_module_load@load.html
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-7/igt@xe_module_load@load.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-3/igt@xe_module_load@load.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-3/igt@xe_module_load@load.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-2/igt@xe_module_load@load.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-2/igt@xe_module_load@load.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-1/igt@xe_module_load@load.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-1/igt@xe_module_load@load.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-2/igt@xe_module_load@load.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-8/igt@xe_module_load@load.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-4/igt@xe_module_load@load.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-8/igt@xe_module_load@load.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-3/igt@xe_module_load@load.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-1/igt@xe_module_load@load.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-4/igt@xe_module_load@load.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-4/igt@xe_module_load@load.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-8/igt@xe_module_load@load.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-8/igt@xe_module_load@load.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-4/igt@xe_module_load@load.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-2/igt@xe_module_load@load.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-4/igt@xe_module_load@load.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@xe_module_load@load.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-5/igt@xe_module_load@load.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@xe_module_load@load.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@xe_module_load@load.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@xe_module_load@load.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-5/igt@xe_module_load@load.html
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-5/igt@xe_module_load@load.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-4/igt@xe_module_load@load.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-5/igt@xe_module_load@load.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-4/igt@xe_module_load@load.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-7/igt@xe_module_load@load.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-7/igt@xe_module_load@load.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-3/igt@xe_module_load@load.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-3/igt@xe_module_load@load.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-8/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-8/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-2/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-1/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-1/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-1/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-7/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-1/igt@xe_module_load@load.html
* igt@xe_module_load@reload-no-display:
- shard-dg2-set2: [PASS][148] -> [FAIL][149] ([Intel XE#4208])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-432/igt@xe_module_load@reload-no-display.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@xe_module_load@reload-no-display.html
* igt@xe_oa@invalid-map-oa-buffer:
- shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#2541] / [Intel XE#3573])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@xe_oa@invalid-map-oa-buffer.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2248])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_oa@syncs-userptr-wait:
- shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@xe_oa@syncs-userptr-wait.html
* igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][153] ([Intel XE#1173]) +1 other test fail
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@s3-basic-exec:
- shard-adlp: [PASS][154] -> [DMESG-WARN][155] ([Intel XE#4173] / [Intel XE#569])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-adlp-8/igt@xe_pm@s3-basic-exec.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-adlp-6/igt@xe_pm@s3-basic-exec.html
* igt@xe_pxp@display-pxp-fb:
- shard-dg2-set2: NOTRUN -> [SKIP][156] ([Intel XE#4733])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@xe_pxp@display-pxp-fb.html
* igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy:
- shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#4733])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#4351])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
#### Possible fixes ####
* igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries-display-on:
- shard-dg2-set2: [SKIP][159] ([Intel XE#4208] / [Intel XE#4618]) -> [PASS][160]
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries-display-on.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-436/igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries-display-on.html
* igt@kms_async_flips@invalid-async-flip:
- shard-adlp: [DMESG-WARN][161] ([Intel XE#4543]) -> [PASS][162] +1 other test pass
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-adlp-3/igt@kms_async_flips@invalid-async-flip.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-adlp-2/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-bmg: [SKIP][163] ([Intel XE#2291]) -> [PASS][164] +8 other tests pass
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_display_modes@extended-mode-basic:
- shard-bmg: [SKIP][165] ([Intel XE#4302]) -> [PASS][166]
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-3/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-bmg: [SKIP][167] ([Intel XE#2316]) -> [PASS][168] +3 other tests pass
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-1/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-adlp: [FAIL][169] ([Intel XE#2882]) -> [PASS][170] +1 other test pass
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-adlp-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-adlp-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: [DMESG-WARN][171] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][172] +1 other test pass
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-adlp-6/igt@kms_flip@flip-vs-suspend-interruptible.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][173] ([Intel XE#2351] / [Intel XE#4208]) -> [PASS][174] +5 other tests pass
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_hdr@static-toggle-suspend:
- shard-bmg: [SKIP][175] ([Intel XE#1503]) -> [PASS][176] +1 other test pass
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-6/igt@kms_hdr@static-toggle-suspend.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [SKIP][177] ([Intel XE#3012]) -> [PASS][178]
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [SKIP][179] ([Intel XE#4596]) -> [PASS][180]
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-4.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-8/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25:
- shard-dg2-set2: [SKIP][181] ([Intel XE#4208] / [i915#2575]) -> [PASS][182] +66 other tests pass
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-factor-0-25.html
* igt@kms_pm_dc@dc6-dpms:
- shard-adlp: [FAIL][183] ([Intel XE#718]) -> [PASS][184]
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-adlp-6/igt@kms_pm_dc@dc6-dpms.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-adlp-8/igt@kms_pm_dc@dc6-dpms.html
* igt@xe_exec_balancer@once-parallel-rebind:
- shard-dg2-set2: [SKIP][185] ([Intel XE#4208]) -> [PASS][186] +139 other tests pass
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@xe_exec_balancer@once-parallel-rebind.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@xe_exec_balancer@once-parallel-rebind.html
* igt@xe_exec_basic@multigpu-once-null-defer-mmap:
- shard-dg2-set2: [SKIP][187] ([Intel XE#1392]) -> [PASS][188]
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@xe_exec_basic@multigpu-once-null-defer-mmap.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [FAIL][189] ([Intel XE#4208]) -> [PASS][190] +1 other test pass
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@xe_module_load@reload.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@xe_module_load@reload.html
#### Warnings ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg2-set2: [SKIP][191] ([Intel XE#4208] / [i915#2575]) -> [SKIP][192] ([Intel XE#455]) +5 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-466/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][193] ([Intel XE#316]) -> [SKIP][194] ([Intel XE#4208])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-432/igt@kms_big_fb@linear-64bpp-rotate-90.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][195] ([Intel XE#4208]) -> [SKIP][196] ([Intel XE#316]) +1 other test skip
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-466/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-90:
- shard-dg2-set2: [SKIP][197] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][198] ([Intel XE#1124])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-466/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: [SKIP][199] ([Intel XE#619]) -> [SKIP][200] ([Intel XE#2351] / [Intel XE#4208])
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: [SKIP][201] ([Intel XE#4208]) -> [SKIP][202] ([Intel XE#1124]) +6 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][203] ([Intel XE#4208]) -> [SKIP][204] ([Intel XE#607])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: [SKIP][205] ([Intel XE#1124]) -> [SKIP][206] ([Intel XE#4208]) +4 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: [SKIP][207] ([Intel XE#4208] / [i915#2575]) -> [SKIP][208] ([Intel XE#2191]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: [SKIP][209] ([Intel XE#2191]) -> [SKIP][210] ([Intel XE#4208] / [i915#2575]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-dg2-set2: [SKIP][211] ([Intel XE#4208] / [i915#2575]) -> [SKIP][212] ([Intel XE#367])
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: [SKIP][213] ([Intel XE#367]) -> [SKIP][214] ([Intel XE#4208] / [i915#2575])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][215] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][216] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs:
- shard-dg2-set2: [SKIP][217] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][218] ([Intel XE#2351] / [Intel XE#4208]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs:
- shard-dg2-set2: [SKIP][219] ([Intel XE#4208]) -> [SKIP][220] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][221] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][222] ([Intel XE#4208]) +6 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][223] ([Intel XE#2907]) -> [SKIP][224] ([Intel XE#4208])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: [SKIP][225] ([Intel XE#306]) -> [SKIP][226] ([Intel XE#4208] / [i915#2575]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-432/igt@kms_chamelium_color@ctm-limited-range.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@ctm-max:
- shard-dg2-set2: [SKIP][227] ([Intel XE#4208] / [i915#2575]) -> [SKIP][228] ([Intel XE#306])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_chamelium_color@ctm-max.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-436/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
- shard-dg2-set2: [SKIP][229] ([Intel XE#373]) -> [SKIP][230] ([Intel XE#4208] / [i915#2575]) +5 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-dg2-set2: [SKIP][231] ([Intel XE#4208] / [i915#2575]) -> [SKIP][232] ([Intel XE#373]) +4 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-436/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_content_protection@atomic:
- shard-dg2-set2: [SKIP][233] ([Intel XE#4208] / [i915#2575]) -> [FAIL][234] ([Intel XE#1178])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_content_protection@atomic.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-436/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2-set2: [SKIP][235] ([Intel XE#4208] / [i915#2575]) -> [SKIP][236] ([Intel XE#307])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_content_protection@dp-mst-lic-type-1.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [SKIP][237] ([Intel XE#2341]) -> [FAIL][238] ([Intel XE#1178])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-4/igt@kms_content_protection@lic-type-0.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-2/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@srm:
- shard-bmg: [FAIL][239] ([Intel XE#1178]) -> [SKIP][240] ([Intel XE#2341])
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-3/igt@kms_content_protection@srm.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-5/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2-set2: [SKIP][241] ([Intel XE#308]) -> [SKIP][242] ([Intel XE#4208] / [i915#2575])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: [SKIP][243] ([Intel XE#4208] / [i915#2575]) -> [SKIP][244] ([Intel XE#308])
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: [SKIP][245] ([Intel XE#4208] / [i915#2575]) -> [SKIP][246] ([Intel XE#323])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2-set2: [SKIP][247] ([Intel XE#323]) -> [SKIP][248] ([Intel XE#4208] / [i915#2575])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2-set2: [SKIP][249] ([Intel XE#4208]) -> [SKIP][250] ([Intel XE#4354])
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_dp_link_training@non-uhbr-mst.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-466/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: [SKIP][251] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][252] ([Intel XE#455]) +2 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_dsc@dsc-with-bpc-formats.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: [SKIP][253] ([Intel XE#1135]) -> [SKIP][254] ([Intel XE#4208] / [i915#2575])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-432/igt@kms_feature_discovery@psr1.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [FAIL][255] ([Intel XE#3321]) -> [SKIP][256] ([Intel XE#2316])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
- shard-dg2-set2: [FAIL][257] ([Intel XE#301]) -> [SKIP][258] ([Intel XE#4208] / [i915#2575])
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-dg2-set2: [SKIP][259] ([Intel XE#455]) -> [SKIP][260] ([Intel XE#4208]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][261] ([Intel XE#4208]) -> [SKIP][262] ([Intel XE#455]) +3 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][263] ([Intel XE#651]) -> [SKIP][264] ([Intel XE#4208]) +14 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][265] ([Intel XE#2311]) -> [SKIP][266] ([Intel XE#2312]) +19 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][267] ([Intel XE#2312]) -> [SKIP][268] ([Intel XE#2311]) +20 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][269] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][270] ([Intel XE#651]) +5 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][271] ([Intel XE#4141]) -> [SKIP][272] ([Intel XE#2312]) +8 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][273] ([Intel XE#2312]) -> [SKIP][274] ([Intel XE#4141]) +7 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: [SKIP][275] ([Intel XE#651]) -> [SKIP][276] ([Intel XE#2351] / [Intel XE#4208]) +3 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][277] ([Intel XE#4208]) -> [SKIP][278] ([Intel XE#651]) +16 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][279] ([Intel XE#2313]) -> [SKIP][280] ([Intel XE#2312]) +20 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][281] ([Intel XE#2312]) -> [SKIP][282] ([Intel XE#2313]) +16 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][283] ([Intel XE#4208]) -> [SKIP][284] ([Intel XE#653]) +15 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-dg2-set2: [SKIP][285] ([Intel XE#653]) -> [SKIP][286] ([Intel XE#2351] / [Intel XE#4208]) +3 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][287] ([Intel XE#653]) -> [SKIP][288] ([Intel XE#4208]) +13 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][289] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][290] ([Intel XE#653]) +6 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [SKIP][291] ([Intel XE#455]) -> [SKIP][292] ([Intel XE#4208] / [i915#2575]) +3 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@kms_hdr@invalid-hdr.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2-set2: [SKIP][293] ([Intel XE#4208]) -> [SKIP][294] ([Intel XE#2925])
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-436/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2-set2: [SKIP][295] ([Intel XE#4359]) -> [SKIP][296] ([Intel XE#4208])
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-432/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: [SKIP][297] ([Intel XE#5020]) -> [SKIP][298] ([Intel XE#4208] / [i915#2575])
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@kms_plane_multiple@tiling-y.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-dg2-set2: [SKIP][299] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][300] ([Intel XE#4208] / [i915#2575])
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: [SKIP][301] ([Intel XE#4208] / [i915#2575]) -> [SKIP][302] ([Intel XE#2763] / [Intel XE#455])
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-dg2-set2: [SKIP][303] ([Intel XE#2938]) -> [SKIP][304] ([Intel XE#4208])
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-432/igt@kms_pm_backlight@brightness-with-dpms.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: [SKIP][305] ([Intel XE#4208]) -> [SKIP][306] ([Intel XE#870]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_pm_backlight@fade-with-suspend.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-466/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-dg2-set2: [SKIP][307] ([Intel XE#4208]) -> [SKIP][308] ([Intel XE#1489]) +5 other tests skip
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: [SKIP][309] ([Intel XE#1489]) -> [SKIP][310] ([Intel XE#4208]) +6 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2-set2: [SKIP][311] ([Intel XE#1122]) -> [SKIP][312] ([Intel XE#4208])
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-dg2-set2: [SKIP][313] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][314] ([Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_psr@fbc-pr-cursor-blt.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-466/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@fbc-pr-dpms:
- shard-dg2-set2: [SKIP][315] ([Intel XE#4208]) -> [SKIP][316] ([Intel XE#2850] / [Intel XE#929]) +6 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_psr@fbc-pr-dpms.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-436/igt@kms_psr@fbc-pr-dpms.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: [SKIP][317] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][318] ([Intel XE#2351] / [Intel XE#4208]) +2 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-432/igt@kms_psr@psr-dpms.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][319] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][320] ([Intel XE#4208]) +5 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-432/igt@kms_psr@psr2-sprite-plane-move.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_psr@psr2-sprite-plane-move.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2-set2: [SKIP][321] ([Intel XE#1127]) -> [SKIP][322] ([Intel XE#4208] / [i915#2575])
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-432/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2-set2: [SKIP][323] ([Intel XE#4208] / [i915#2575]) -> [SKIP][324] ([Intel XE#3414])
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [FAIL][325] ([Intel XE#1729]) -> [SKIP][326] ([Intel XE#4208] / [i915#2575])
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][327] ([Intel XE#2509]) -> [SKIP][328] ([Intel XE#2426])
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: [SKIP][329] ([Intel XE#2168]) -> [SKIP][330] ([Intel XE#4208] / [i915#2575])
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@kms_vrr@lobf.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@kms_vrr@lobf.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2-set2: [SKIP][331] ([Intel XE#4208] / [i915#2575]) -> [SKIP][332] ([Intel XE#756])
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@kms_writeback@writeback-check-output.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@kms_writeback@writeback-check-output.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: [SKIP][333] ([Intel XE#4208] / [i915#2575]) -> [SKIP][334] ([Intel XE#1091] / [Intel XE#2849])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-436/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute_preempt@compute-threadgroup-preempt:
- shard-dg2-set2: [SKIP][335] ([Intel XE#4208]) -> [SKIP][336] ([Intel XE#1280] / [Intel XE#455])
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@xe_compute_preempt@compute-threadgroup-preempt.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@xe_compute_preempt@compute-threadgroup-preempt.html
* igt@xe_copy_basic@mem-copy-linear-0x3fff:
- shard-dg2-set2: [SKIP][337] ([Intel XE#1123]) -> [SKIP][338] ([Intel XE#4208])
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
* igt@xe_eu_stall@invalid-sampling-rate:
- shard-dg2-set2: [SKIP][339] ([Intel XE#4497]) -> [SKIP][340] ([Intel XE#4208]) +1 other test skip
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-432/igt@xe_eu_stall@invalid-sampling-rate.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@xe_eu_stall@invalid-sampling-rate.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: [SKIP][341] ([Intel XE#4837]) -> [SKIP][342] ([Intel XE#4208]) +9 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@xe_eudebug@basic-close.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug_online@resume-dss:
- shard-dg2-set2: [SKIP][343] ([Intel XE#4208]) -> [SKIP][344] ([Intel XE#4837]) +10 other tests skip
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@xe_eudebug_online@resume-dss.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-466/igt@xe_eudebug_online@resume-dss.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap:
- shard-dg2-set2: [SKIP][345] ([Intel XE#1392]) -> [SKIP][346] ([Intel XE#4208]) +2 other tests skip
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@xe_exec_basic@multigpu-no-exec-null-defer-mmap.html
* igt@xe_exec_fault_mode@once-invalid-userptr-fault:
- shard-dg2-set2: [SKIP][347] ([Intel XE#288]) -> [SKIP][348] ([Intel XE#4208]) +15 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: [SKIP][349] ([Intel XE#4208]) -> [SKIP][350] ([Intel XE#288]) +19 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge:
- shard-bmg: [INCOMPLETE][351] ([Intel XE#2594]) -> [SKIP][352] ([Intel XE#4943])
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-bmg-5/igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-bmg-6/igt@xe_exec_system_allocator@many-execqueues-mmap-new-huge.html
* igt@xe_exec_system_allocator@threads-many-stride-new-nomemset:
- shard-dg2-set2: [SKIP][353] ([Intel XE#4208]) -> [SKIP][354] ([Intel XE#4915]) +144 other tests skip
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@xe_exec_system_allocator@threads-many-stride-new-nomemset.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@xe_exec_system_allocator@threads-many-stride-new-nomemset.html
* igt@xe_exec_system_allocator@twice-mmap-new-huge:
- shard-dg2-set2: [SKIP][355] ([Intel XE#4915]) -> [SKIP][356] ([Intel XE#4208]) +101 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@xe_exec_system_allocator@twice-mmap-new-huge.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@xe_exec_system_allocator@twice-mmap-new-huge.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: [FAIL][357] ([Intel XE#5012]) -> [SKIP][358] ([Intel XE#4208])
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_oa@non-privileged-map-oa-buffer:
- shard-dg2-set2: [SKIP][359] ([Intel XE#4208]) -> [SKIP][360] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@xe_oa@non-privileged-map-oa-buffer.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-436/igt@xe_oa@non-privileged-map-oa-buffer.html
* igt@xe_oa@syncs-syncobj-cfg:
- shard-dg2-set2: [SKIP][361] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) -> [SKIP][362] ([Intel XE#4208])
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@xe_oa@syncs-syncobj-cfg.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@xe_oa@syncs-syncobj-cfg.html
* igt@xe_oa@syncs-syncobj-wait:
- shard-dg2-set2: [SKIP][363] ([Intel XE#4208]) -> [SKIP][364] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501])
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@xe_oa@syncs-syncobj-wait.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-466/igt@xe_oa@syncs-syncobj-wait.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: [SKIP][365] ([Intel XE#2541] / [Intel XE#3573]) -> [SKIP][366] ([Intel XE#4208]) +3 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@xe_oa@whitelisted-registers-userspace-config.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pat@display-vs-wb-transient:
- shard-dg2-set2: [SKIP][367] ([Intel XE#4208]) -> [SKIP][368] ([Intel XE#1337])
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@xe_pat@display-vs-wb-transient.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pm@d3cold-basic:
- shard-dg2-set2: [SKIP][369] ([Intel XE#4208]) -> [SKIP][370] ([Intel XE#2284] / [Intel XE#366])
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@xe_pm@d3cold-basic.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-466/igt@xe_pm@d3cold-basic.html
* igt@xe_pmu@fn-engine-activity-sched-if-idle:
- shard-dg2-set2: [SKIP][371] ([Intel XE#4208]) -> [SKIP][372] ([Intel XE#4650])
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@xe_pmu@fn-engine-activity-sched-if-idle.html
* igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq:
- shard-dg2-set2: [SKIP][373] ([Intel XE#4208]) -> [SKIP][374] ([Intel XE#4733]) +2 other tests skip
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-436/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html
* igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
- shard-dg2-set2: [SKIP][375] ([Intel XE#4733]) -> [SKIP][376] ([Intel XE#4208]) +1 other test skip
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html
* igt@xe_query@multigpu-query-hwconfig:
- shard-dg2-set2: [SKIP][377] ([Intel XE#4208]) -> [SKIP][378] ([Intel XE#944])
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@xe_query@multigpu-query-hwconfig.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-436/igt@xe_query@multigpu-query-hwconfig.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: [SKIP][379] ([Intel XE#944]) -> [SKIP][380] ([Intel XE#4208]) +1 other test skip
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-466/igt@xe_query@multigpu-query-topology.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@xe_query@multigpu-query-topology.html
* igt@xe_spin_batch@spin-mem-copy:
- shard-dg2-set2: [SKIP][381] ([Intel XE#4208]) -> [SKIP][382] ([Intel XE#4821])
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-464/igt@xe_spin_batch@spin-mem-copy.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-433/igt@xe_spin_batch@spin-mem-copy.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
- shard-dg2-set2: [SKIP][383] ([Intel XE#4130]) -> [SKIP][384] ([Intel XE#4208])
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f/shard-dg2-432/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/shard-dg2-464/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[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#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[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#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[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#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[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#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[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#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
[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#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4359
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497
[Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[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#4618]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4618
[Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4821
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4929
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5012
[Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[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#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* Linux: xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f -> xe-pw-148900v1
IGT_8362: 8362
xe-3076-f28b1630b0e26e108cf5e2d9379bfed92dc4113f: f28b1630b0e26e108cf5e2d9379bfed92dc4113f
xe-pw-148900v1: 148900v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-148900v1/index.html
[-- Attachment #2: Type: text/html, Size: 118506 bytes --]
^ permalink raw reply [flat|nested] 24+ messages in thread* ✓ CI.Patch_applied: success for Suppress some dumps during fault injection tests
2025-05-12 16:19 [PATCH 0/2] Suppress some dumps during fault injection tests Michal Wajdeczko
` (13 preceding siblings ...)
2025-05-13 13:38 ` ✓ Xe.CI.Full: " Patchwork
@ 2025-05-26 22:04 ` Patchwork
2025-05-26 22:04 ` ✓ CI.checkpatch: " Patchwork
` (2 subsequent siblings)
17 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-05-26 22:04 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Suppress some dumps during fault injection tests
URL : https://patchwork.freedesktop.org/series/148900/
State : success
== Summary ==
=== Applying kernel patches on branch 'drm-tip' with base: ===
Base commit: 3e019cc3eaff drm-tip: 2025y-05m-26d-14h-49m-23s UTC integration manifest
=== git am output follows ===
Applying: drm/xe: Introduce flag to indicate possible fault injection
Applying: drm/xe/guc: Suppress Dead CTB Dump during fault injection tests
^ permalink raw reply [flat|nested] 24+ messages in thread* ✓ CI.checkpatch: success for Suppress some dumps during fault injection tests
2025-05-12 16:19 [PATCH 0/2] Suppress some dumps during fault injection tests Michal Wajdeczko
` (14 preceding siblings ...)
2025-05-26 22:04 ` ✓ CI.Patch_applied: " Patchwork
@ 2025-05-26 22:04 ` Patchwork
2025-05-26 22:05 ` ✓ CI.KUnit: " Patchwork
2025-05-26 22:15 ` ✓ CI.Build: " Patchwork
17 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-05-26 22:04 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Suppress some dumps during fault injection tests
URL : https://patchwork.freedesktop.org/series/148900/
State : success
== 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
202708c00696422fd217223bb679a353a5936e23
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 2184b2113cee9160cf0b04d9430a55df85a74c5b
Author: Michal Wajdeczko <michal.wajdeczko@intel.com>
Date: Mon May 12 18:19:47 2025 +0200
drm/xe/guc: Suppress Dead CTB Dump during fault injection tests
There is no point in generating a CTB dump due to a fault
injected by our tests, as it they will just stress our CI.
Signed-off-by: Michal Wajdeczko <michal.wajdeczko@intel.com>
Cc: Satyanarayana K V P <satyanarayana.k.v.p@intel.com>
Cc: John Harrison <john.c.harrison@intel.com>
+ /mt/dim checkpatch 3e019cc3eaffcb7022b9de66871eabdefd6e06ff drm-intel
35ea01876d1f drm/xe: Introduce flag to indicate possible fault injection
2184b2113cee drm/xe/guc: Suppress Dead CTB Dump during fault injection tests
^ permalink raw reply [flat|nested] 24+ messages in thread* ✓ CI.KUnit: success for Suppress some dumps during fault injection tests
2025-05-12 16:19 [PATCH 0/2] Suppress some dumps during fault injection tests Michal Wajdeczko
` (15 preceding siblings ...)
2025-05-26 22:04 ` ✓ CI.checkpatch: " Patchwork
@ 2025-05-26 22:05 ` Patchwork
2025-05-26 22:15 ` ✓ CI.Build: " Patchwork
17 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-05-26 22:05 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Suppress some dumps during fault injection tests
URL : https://patchwork.freedesktop.org/series/148900/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[22:04:23] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:04:27] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[22:04:54] Starting KUnit Kernel (1/1)...
[22:04:54] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:04:54] ================== guc_buf (11 subtests) ===================
[22:04:54] [PASSED] test_smallest
[22:04:54] [PASSED] test_largest
[22:04:54] [PASSED] test_granular
[22:04:54] [PASSED] test_unique
[22:04:54] [PASSED] test_overlap
[22:04:54] [PASSED] test_reusable
[22:04:54] [PASSED] test_too_big
[22:04:54] [PASSED] test_flush
[22:04:54] [PASSED] test_lookup
[22:04:54] [PASSED] test_data
[22:04:54] [PASSED] test_class
[22:04:54] ===================== [PASSED] guc_buf =====================
[22:04:54] =================== guc_dbm (7 subtests) ===================
[22:04:54] [PASSED] test_empty
[22:04:54] [PASSED] test_default
[22:04:54] ======================== test_size ========================
[22:04:54] [PASSED] 4
[22:04:54] [PASSED] 8
[22:04:54] [PASSED] 32
[22:04:54] [PASSED] 256
[22:04:54] ==================== [PASSED] test_size ====================
[22:04:54] ======================= test_reuse ========================
[22:04:54] [PASSED] 4
[22:04:54] [PASSED] 8
[22:04:54] [PASSED] 32
[22:04:54] [PASSED] 256
[22:04:54] =================== [PASSED] test_reuse ====================
[22:04:54] =================== test_range_overlap ====================
[22:04:54] [PASSED] 4
[22:04:54] [PASSED] 8
[22:04:54] [PASSED] 32
[22:04:54] [PASSED] 256
[22:04:54] =============== [PASSED] test_range_overlap ================
[22:04:54] =================== test_range_compact ====================
[22:04:54] [PASSED] 4
[22:04:54] [PASSED] 8
[22:04:54] [PASSED] 32
[22:04:54] [PASSED] 256
[22:04:54] =============== [PASSED] test_range_compact ================
[22:04:54] ==================== test_range_spare =====================
[22:04:54] [PASSED] 4
[22:04:54] [PASSED] 8
[22:04:54] [PASSED] 32
[22:04:54] [PASSED] 256
[22:04:54] ================ [PASSED] test_range_spare =================
[22:04:54] ===================== [PASSED] guc_dbm =====================
[22:04:54] =================== guc_idm (6 subtests) ===================
[22:04:54] [PASSED] bad_init
[22:04:54] [PASSED] no_init
[22:04:54] [PASSED] init_fini
[22:04:54] [PASSED] check_used
[22:04:54] [PASSED] check_quota
[22:04:54] [PASSED] check_all
[22:04:54] ===================== [PASSED] guc_idm =====================
[22:04:54] ================== no_relay (3 subtests) ===================
[22:04:54] [PASSED] xe_drops_guc2pf_if_not_ready
[22:04:54] [PASSED] xe_drops_guc2vf_if_not_ready
[22:04:54] [PASSED] xe_rejects_send_if_not_ready
[22:04:54] ==================== [PASSED] no_relay =====================
[22:04:54] ================== pf_relay (14 subtests) ==================
[22:04:54] [PASSED] pf_rejects_guc2pf_too_short
[22:04:54] [PASSED] pf_rejects_guc2pf_too_long
[22:04:54] [PASSED] pf_rejects_guc2pf_no_payload
[22:04:54] [PASSED] pf_fails_no_payload
[22:04:54] [PASSED] pf_fails_bad_origin
[22:04:54] [PASSED] pf_fails_bad_type
[22:04:54] [PASSED] pf_txn_reports_error
[22:04:54] [PASSED] pf_txn_sends_pf2guc
[22:04:54] [PASSED] pf_sends_pf2guc
[22:04:54] [SKIPPED] pf_loopback_nop
[22:04:54] [SKIPPED] pf_loopback_echo
[22:04:54] [SKIPPED] pf_loopback_fail
[22:04:54] [SKIPPED] pf_loopback_busy
[22:04:54] [SKIPPED] pf_loopback_retry
[22:04:54] ==================== [PASSED] pf_relay =====================
[22:04:54] ================== vf_relay (3 subtests) ===================
[22:04:54] [PASSED] vf_rejects_guc2vf_too_short
[22:04:54] [PASSED] vf_rejects_guc2vf_too_long
[22:04:54] [PASSED] vf_rejects_guc2vf_no_payload
[22:04:54] ==================== [PASSED] vf_relay =====================
[22:04:54] ================= pf_service (11 subtests) =================
[22:04:54] [PASSED] pf_negotiate_any
[22:04:54] [PASSED] pf_negotiate_base_match
[22:04:54] [PASSED] pf_negotiate_base_newer
[22:04:54] [PASSED] pf_negotiate_base_next
[22:04:54] [SKIPPED] pf_negotiate_base_older
[22:04:54] [PASSED] pf_negotiate_base_prev
[22:04:54] [PASSED] pf_negotiate_latest_match
[22:04:54] [PASSED] pf_negotiate_latest_newer
[22:04:54] [PASSED] pf_negotiate_latest_next
[22:04:54] [SKIPPED] pf_negotiate_latest_older
[22:04:54] [SKIPPED] pf_negotiate_latest_prev
[22:04:54] =================== [PASSED] pf_service ====================
[22:04:54] ===================== lmtt (1 subtest) =====================
[22:04:54] ======================== test_ops =========================
[22:04:54] [PASSED] 2-level
[22:04:54] [PASSED] multi-level
[22:04:54] ==================== [PASSED] test_ops =====================
[22:04:54] ====================== [PASSED] lmtt =======================
[22:04:54] =================== xe_mocs (2 subtests) ===================
[22:04:54] ================ xe_live_mocs_kernel_kunit ================
[22:04:54] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[22:04:54] ================ xe_live_mocs_reset_kunit =================
[22:04:54] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[22:04:54] ==================== [SKIPPED] xe_mocs =====================
[22:04:54] ================= xe_migrate (2 subtests) ==================
[22:04:54] ================= xe_migrate_sanity_kunit =================
[22:04:54] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[22:04:54] ================== xe_validate_ccs_kunit ==================
[22:04:54] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[22:04:54] =================== [SKIPPED] xe_migrate ===================
[22:04:54] ================== xe_dma_buf (1 subtest) ==================
[22:04:54] ==================== xe_dma_buf_kunit =====================
[22:04:54] ================ [SKIPPED] xe_dma_buf_kunit ================
[22:04:54] =================== [SKIPPED] xe_dma_buf ===================
[22:04:54] ================= xe_bo_shrink (1 subtest) =================
[22:04:54] =================== xe_bo_shrink_kunit ====================
[22:04:54] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[22:04:54] ================== [SKIPPED] xe_bo_shrink ==================
[22:04:54] ==================== xe_bo (2 subtests) ====================
[22:04:54] ================== xe_ccs_migrate_kunit ===================
[22:04:54] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[22:04:54] ==================== xe_bo_evict_kunit ====================
[22:04:54] =============== [SKIPPED] xe_bo_evict_kunit ================
[22:04:54] ===================== [SKIPPED] xe_bo ======================
[22:04:54] ==================== args (11 subtests) ====================
[22:04:54] [PASSED] count_args_test
[22:04:54] [PASSED] call_args_example
[22:04:54] [PASSED] call_args_test
[22:04:54] [PASSED] drop_first_arg_example
[22:04:54] [PASSED] drop_first_arg_test
[22:04:54] [PASSED] first_arg_example
[22:04:54] [PASSED] first_arg_test
[22:04:54] [PASSED] last_arg_example
[22:04:54] [PASSED] last_arg_test
[22:04:54] [PASSED] pick_arg_example
[22:04:54] [PASSED] sep_comma_example
[22:04:54] ====================== [PASSED] args =======================
[22:04:54] =================== xe_pci (2 subtests) ====================
[22:04:54] [PASSED] xe_gmdid_graphics_ip
[22:04:54] [PASSED] xe_gmdid_media_ip
[22:04:54] ===================== [PASSED] xe_pci ======================
[22:04:54] =================== xe_rtp (2 subtests) ====================
[22:04:54] =============== xe_rtp_process_to_sr_tests ================
[22:04:54] [PASSED] coalesce-same-reg
[22:04:54] [PASSED] no-match-no-add
[22:04:54] [PASSED] match-or
[22:04:54] [PASSED] match-or-xfail
[22:04:54] [PASSED] no-match-no-add-multiple-rules
[22:04:54] [PASSED] two-regs-two-entries
[22:04:54] [PASSED] clr-one-set-other
[22:04:54] [PASSED] set-field
[22:04:54] [PASSED] conflict-duplicate
[22:04:54] [PASSED] conflict-not-disjoint
stty: 'standard input': Inappropriate ioctl for device
[22:04:54] [PASSED] conflict-reg-type
[22:04:54] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[22:04:54] ================== xe_rtp_process_tests ===================
[22:04:54] [PASSED] active1
[22:04:54] [PASSED] active2
[22:04:54] [PASSED] active-inactive
[22:04:54] [PASSED] inactive-active
[22:04:54] [PASSED] inactive-1st_or_active-inactive
[22:04:54] [PASSED] inactive-2nd_or_active-inactive
[22:04:54] [PASSED] inactive-last_or_active-inactive
[22:04:54] [PASSED] inactive-no_or_active-inactive
[22:04:54] ============== [PASSED] xe_rtp_process_tests ===============
[22:04:54] ===================== [PASSED] xe_rtp ======================
[22:04:54] ==================== xe_wa (1 subtest) =====================
[22:04:54] ======================== xe_wa_gt =========================
[22:04:54] [PASSED] TIGERLAKE (B0)
[22:04:54] [PASSED] DG1 (A0)
[22:04:54] [PASSED] DG1 (B0)
[22:04:54] [PASSED] ALDERLAKE_S (A0)
[22:04:54] [PASSED] ALDERLAKE_S (B0)
[22:04:54] [PASSED] ALDERLAKE_S (C0)
[22:04:54] [PASSED] ALDERLAKE_S (D0)
[22:04:54] [PASSED] ALDERLAKE_P (A0)
[22:04:54] [PASSED] ALDERLAKE_P (B0)
[22:04:54] [PASSED] ALDERLAKE_P (C0)
[22:04:54] [PASSED] ALDERLAKE_S_RPLS (D0)
[22:04:54] [PASSED] ALDERLAKE_P_RPLU (E0)
[22:04:54] [PASSED] DG2_G10 (C0)
[22:04:54] [PASSED] DG2_G11 (B1)
[22:04:54] [PASSED] DG2_G12 (A1)
[22:04:54] [PASSED] METEORLAKE (g:A0, m:A0)
[22:04:54] [PASSED] METEORLAKE (g:A0, m:A0)
[22:04:54] [PASSED] METEORLAKE (g:A0, m:A0)
[22:04:54] [PASSED] LUNARLAKE (g:A0, m:A0)
[22:04:54] [PASSED] LUNARLAKE (g:B0, m:A0)
[22:04:54] [PASSED] BATTLEMAGE (g:A0, m:A1)
[22:04:54] ==================== [PASSED] xe_wa_gt =====================
[22:04:54] ====================== [PASSED] xe_wa ======================
[22:04:54] ============================================================
[22:04:54] Testing complete. Ran 133 tests: passed: 117, skipped: 16
[22:04:54] Elapsed time: 31.114s total, 4.119s configuring, 26.679s building, 0.304s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[22:04:54] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:04:56] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[22:05:18] Starting KUnit Kernel (1/1)...
[22:05:18] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:05:18] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[22:05:18] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[22:05:18] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[22:05:18] =========== drm_validate_clone_mode (2 subtests) ===========
[22:05:18] ============== drm_test_check_in_clone_mode ===============
[22:05:18] [PASSED] in_clone_mode
[22:05:18] [PASSED] not_in_clone_mode
[22:05:18] ========== [PASSED] drm_test_check_in_clone_mode ===========
[22:05:18] =============== drm_test_check_valid_clones ===============
[22:05:18] [PASSED] not_in_clone_mode
[22:05:18] [PASSED] valid_clone
[22:05:18] [PASSED] invalid_clone
[22:05:18] =========== [PASSED] drm_test_check_valid_clones ===========
[22:05:18] ============= [PASSED] drm_validate_clone_mode =============
[22:05:18] ============= drm_validate_modeset (1 subtest) =============
[22:05:18] [PASSED] drm_test_check_connector_changed_modeset
[22:05:18] ============== [PASSED] drm_validate_modeset ===============
[22:05:18] ====== drm_test_bridge_get_current_state (2 subtests) ======
[22:05:18] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[22:05:18] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[22:05:18] ======== [PASSED] drm_test_bridge_get_current_state ========
[22:05:18] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[22:05:18] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[22:05:18] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[22:05:18] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[22:05:18] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[22:05:18] ================== drm_buddy (7 subtests) ==================
[22:05:18] [PASSED] drm_test_buddy_alloc_limit
[22:05:18] [PASSED] drm_test_buddy_alloc_optimistic
[22:05:18] [PASSED] drm_test_buddy_alloc_pessimistic
[22:05:18] [PASSED] drm_test_buddy_alloc_pathological
[22:05:18] [PASSED] drm_test_buddy_alloc_contiguous
[22:05:18] [PASSED] drm_test_buddy_alloc_clear
[22:05:18] [PASSED] drm_test_buddy_alloc_range_bias
[22:05:18] ==================== [PASSED] drm_buddy ====================
[22:05:18] ============= drm_cmdline_parser (40 subtests) =============
[22:05:18] [PASSED] drm_test_cmdline_force_d_only
[22:05:18] [PASSED] drm_test_cmdline_force_D_only_dvi
[22:05:18] [PASSED] drm_test_cmdline_force_D_only_hdmi
[22:05:18] [PASSED] drm_test_cmdline_force_D_only_not_digital
[22:05:18] [PASSED] drm_test_cmdline_force_e_only
[22:05:18] [PASSED] drm_test_cmdline_res
[22:05:18] [PASSED] drm_test_cmdline_res_vesa
[22:05:18] [PASSED] drm_test_cmdline_res_vesa_rblank
[22:05:18] [PASSED] drm_test_cmdline_res_rblank
[22:05:18] [PASSED] drm_test_cmdline_res_bpp
[22:05:18] [PASSED] drm_test_cmdline_res_refresh
[22:05:18] [PASSED] drm_test_cmdline_res_bpp_refresh
[22:05:18] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[22:05:18] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[22:05:18] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[22:05:18] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[22:05:18] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[22:05:18] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[22:05:18] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[22:05:18] [PASSED] drm_test_cmdline_res_margins_force_on
[22:05:18] [PASSED] drm_test_cmdline_res_vesa_margins
[22:05:18] [PASSED] drm_test_cmdline_name
[22:05:18] [PASSED] drm_test_cmdline_name_bpp
[22:05:18] [PASSED] drm_test_cmdline_name_option
[22:05:18] [PASSED] drm_test_cmdline_name_bpp_option
[22:05:18] [PASSED] drm_test_cmdline_rotate_0
[22:05:18] [PASSED] drm_test_cmdline_rotate_90
[22:05:18] [PASSED] drm_test_cmdline_rotate_180
[22:05:18] [PASSED] drm_test_cmdline_rotate_270
[22:05:18] [PASSED] drm_test_cmdline_hmirror
[22:05:18] [PASSED] drm_test_cmdline_vmirror
[22:05:18] [PASSED] drm_test_cmdline_margin_options
[22:05:18] [PASSED] drm_test_cmdline_multiple_options
[22:05:18] [PASSED] drm_test_cmdline_bpp_extra_and_option
[22:05:18] [PASSED] drm_test_cmdline_extra_and_option
[22:05:18] [PASSED] drm_test_cmdline_freestanding_options
[22:05:18] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[22:05:18] [PASSED] drm_test_cmdline_panel_orientation
[22:05:18] ================ drm_test_cmdline_invalid =================
[22:05:18] [PASSED] margin_only
[22:05:18] [PASSED] interlace_only
[22:05:18] [PASSED] res_missing_x
[22:05:18] [PASSED] res_missing_y
[22:05:18] [PASSED] res_bad_y
[22:05:18] [PASSED] res_missing_y_bpp
[22:05:18] [PASSED] res_bad_bpp
[22:05:18] [PASSED] res_bad_refresh
[22:05:18] [PASSED] res_bpp_refresh_force_on_off
[22:05:18] [PASSED] res_invalid_mode
[22:05:18] [PASSED] res_bpp_wrong_place_mode
[22:05:18] [PASSED] name_bpp_refresh
[22:05:18] [PASSED] name_refresh
[22:05:18] [PASSED] name_refresh_wrong_mode
[22:05:18] [PASSED] name_refresh_invalid_mode
[22:05:18] [PASSED] rotate_multiple
[22:05:18] [PASSED] rotate_invalid_val
[22:05:18] [PASSED] rotate_truncated
[22:05:18] [PASSED] invalid_option
[22:05:18] [PASSED] invalid_tv_option
[22:05:18] [PASSED] truncated_tv_option
[22:05:18] ============ [PASSED] drm_test_cmdline_invalid =============
[22:05:18] =============== drm_test_cmdline_tv_options ===============
[22:05:18] [PASSED] NTSC
[22:05:18] [PASSED] NTSC_443
[22:05:18] [PASSED] NTSC_J
[22:05:18] [PASSED] PAL
[22:05:18] [PASSED] PAL_M
[22:05:18] [PASSED] PAL_N
[22:05:18] [PASSED] SECAM
[22:05:18] [PASSED] MONO_525
[22:05:18] [PASSED] MONO_625
[22:05:18] =========== [PASSED] drm_test_cmdline_tv_options ===========
[22:05:18] =============== [PASSED] drm_cmdline_parser ================
[22:05:18] ========== drmm_connector_hdmi_init (20 subtests) ==========
[22:05:18] [PASSED] drm_test_connector_hdmi_init_valid
[22:05:18] [PASSED] drm_test_connector_hdmi_init_bpc_8
[22:05:18] [PASSED] drm_test_connector_hdmi_init_bpc_10
[22:05:18] [PASSED] drm_test_connector_hdmi_init_bpc_12
[22:05:18] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[22:05:18] [PASSED] drm_test_connector_hdmi_init_bpc_null
[22:05:18] [PASSED] drm_test_connector_hdmi_init_formats_empty
[22:05:18] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[22:05:18] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[22:05:18] [PASSED] supported_formats=0x9 yuv420_allowed=1
[22:05:18] [PASSED] supported_formats=0x9 yuv420_allowed=0
[22:05:18] [PASSED] supported_formats=0x3 yuv420_allowed=1
[22:05:18] [PASSED] supported_formats=0x3 yuv420_allowed=0
[22:05:18] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[22:05:18] [PASSED] drm_test_connector_hdmi_init_null_ddc
[22:05:18] [PASSED] drm_test_connector_hdmi_init_null_product
[22:05:18] [PASSED] drm_test_connector_hdmi_init_null_vendor
[22:05:18] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[22:05:18] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[22:05:18] [PASSED] drm_test_connector_hdmi_init_product_valid
[22:05:18] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[22:05:18] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[22:05:18] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[22:05:18] ========= drm_test_connector_hdmi_init_type_valid =========
[22:05:18] [PASSED] HDMI-A
[22:05:18] [PASSED] HDMI-B
[22:05:18] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[22:05:18] ======== drm_test_connector_hdmi_init_type_invalid ========
[22:05:18] [PASSED] Unknown
[22:05:18] [PASSED] VGA
[22:05:18] [PASSED] DVI-I
[22:05:18] [PASSED] DVI-D
[22:05:18] [PASSED] DVI-A
[22:05:18] [PASSED] Composite
[22:05:18] [PASSED] SVIDEO
[22:05:18] [PASSED] LVDS
[22:05:18] [PASSED] Component
[22:05:18] [PASSED] DIN
[22:05:18] [PASSED] DP
[22:05:18] [PASSED] TV
[22:05:18] [PASSED] eDP
[22:05:18] [PASSED] Virtual
[22:05:18] [PASSED] DSI
[22:05:18] [PASSED] DPI
[22:05:18] [PASSED] Writeback
[22:05:18] [PASSED] SPI
[22:05:18] [PASSED] USB
[22:05:18] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[22:05:18] ============ [PASSED] drmm_connector_hdmi_init =============
[22:05:18] ============= drmm_connector_init (3 subtests) =============
[22:05:18] [PASSED] drm_test_drmm_connector_init
[22:05:18] [PASSED] drm_test_drmm_connector_init_null_ddc
[22:05:18] ========= drm_test_drmm_connector_init_type_valid =========
[22:05:18] [PASSED] Unknown
[22:05:18] [PASSED] VGA
[22:05:18] [PASSED] DVI-I
[22:05:18] [PASSED] DVI-D
[22:05:18] [PASSED] DVI-A
[22:05:18] [PASSED] Composite
[22:05:18] [PASSED] SVIDEO
[22:05:18] [PASSED] LVDS
[22:05:18] [PASSED] Component
[22:05:18] [PASSED] DIN
[22:05:18] [PASSED] DP
[22:05:18] [PASSED] HDMI-A
[22:05:18] [PASSED] HDMI-B
[22:05:18] [PASSED] TV
[22:05:18] [PASSED] eDP
[22:05:18] [PASSED] Virtual
[22:05:18] [PASSED] DSI
[22:05:18] [PASSED] DPI
[22:05:18] [PASSED] Writeback
[22:05:18] [PASSED] SPI
[22:05:18] [PASSED] USB
[22:05:18] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[22:05:18] =============== [PASSED] drmm_connector_init ===============
[22:05:18] ========= drm_connector_dynamic_init (6 subtests) ==========
[22:05:18] [PASSED] drm_test_drm_connector_dynamic_init
[22:05:18] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[22:05:18] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[22:05:18] [PASSED] drm_test_drm_connector_dynamic_init_properties
[22:05:18] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[22:05:18] [PASSED] Unknown
[22:05:18] [PASSED] VGA
[22:05:18] [PASSED] DVI-I
[22:05:18] [PASSED] DVI-D
[22:05:18] [PASSED] DVI-A
[22:05:18] [PASSED] Composite
[22:05:18] [PASSED] SVIDEO
[22:05:18] [PASSED] LVDS
[22:05:18] [PASSED] Component
[22:05:18] [PASSED] DIN
[22:05:18] [PASSED] DP
[22:05:18] [PASSED] HDMI-A
[22:05:18] [PASSED] HDMI-B
[22:05:18] [PASSED] TV
[22:05:18] [PASSED] eDP
[22:05:18] [PASSED] Virtual
[22:05:18] [PASSED] DSI
[22:05:18] [PASSED] DPI
[22:05:18] [PASSED] Writeback
[22:05:18] [PASSED] SPI
[22:05:18] [PASSED] USB
[22:05:18] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[22:05:18] ======== drm_test_drm_connector_dynamic_init_name =========
[22:05:18] [PASSED] Unknown
[22:05:18] [PASSED] VGA
[22:05:18] [PASSED] DVI-I
[22:05:18] [PASSED] DVI-D
[22:05:18] [PASSED] DVI-A
[22:05:18] [PASSED] Composite
[22:05:18] [PASSED] SVIDEO
[22:05:18] [PASSED] LVDS
[22:05:18] [PASSED] Component
[22:05:18] [PASSED] DIN
[22:05:18] [PASSED] DP
[22:05:18] [PASSED] HDMI-A
[22:05:18] [PASSED] HDMI-B
[22:05:18] [PASSED] TV
[22:05:18] [PASSED] eDP
[22:05:18] [PASSED] Virtual
[22:05:18] [PASSED] DSI
[22:05:18] [PASSED] DPI
[22:05:18] [PASSED] Writeback
[22:05:18] [PASSED] SPI
[22:05:18] [PASSED] USB
[22:05:18] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[22:05:18] =========== [PASSED] drm_connector_dynamic_init ============
[22:05:18] ==== drm_connector_dynamic_register_early (4 subtests) =====
[22:05:18] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[22:05:18] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[22:05:18] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[22:05:18] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[22:05:18] ====== [PASSED] drm_connector_dynamic_register_early =======
[22:05:18] ======= drm_connector_dynamic_register (7 subtests) ========
[22:05:18] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[22:05:18] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[22:05:18] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[22:05:18] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[22:05:18] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[22:05:18] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[22:05:18] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[22:05:18] ========= [PASSED] drm_connector_dynamic_register ==========
[22:05:18] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[22:05:18] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[22:05:18] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[22:05:18] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[22:05:18] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[22:05:18] ========== drm_test_get_tv_mode_from_name_valid ===========
[22:05:18] [PASSED] NTSC
[22:05:18] [PASSED] NTSC-443
[22:05:18] [PASSED] NTSC-J
[22:05:18] [PASSED] PAL
[22:05:18] [PASSED] PAL-M
[22:05:18] [PASSED] PAL-N
[22:05:18] [PASSED] SECAM
[22:05:18] [PASSED] Mono
[22:05:18] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[22:05:18] [PASSED] drm_test_get_tv_mode_from_name_truncated
[22:05:18] ============ [PASSED] drm_get_tv_mode_from_name ============
[22:05:18] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[22:05:18] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[22:05:18] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[22:05:18] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[22:05:18] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[22:05:18] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[22:05:18] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[22:05:18] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[22:05:18] [PASSED] VIC 96
[22:05:18] [PASSED] VIC 97
[22:05:18] [PASSED] VIC 101
[22:05:18] [PASSED] VIC 102
[22:05:18] [PASSED] VIC 106
[22:05:18] [PASSED] VIC 107
[22:05:18] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[22:05:18] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[22:05:18] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[22:05:18] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[22:05:18] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[22:05:18] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[22:05:18] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[22:05:18] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[22:05:18] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[22:05:18] [PASSED] Automatic
[22:05:18] [PASSED] Full
[22:05:18] [PASSED] Limited 16:235
[22:05:18] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[22:05:18] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[22:05:18] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[22:05:18] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[22:05:18] === drm_test_drm_hdmi_connector_get_output_format_name ====
[22:05:18] [PASSED] RGB
[22:05:18] [PASSED] YUV 4:2:0
[22:05:18] [PASSED] YUV 4:2:2
[22:05:18] [PASSED] YUV 4:4:4
[22:05:18] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[22:05:18] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[22:05:18] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[22:05:18] ============= drm_damage_helper (21 subtests) ==============
[22:05:18] [PASSED] drm_test_damage_iter_no_damage
[22:05:18] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[22:05:18] [PASSED] drm_test_damage_iter_no_damage_src_moved
[22:05:18] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[22:05:18] [PASSED] drm_test_damage_iter_no_damage_not_visible
[22:05:18] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[22:05:18] [PASSED] drm_test_damage_iter_no_damage_no_fb
[22:05:18] [PASSED] drm_test_damage_iter_simple_damage
[22:05:18] [PASSED] drm_test_damage_iter_single_damage
[22:05:18] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[22:05:18] [PASSED] drm_test_damage_iter_single_damage_outside_src
[22:05:18] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[22:05:18] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[22:05:18] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[22:05:18] [PASSED] drm_test_damage_iter_single_damage_src_moved
[22:05:18] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[22:05:18] [PASSED] drm_test_damage_iter_damage
[22:05:18] [PASSED] drm_test_damage_iter_damage_one_intersect
[22:05:18] [PASSED] drm_test_damage_iter_damage_one_outside
[22:05:18] [PASSED] drm_test_damage_iter_damage_src_moved
[22:05:18] [PASSED] drm_test_damage_iter_damage_not_visible
[22:05:18] ================ [PASSED] drm_damage_helper ================
[22:05:18] ============== drm_dp_mst_helper (3 subtests) ==============
[22:05:18] ============== drm_test_dp_mst_calc_pbn_mode ==============
[22:05:18] [PASSED] Clock 154000 BPP 30 DSC disabled
[22:05:18] [PASSED] Clock 234000 BPP 30 DSC disabled
[22:05:18] [PASSED] Clock 297000 BPP 24 DSC disabled
[22:05:18] [PASSED] Clock 332880 BPP 24 DSC enabled
[22:05:18] [PASSED] Clock 324540 BPP 24 DSC enabled
[22:05:18] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[22:05:18] ============== drm_test_dp_mst_calc_pbn_div ===============
[22:05:18] [PASSED] Link rate 2000000 lane count 4
[22:05:18] [PASSED] Link rate 2000000 lane count 2
[22:05:18] [PASSED] Link rate 2000000 lane count 1
[22:05:18] [PASSED] Link rate 1350000 lane count 4
[22:05:18] [PASSED] Link rate 1350000 lane count 2
[22:05:18] [PASSED] Link rate 1350000 lane count 1
[22:05:18] [PASSED] Link rate 1000000 lane count 4
[22:05:18] [PASSED] Link rate 1000000 lane count 2
[22:05:18] [PASSED] Link rate 1000000 lane count 1
[22:05:18] [PASSED] Link rate 810000 lane count 4
[22:05:18] [PASSED] Link rate 810000 lane count 2
[22:05:18] [PASSED] Link rate 810000 lane count 1
[22:05:18] [PASSED] Link rate 540000 lane count 4
[22:05:18] [PASSED] Link rate 540000 lane count 2
[22:05:18] [PASSED] Link rate 540000 lane count 1
[22:05:18] [PASSED] Link rate 270000 lane count 4
[22:05:18] [PASSED] Link rate 270000 lane count 2
[22:05:18] [PASSED] Link rate 270000 lane count 1
[22:05:18] [PASSED] Link rate 162000 lane count 4
[22:05:18] [PASSED] Link rate 162000 lane count 2
[22:05:18] [PASSED] Link rate 162000 lane count 1
[22:05:18] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[22:05:18] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[22:05:18] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[22:05:18] [PASSED] DP_POWER_UP_PHY with port number
[22:05:18] [PASSED] DP_POWER_DOWN_PHY with port number
[22:05:18] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[22:05:18] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[22:05:18] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[22:05:18] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[22:05:18] [PASSED] DP_QUERY_PAYLOAD with port number
[22:05:18] [PASSED] DP_QUERY_PAYLOAD with VCPI
[22:05:18] [PASSED] DP_REMOTE_DPCD_READ with port number
[22:05:18] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[22:05:18] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[22:05:18] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[22:05:18] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[22:05:18] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[22:05:18] [PASSED] DP_REMOTE_I2C_READ with port number
[22:05:18] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[22:05:18] [PASSED] DP_REMOTE_I2C_READ with transactions array
[22:05:18] [PASSED] DP_REMOTE_I2C_WRITE with port number
[22:05:18] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[22:05:18] [PASSED] DP_REMOTE_I2C_WRITE with data array
[22:05:18] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[22:05:18] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[22:05:18] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[22:05:18] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[22:05:18] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[22:05:18] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[22:05:18] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[22:05:18] ================ [PASSED] drm_dp_mst_helper ================
[22:05:18] ================== drm_exec (7 subtests) ===================
[22:05:18] [PASSED] sanitycheck
[22:05:18] [PASSED] test_lock
[22:05:18] [PASSED] test_lock_unlock
[22:05:18] [PASSED] test_duplicates
[22:05:18] [PASSED] test_prepare
[22:05:18] [PASSED] test_prepare_array
[22:05:18] [PASSED] test_multiple_loops
[22:05:18] ==================== [PASSED] drm_exec =====================
[22:05:18] =========== drm_format_helper_test (18 subtests) ===========
[22:05:18] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[22:05:18] [PASSED] single_pixel_source_buffer
[22:05:18] [PASSED] single_pixel_clip_rectangle
[22:05:18] [PASSED] well_known_colors
[22:05:18] [PASSED] destination_pitch
[22:05:18] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[22:05:18] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[22:05:18] [PASSED] single_pixel_source_buffer
[22:05:18] [PASSED] single_pixel_clip_rectangle
[22:05:18] [PASSED] well_known_colors
[22:05:18] [PASSED] destination_pitch
[22:05:18] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[22:05:18] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[22:05:18] [PASSED] single_pixel_source_buffer
[22:05:18] [PASSED] single_pixel_clip_rectangle
[22:05:18] [PASSED] well_known_colors
[22:05:18] [PASSED] destination_pitch
[22:05:18] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[22:05:18] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[22:05:18] [PASSED] single_pixel_source_buffer
[22:05:18] [PASSED] single_pixel_clip_rectangle
[22:05:18] [PASSED] well_known_colors
[22:05:18] [PASSED] destination_pitch
[22:05:18] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[22:05:18] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[22:05:18] [PASSED] single_pixel_source_buffer
[22:05:18] [PASSED] single_pixel_clip_rectangle
[22:05:18] [PASSED] well_known_colors
[22:05:18] [PASSED] destination_pitch
[22:05:18] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[22:05:18] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[22:05:18] [PASSED] single_pixel_source_buffer
[22:05:18] [PASSED] single_pixel_clip_rectangle
[22:05:18] [PASSED] well_known_colors
[22:05:18] [PASSED] destination_pitch
[22:05:18] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[22:05:18] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[22:05:18] [PASSED] single_pixel_source_buffer
[22:05:18] [PASSED] single_pixel_clip_rectangle
[22:05:18] [PASSED] well_known_colors
[22:05:18] [PASSED] destination_pitch
[22:05:18] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[22:05:18] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[22:05:18] [PASSED] single_pixel_source_buffer
[22:05:18] [PASSED] single_pixel_clip_rectangle
[22:05:18] [PASSED] well_known_colors
[22:05:18] [PASSED] destination_pitch
[22:05:18] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[22:05:18] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[22:05:18] [PASSED] single_pixel_source_buffer
[22:05:18] [PASSED] single_pixel_clip_rectangle
[22:05:18] [PASSED] well_known_colors
[22:05:18] [PASSED] destination_pitch
[22:05:18] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[22:05:18] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[22:05:18] [PASSED] single_pixel_source_buffer
[22:05:18] [PASSED] single_pixel_clip_rectangle
[22:05:18] [PASSED] well_known_colors
[22:05:18] [PASSED] destination_pitch
[22:05:18] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[22:05:18] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[22:05:18] [PASSED] single_pixel_source_buffer
[22:05:18] [PASSED] single_pixel_clip_rectangle
[22:05:18] [PASSED] well_known_colors
[22:05:18] [PASSED] destination_pitch
[22:05:18] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[22:05:18] ============== drm_test_fb_xrgb8888_to_mono ===============
[22:05:18] [PASSED] single_pixel_source_buffer
[22:05:18] [PASSED] single_pixel_clip_rectangle
[22:05:18] [PASSED] well_known_colors
[22:05:18] [PASSED] destination_pitch
[22:05:18] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[22:05:18] ==================== drm_test_fb_swab =====================
[22:05:18] [PASSED] single_pixel_source_buffer
[22:05:18] [PASSED] single_pixel_clip_rectangle
[22:05:18] [PASSED] well_known_colors
[22:05:18] [PASSED] destination_pitch
[22:05:18] ================ [PASSED] drm_test_fb_swab =================
[22:05:18] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[22:05:18] [PASSED] single_pixel_source_buffer
[22:05:18] [PASSED] single_pixel_clip_rectangle
[22:05:18] [PASSED] well_known_colors
[22:05:18] [PASSED] destination_pitch
[22:05:18] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[22:05:18] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[22:05:18] [PASSED] single_pixel_source_buffer
[22:05:18] [PASSED] single_pixel_clip_rectangle
[22:05:18] [PASSED] well_known_colors
[22:05:18] [PASSED] destination_pitch
[22:05:18] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[22:05:18] ================= drm_test_fb_clip_offset =================
[22:05:18] [PASSED] pass through
[22:05:18] [PASSED] horizontal offset
[22:05:18] [PASSED] vertical offset
[22:05:18] [PASSED] horizontal and vertical offset
[22:05:18] [PASSED] horizontal offset (custom pitch)
[22:05:18] [PASSED] vertical offset (custom pitch)
[22:05:18] [PASSED] horizontal and vertical offset (custom pitch)
[22:05:18] ============= [PASSED] drm_test_fb_clip_offset =============
[22:05:18] ============== drm_test_fb_build_fourcc_list ==============
[22:05:18] [PASSED] no native formats
[22:05:18] [PASSED] XRGB8888 as native format
[22:05:18] [PASSED] remove duplicates
[22:05:18] [PASSED] convert alpha formats
[22:05:18] [PASSED] random formats
[22:05:18] ========== [PASSED] drm_test_fb_build_fourcc_list ==========
[22:05:18] =================== drm_test_fb_memcpy ====================
[22:05:18] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[22:05:18] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[22:05:18] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[22:05:18] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[22:05:18] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[22:05:18] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[22:05:18] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[22:05:18] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[22:05:18] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[22:05:18] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[22:05:18] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[22:05:18] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[22:05:18] =============== [PASSED] drm_test_fb_memcpy ================
[22:05:18] ============= [PASSED] drm_format_helper_test ==============
[22:05:18] ================= drm_format (18 subtests) =================
[22:05:18] [PASSED] drm_test_format_block_width_invalid
[22:05:18] [PASSED] drm_test_format_block_width_one_plane
[22:05:18] [PASSED] drm_test_format_block_width_two_plane
[22:05:18] [PASSED] drm_test_format_block_width_three_plane
[22:05:18] [PASSED] drm_test_format_block_width_tiled
[22:05:18] [PASSED] drm_test_format_block_height_invalid
[22:05:18] [PASSED] drm_test_format_block_height_one_plane
[22:05:18] [PASSED] drm_test_format_block_height_two_plane
[22:05:18] [PASSED] drm_test_format_block_height_three_plane
[22:05:18] [PASSED] drm_test_format_block_height_tiled
[22:05:18] [PASSED] drm_test_format_min_pitch_invalid
[22:05:18] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[22:05:18] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[22:05:18] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[22:05:18] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[22:05:18] [PASSED] drm_test_format_min_pitch_two_plane
[22:05:18] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[22:05:18] [PASSED] drm_test_format_min_pitch_tiled
[22:05:18] =================== [PASSED] drm_format ====================
[22:05:18] ============== drm_framebuffer (10 subtests) ===============
[22:05:18] ========== drm_test_framebuffer_check_src_coords ==========
[22:05:18] [PASSED] Success: source fits into fb
[22:05:18] [PASSED] Fail: overflowing fb with x-axis coordinate
[22:05:18] [PASSED] Fail: overflowing fb with y-axis coordinate
[22:05:18] [PASSED] Fail: overflowing fb with source width
[22:05:18] [PASSED] Fail: overflowing fb with source height
[22:05:18] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[22:05:18] [PASSED] drm_test_framebuffer_cleanup
[22:05:18] =============== drm_test_framebuffer_create ===============
[22:05:18] [PASSED] ABGR8888 normal sizes
[22:05:18] [PASSED] ABGR8888 max sizes
[22:05:18] [PASSED] ABGR8888 pitch greater than min required
[22:05:18] [PASSED] ABGR8888 pitch less than min required
[22:05:18] [PASSED] ABGR8888 Invalid width
[22:05:18] [PASSED] ABGR8888 Invalid buffer handle
[22:05:18] [PASSED] No pixel format
[22:05:18] [PASSED] ABGR8888 Width 0
[22:05:18] [PASSED] ABGR8888 Height 0
[22:05:18] [PASSED] ABGR8888 Out of bound height * pitch combination
[22:05:18] [PASSED] ABGR8888 Large buffer offset
[22:05:18] [PASSED] ABGR8888 Buffer offset for inexistent plane
[22:05:18] [PASSED] ABGR8888 Invalid flag
[22:05:18] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[22:05:18] [PASSED] ABGR8888 Valid buffer modifier
[22:05:18] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[22:05:18] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[22:05:18] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[22:05:18] [PASSED] NV12 Normal sizes
[22:05:18] [PASSED] NV12 Max sizes
[22:05:18] [PASSED] NV12 Invalid pitch
[22:05:18] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[22:05:18] [PASSED] NV12 different modifier per-plane
[22:05:18] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[22:05:18] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[22:05:18] [PASSED] NV12 Modifier for inexistent plane
[22:05:18] [PASSED] NV12 Handle for inexistent plane
[22:05:18] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[22:05:18] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[22:05:18] [PASSED] YVU420 Normal sizes
[22:05:18] [PASSED] YVU420 Max sizes
[22:05:18] [PASSED] YVU420 Invalid pitch
[22:05:18] [PASSED] YVU420 Different pitches
[22:05:18] [PASSED] YVU420 Different buffer offsets/pitches
[22:05:18] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[22:05:18] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[22:05:18] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[22:05:18] [PASSED] YVU420 Valid modifier
[22:05:18] [PASSED] YVU420 Different modifiers per plane
[22:05:18] [PASSED] YVU420 Modifier for inexistent plane
[22:05:18] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[22:05:18] [PASSED] X0L2 Normal sizes
[22:05:18] [PASSED] X0L2 Max sizes
[22:05:18] [PASSED] X0L2 Invalid pitch
[22:05:18] [PASSED] X0L2 Pitch greater than minimum required
[22:05:18] [PASSED] X0L2 Handle for inexistent plane
[22:05:18] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[22:05:18] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[22:05:18] [PASSED] X0L2 Valid modifier
[22:05:18] [PASSED] X0L2 Modifier for inexistent plane
[22:05:18] =========== [PASSED] drm_test_framebuffer_create ===========
[22:05:18] [PASSED] drm_test_framebuffer_free
[22:05:18] [PASSED] drm_test_framebuffer_init
[22:05:18] [PASSED] drm_test_framebuffer_init_bad_format
[22:05:18] [PASSED] drm_test_framebuffer_init_dev_mismatch
[22:05:18] [PASSED] drm_test_framebuffer_lookup
[22:05:18] [PASSED] drm_test_framebuffer_lookup_inexistent
[22:05:18] [PASSED] drm_test_framebuffer_modifiers_not_supported
[22:05:18] ================= [PASSED] drm_framebuffer =================
[22:05:18] ================ drm_gem_shmem (8 subtests) ================
[22:05:18] [PASSED] drm_gem_shmem_test_obj_create
[22:05:18] [PASSED] drm_gem_shmem_test_obj_create_private
[22:05:18] [PASSED] drm_gem_shmem_test_pin_pages
[22:05:18] [PASSED] drm_gem_shmem_test_vmap
[22:05:18] [PASSED] drm_gem_shmem_test_get_pages_sgt
[22:05:18] [PASSED] drm_gem_shmem_test_get_sg_table
[22:05:18] [PASSED] drm_gem_shmem_test_madvise
[22:05:18] [PASSED] drm_gem_shmem_test_purge
[22:05:18] ================== [PASSED] drm_gem_shmem ==================
[22:05:18] === drm_atomic_helper_connector_hdmi_check (23 subtests) ===
[22:05:18] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[22:05:18] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[22:05:18] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[22:05:18] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[22:05:18] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[22:05:18] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[22:05:18] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[22:05:18] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[22:05:18] [PASSED] drm_test_check_disable_connector
[22:05:18] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[22:05:18] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback
[22:05:18] [PASSED] drm_test_check_max_tmds_rate_format_fallback
[22:05:18] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[22:05:18] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[22:05:18] [PASSED] drm_test_check_output_bpc_dvi
[22:05:18] [PASSED] drm_test_check_output_bpc_format_vic_1
[22:05:18] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[22:05:18] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[22:05:18] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[22:05:18] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[22:05:18] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[22:05:18] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[22:05:18] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[22:05:18] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[22:05:18] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[22:05:18] [PASSED] drm_test_check_broadcast_rgb_value
[22:05:18] [PASSED] drm_test_check_bpc_8_value
[22:05:18] [PASSED] drm_test_check_bpc_10_value
[22:05:18] [PASSED] drm_test_check_bpc_12_value
[22:05:18] [PASSED] drm_test_check_format_value
[22:05:18] [PASSED] drm_test_check_tmds_char_value
[22:05:18] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[22:05:18] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[22:05:18] [PASSED] drm_test_check_mode_valid
[22:05:18] [PASSED] drm_test_check_mode_valid_reject
[22:05:18] [PASSED] drm_test_check_mode_valid_reject_rate
[22:05:18] [PASSED] drm_test_check_mode_valid_reject_max_clock
[22:05:18] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[22:05:18] ================= drm_managed (2 subtests) =================
[22:05:18] [PASSED] drm_test_managed_release_action
[22:05:18] [PASSED] drm_test_managed_run_action
[22:05:18] =================== [PASSED] drm_managed ===================
[22:05:18] =================== drm_mm (6 subtests) ====================
[22:05:18] [PASSED] drm_test_mm_init
[22:05:18] [PASSED] drm_test_mm_debug
[22:05:18] [PASSED] drm_test_mm_align32
[22:05:18] [PASSED] drm_test_mm_align64
[22:05:18] [PASSED] drm_test_mm_lowest
[22:05:18] [PASSED] drm_test_mm_highest
[22:05:18] ===================== [PASSED] drm_mm ======================
[22:05:18] ============= drm_modes_analog_tv (5 subtests) =============
[22:05:18] [PASSED] drm_test_modes_analog_tv_mono_576i
[22:05:18] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[22:05:18] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[22:05:18] [PASSED] drm_test_modes_analog_tv_pal_576i
[22:05:18] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[22:05:18] =============== [PASSED] drm_modes_analog_tv ===============
[22:05:18] ============== drm_plane_helper (2 subtests) ===============
[22:05:18] =============== drm_test_check_plane_state ================
[22:05:18] [PASSED] clipping_simple
[22:05:18] [PASSED] clipping_rotate_reflect
[22:05:18] [PASSED] positioning_simple
[22:05:18] [PASSED] upscaling
[22:05:18] [PASSED] downscaling
[22:05:18] [PASSED] rounding1
[22:05:18] [PASSED] rounding2
[22:05:18] [PASSED] rounding3
[22:05:18] [PASSED] rounding4
[22:05:18] =========== [PASSED] drm_test_check_plane_state ============
[22:05:18] =========== drm_test_check_invalid_plane_state ============
[22:05:18] [PASSED] positioning_invalid
[22:05:18] [PASSED] upscaling_invalid
[22:05:18] [PASSED] downscaling_invalid
[22:05:18] ======= [PASSED] drm_test_check_invalid_plane_state ========
[22:05:18] ================ [PASSED] drm_plane_helper =================
[22:05:18] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[22:05:18] ====== drm_test_connector_helper_tv_get_modes_check =======
[22:05:18] [PASSED] None
[22:05:18] [PASSED] PAL
[22:05:18] [PASSED] NTSC
[22:05:18] [PASSED] Both, NTSC Default
[22:05:18] [PASSED] Both, PAL Default
[22:05:18] [PASSED] Both, NTSC Default, with PAL on command-line
[22:05:18] [PASSED] Both, PAL Default, with NTSC on command-line
[22:05:18] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[22:05:18] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[22:05:18] ================== drm_rect (9 subtests) ===================
[22:05:18] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[22:05:18] [PASSED] drm_test_rect_clip_scaled_not_clipped
[22:05:18] [PASSED] drm_test_rect_clip_scaled_clipped
[22:05:18] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[22:05:18] ================= drm_test_rect_intersect =================
[22:05:18] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[22:05:18] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[22:05:18] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[22:05:18] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[22:05:18] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[22:05:18] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[22:05:18] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[22:05:18] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[22:05:18] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[22:05:18] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[22:05:18] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[22:05:18] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[22:05:18] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[22:05:18] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[22:05:18] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[22:05:18] ============= [PASSED] drm_test_rect_intersect =============
[22:05:18] ================ drm_test_rect_calc_hscale ================
[22:05:18] [PASSED] normal use
[22:05:18] [PASSED] out of max range
[22:05:18] [PASSED] out of min range
[22:05:18] [PASSED] zero dst
[22:05:18] [PASSED] negative src
[22:05:18] [PASSED] negative dst
[22:05:18] ============ [PASSED] drm_test_rect_calc_hscale ============
[22:05:18] ================ drm_test_rect_calc_vscale ================
[22:05:18] [PASSED] normal use
[22:05:18] [PASSED] out of max range
[22:05:18] [PASSED] out of min range
[22:05:18] [PASSED] zero dst
[22:05:18] [PASSED] negative src
[22:05:18] [PASSED] negative dst
[22:05:18] ============ [PASSED] drm_test_rect_calc_vscale ============
[22:05:18] ================== drm_test_rect_rotate ===================
[22:05:18] [PASSED] reflect-x
[22:05:18] [PASSED] reflect-y
[22:05:18] [PASSED] rotate-0
[22:05:18] [PASSED] rotate-90
[22:05:18] [PASSED] rotate-180
[22:05:18] [PASSED] rotate-270
[22:05:18] ============== [PASSED] drm_test_rect_rotate ===============
[22:05:18] ================ drm_test_rect_rotate_inv =================
[22:05:18] [PASSED] reflect-x
[22:05:18] [PASSED] reflect-y
[22:05:18] [PASSED] rotate-0
[22:05:18] [PASSED] rotate-90
[22:05:18] [PASSED] rotate-180
[22:05:18] [PASSED] rotate-270
[22:05:18] ============ [PASSED] drm_test_rect_rotate_inv =============
stty: 'standard input': Inappropriate ioctl for device
[22:05:18] ==================== [PASSED] drm_rect =====================
[22:05:18] ============================================================
[22:05:18] Testing complete. Ran 608 tests: passed: 608
[22:05:18] Elapsed time: 23.414s total, 1.691s configuring, 21.558s building, 0.135s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[22:05:18] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[22:05:20] Building KUnit Kernel ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
Building with:
$ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48
[22:05:27] Starting KUnit Kernel (1/1)...
[22:05:27] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[22:05:27] ================= ttm_device (5 subtests) ==================
[22:05:27] [PASSED] ttm_device_init_basic
[22:05:27] [PASSED] ttm_device_init_multiple
[22:05:27] [PASSED] ttm_device_fini_basic
[22:05:27] [PASSED] ttm_device_init_no_vma_man
[22:05:27] ================== ttm_device_init_pools ==================
[22:05:27] [PASSED] No DMA allocations, no DMA32 required
[22:05:27] [PASSED] DMA allocations, DMA32 required
[22:05:27] [PASSED] No DMA allocations, DMA32 required
[22:05:27] [PASSED] DMA allocations, no DMA32 required
[22:05:27] ============== [PASSED] ttm_device_init_pools ==============
[22:05:27] =================== [PASSED] ttm_device ====================
[22:05:27] ================== ttm_pool (8 subtests) ===================
[22:05:27] ================== ttm_pool_alloc_basic ===================
[22:05:27] [PASSED] One page
[22:05:27] [PASSED] More than one page
[22:05:27] [PASSED] Above the allocation limit
[22:05:27] [PASSED] One page, with coherent DMA mappings enabled
[22:05:27] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:05:27] ============== [PASSED] ttm_pool_alloc_basic ===============
[22:05:27] ============== ttm_pool_alloc_basic_dma_addr ==============
[22:05:27] [PASSED] One page
[22:05:27] [PASSED] More than one page
[22:05:27] [PASSED] Above the allocation limit
[22:05:27] [PASSED] One page, with coherent DMA mappings enabled
[22:05:27] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[22:05:27] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[22:05:27] [PASSED] ttm_pool_alloc_order_caching_match
[22:05:27] [PASSED] ttm_pool_alloc_caching_mismatch
[22:05:27] [PASSED] ttm_pool_alloc_order_mismatch
[22:05:27] [PASSED] ttm_pool_free_dma_alloc
[22:05:27] [PASSED] ttm_pool_free_no_dma_alloc
[22:05:27] [PASSED] ttm_pool_fini_basic
[22:05:27] ==================== [PASSED] ttm_pool =====================
[22:05:27] ================ ttm_resource (8 subtests) =================
[22:05:27] ================= ttm_resource_init_basic =================
[22:05:27] [PASSED] Init resource in TTM_PL_SYSTEM
[22:05:27] [PASSED] Init resource in TTM_PL_VRAM
[22:05:27] [PASSED] Init resource in a private placement
[22:05:27] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[22:05:27] ============= [PASSED] ttm_resource_init_basic =============
[22:05:27] [PASSED] ttm_resource_init_pinned
[22:05:27] [PASSED] ttm_resource_fini_basic
[22:05:27] [PASSED] ttm_resource_manager_init_basic
[22:05:27] [PASSED] ttm_resource_manager_usage_basic
[22:05:27] [PASSED] ttm_resource_manager_set_used_basic
[22:05:27] [PASSED] ttm_sys_man_alloc_basic
[22:05:27] [PASSED] ttm_sys_man_free_basic
[22:05:27] ================== [PASSED] ttm_resource ===================
[22:05:27] =================== ttm_tt (15 subtests) ===================
[22:05:27] ==================== ttm_tt_init_basic ====================
[22:05:27] [PASSED] Page-aligned size
[22:05:27] [PASSED] Extra pages requested
[22:05:27] ================ [PASSED] ttm_tt_init_basic ================
[22:05:27] [PASSED] ttm_tt_init_misaligned
[22:05:27] [PASSED] ttm_tt_fini_basic
[22:05:27] [PASSED] ttm_tt_fini_sg
[22:05:27] [PASSED] ttm_tt_fini_shmem
[22:05:27] [PASSED] ttm_tt_create_basic
[22:05:27] [PASSED] ttm_tt_create_invalid_bo_type
[22:05:27] [PASSED] ttm_tt_create_ttm_exists
[22:05:27] [PASSED] ttm_tt_create_failed
[22:05:27] [PASSED] ttm_tt_destroy_basic
[22:05:27] [PASSED] ttm_tt_populate_null_ttm
[22:05:27] [PASSED] ttm_tt_populate_populated_ttm
[22:05:27] [PASSED] ttm_tt_unpopulate_basic
[22:05:27] [PASSED] ttm_tt_unpopulate_empty_ttm
[22:05:27] [PASSED] ttm_tt_swapin_basic
[22:05:27] ===================== [PASSED] ttm_tt ======================
[22:05:27] =================== ttm_bo (14 subtests) ===================
[22:05:27] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[22:05:27] [PASSED] Cannot be interrupted and sleeps
[22:05:27] [PASSED] Cannot be interrupted, locks straight away
[22:05:27] [PASSED] Can be interrupted, sleeps
[22:05:27] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[22:05:27] [PASSED] ttm_bo_reserve_locked_no_sleep
[22:05:27] [PASSED] ttm_bo_reserve_no_wait_ticket
[22:05:27] [PASSED] ttm_bo_reserve_double_resv
[22:05:27] [PASSED] ttm_bo_reserve_interrupted
[22:05:27] [PASSED] ttm_bo_reserve_deadlock
[22:05:27] [PASSED] ttm_bo_unreserve_basic
[22:05:27] [PASSED] ttm_bo_unreserve_pinned
[22:05:27] [PASSED] ttm_bo_unreserve_bulk
[22:05:27] [PASSED] ttm_bo_put_basic
[22:05:27] [PASSED] ttm_bo_put_shared_resv
[22:05:27] [PASSED] ttm_bo_pin_basic
[22:05:27] [PASSED] ttm_bo_pin_unpin_resource
[22:05:27] [PASSED] ttm_bo_multiple_pin_one_unpin
[22:05:27] ===================== [PASSED] ttm_bo ======================
[22:05:27] ============== ttm_bo_validate (22 subtests) ===============
[22:05:27] ============== ttm_bo_init_reserved_sys_man ===============
[22:05:27] [PASSED] Buffer object for userspace
[22:05:27] [PASSED] Kernel buffer object
[22:05:27] [PASSED] Shared buffer object
[22:05:27] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[22:05:27] ============== ttm_bo_init_reserved_mock_man ==============
[22:05:27] [PASSED] Buffer object for userspace
[22:05:27] [PASSED] Kernel buffer object
[22:05:27] [PASSED] Shared buffer object
[22:05:27] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[22:05:27] [PASSED] ttm_bo_init_reserved_resv
[22:05:27] ================== ttm_bo_validate_basic ==================
[22:05:27] [PASSED] Buffer object for userspace
[22:05:27] [PASSED] Kernel buffer object
[22:05:27] [PASSED] Shared buffer object
[22:05:27] ============== [PASSED] ttm_bo_validate_basic ==============
[22:05:27] [PASSED] ttm_bo_validate_invalid_placement
[22:05:27] ============= ttm_bo_validate_same_placement ==============
[22:05:27] [PASSED] System manager
[22:05:27] [PASSED] VRAM manager
[22:05:27] ========= [PASSED] ttm_bo_validate_same_placement ==========
[22:05:27] [PASSED] ttm_bo_validate_failed_alloc
[22:05:27] [PASSED] ttm_bo_validate_pinned
[22:05:27] [PASSED] ttm_bo_validate_busy_placement
[22:05:27] ================ ttm_bo_validate_multihop =================
[22:05:27] [PASSED] Buffer object for userspace
[22:05:27] [PASSED] Kernel buffer object
[22:05:27] [PASSED] Shared buffer object
[22:05:27] ============ [PASSED] ttm_bo_validate_multihop =============
[22:05:27] ========== ttm_bo_validate_no_placement_signaled ==========
[22:05:27] [PASSED] Buffer object in system domain, no page vector
[22:05:27] [PASSED] Buffer object in system domain with an existing page vector
[22:05:27] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[22:05:27] ======== ttm_bo_validate_no_placement_not_signaled ========
[22:05:27] [PASSED] Buffer object for userspace
[22:05:27] [PASSED] Kernel buffer object
[22:05:27] [PASSED] Shared buffer object
[22:05:27] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[22:05:27] [PASSED] ttm_bo_validate_move_fence_signaled
[22:05:27] ========= ttm_bo_validate_move_fence_not_signaled =========
[22:05:27] [PASSED] Waits for GPU
[22:05:27] [PASSED] Tries to lock straight away
[22:05:28] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[22:05:28] [PASSED] ttm_bo_validate_swapout
[22:05:28] [PASSED] ttm_bo_validate_happy_evict
[22:05:28] [PASSED] ttm_bo_validate_all_pinned_evict
[22:05:28] [PASSED] ttm_bo_validate_allowed_only_evict
[22:05:28] [PASSED] ttm_bo_validate_deleted_evict
[22:05:28] [PASSED] ttm_bo_validate_busy_domain_evict
[22:05:28] [PASSED] ttm_bo_validate_evict_gutting
[22:05:28] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[22:05:28] ================= [PASSED] ttm_bo_validate =================
[22:05:28] ============================================================
[22:05:28] Testing complete. Ran 102 tests: passed: 102
[22:05:28] Elapsed time: 9.883s total, 1.589s configuring, 7.677s building, 0.509s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 24+ messages in thread* ✓ CI.Build: success for Suppress some dumps during fault injection tests
2025-05-12 16:19 [PATCH 0/2] Suppress some dumps during fault injection tests Michal Wajdeczko
` (16 preceding siblings ...)
2025-05-26 22:05 ` ✓ CI.KUnit: " Patchwork
@ 2025-05-26 22:15 ` Patchwork
17 siblings, 0 replies; 24+ messages in thread
From: Patchwork @ 2025-05-26 22:15 UTC (permalink / raw)
To: Michal Wajdeczko; +Cc: intel-xe
== Series Details ==
Series: Suppress some dumps during fault injection tests
URL : https://patchwork.freedesktop.org/series/148900/
State : success
== Summary ==
lib/modules/6.15.0-rc6-xe+/kernel/arch/x86/kvm/
lib/modules/6.15.0-rc6-xe+/kernel/arch/x86/kvm/kvm.ko
lib/modules/6.15.0-rc6-xe+/kernel/arch/x86/kvm/kvm-intel.ko
lib/modules/6.15.0-rc6-xe+/kernel/arch/x86/kvm/kvm-amd.ko
lib/modules/6.15.0-rc6-xe+/kernel/virt/
lib/modules/6.15.0-rc6-xe+/kernel/virt/lib/
lib/modules/6.15.0-rc6-xe+/kernel/virt/lib/irqbypass.ko
lib/modules/6.15.0-rc6-xe+/kernel/kernel/
lib/modules/6.15.0-rc6-xe+/kernel/kernel/kheaders.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/
lib/modules/6.15.0-rc6-xe+/kernel/crypto/ecrdsa_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/xcbc.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/serpent_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/aria_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/crypto_simd.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/adiantum.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/tcrypt.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/crypto_engine.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/zstd.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/asymmetric_keys/
lib/modules/6.15.0-rc6-xe+/kernel/crypto/asymmetric_keys/pkcs7_test_key.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/asymmetric_keys/pkcs8_key_parser.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/des_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/xctr.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/authenc.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/sm4_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/camellia_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/sm3.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/pcrypt.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/aegis128.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/af_alg.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/algif_aead.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/cmac.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/sm3_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/aes_ti.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/chacha_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/poly1305_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/nhpoly1305.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/crc32_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/essiv.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/ccm.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/wp512.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/streebog_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/authencesn.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/echainiv.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/lrw.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/cryptd.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/crypto_user.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/algif_hash.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/polyval-generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/hctr2.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/842.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/pcbc.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/ansi_cprng.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/cast6_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/twofish_common.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/twofish_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/lz4hc.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/blowfish_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/md4.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/chacha20poly1305.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/curve25519-generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/lz4.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/rmd160.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/algif_skcipher.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/cast5_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/fcrypt.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/ecdsa_generic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/sm4.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/cast_common.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/blowfish_common.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/michael_mic.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/async_tx/
lib/modules/6.15.0-rc6-xe+/kernel/crypto/async_tx/async_xor.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/async_tx/async_tx.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/async_tx/async_memcpy.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/async_tx/async_pq.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/async_tx/async_raid6_recov.ko
lib/modules/6.15.0-rc6-xe+/kernel/crypto/algif_rng.ko
lib/modules/6.15.0-rc6-xe+/kernel/block/
lib/modules/6.15.0-rc6-xe+/kernel/block/bfq.ko
lib/modules/6.15.0-rc6-xe+/kernel/block/kyber-iosched.ko
lib/modules/6.15.0-rc6-xe+/build
lib/modules/6.15.0-rc6-xe+/modules.alias.bin
lib/modules/6.15.0-rc6-xe+/modules.builtin
lib/modules/6.15.0-rc6-xe+/modules.softdep
lib/modules/6.15.0-rc6-xe+/modules.alias
lib/modules/6.15.0-rc6-xe+/modules.order
lib/modules/6.15.0-rc6-xe+/modules.symbols
lib/modules/6.15.0-rc6-xe+/modules.dep.bin
+ mv kernel-debug.tar.gz ..
+ cd ..
+ rm -rf archive-debug
+ [[ no == \y\e\s ]]
+ sync
[+] Finished building and packaging 'debug'!
+ echo '[+] Finished building and packaging '\''debug'\''!'
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 24+ messages in thread