* [PATCH 0/2] drm/xe: Tweak default GuC log level
@ 2025-06-12 18:05 Lucas De Marchi
2025-06-12 18:05 ` [PATCH 1/2] drm/xe/guc: Default log level to non-verbose Lucas De Marchi
` (5 more replies)
0 siblings, 6 replies; 13+ messages in thread
From: Lucas De Marchi @ 2025-06-12 18:05 UTC (permalink / raw)
To: intel-xe; +Cc: Lucas De Marchi, Michal Mrozek, John Harrison
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
Lucas De Marchi (2):
drm/xe/guc: Default log level to non-verbose
drm/xe: Annotate default for guc_log_level param
drivers/gpu/drm/xe/xe_module.c | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
base-commit: b2fb41cb73fc88b8908b3085a2df8b81db9f460d
change-id: 20250612-guc-log-level-79f87ca03396
Lucas De Marchi
^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 1/2] drm/xe/guc: Default log level to non-verbose
2025-06-12 18:05 [PATCH 0/2] drm/xe: Tweak default GuC log level Lucas De Marchi
@ 2025-06-12 18:05 ` Lucas De Marchi
2025-06-12 18:21 ` John Harrison
2025-06-12 18:21 ` Matthew Brost
2025-06-12 18:05 ` [PATCH 2/2] drm/xe: Annotate default for guc_log_level param Lucas De Marchi
` (4 subsequent siblings)
5 siblings, 2 replies; 13+ messages in thread
From: Lucas De Marchi @ 2025-06-12 18:05 UTC (permalink / raw)
To: intel-xe; +Cc: Lucas De Marchi, Michal Mrozek, John Harrison
Currently xe sets the guc log level to a verbose level since it's useful
to debug hangs and general development. However the verbose level may
already be too much and affect performance.
Michal Mrozek did some tests with the L0 compute stack for submission
latency with ULLS disabled. Below are the normalized numbers with log
level 3 (the current default) as baseline for each test:
Test \ Log Level 3 0 1 2
----------------------------------------------------------- ------ ------ ------ ------
BestWalkerNthCommandListSubmission(CmdListCount=2) 1.00 0.63 0.63 0.96
BestWalkerNthSubmission(KernelCount=2) 1.00 0.62 0.63 0.96
BestWalkerNthSubmissionImmediate(KernelCount=2) 1.00 0.58 0.58 0.85
BestWalkerSubmission 1.00 0.62 0.62 0.96
BestWalkerSubmissionImmediate 1.00 0.63 0.62 0.96
BestWalkerSubmissionImmediateMultiCmdlists(cmdlistCount=2) 1.00 0.58 0.58 0.86
BestWalkerSubmissionImmediateMultiCmdlists(cmdlistCount=4) 1.00 0.70 0.70 0.83
BestWalkerSubmissionImmediateMultiCmdlists(cmdlistCount=8) 1.00 0.53 0.52 0.78
Log level 2 is the first "verbose level" for GuC, where the biggest
difference happens. Keep log level 3 for CONFIG_DRM_XE_DEBUG, but switch
to 1, i.e. GUC_LOG_LEVEL_NON_VERBOSE, for "normal" builds.
Cc: Michal Mrozek <michal.mrozek@intel.com>
Cc: John Harrison <John.C.Harrison@Intel.com>
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
drivers/gpu/drm/xe/xe_module.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_module.c b/drivers/gpu/drm/xe/xe_module.c
index 1c4dfafbcd0bc..4809afa7ce3f9 100644
--- a/drivers/gpu/drm/xe/xe_module.c
+++ b/drivers/gpu/drm/xe/xe_module.c
@@ -20,7 +20,7 @@
struct xe_modparam xe_modparam = {
.probe_display = true,
- .guc_log_level = 3,
+ .guc_log_level = IS_ENABLED(CONFIG_DRM_XE_DEBUG) ? 3 : 1,
.force_probe = CONFIG_DRM_XE_FORCE_PROBE,
#ifdef CONFIG_PCI_IOV
.max_vfs = IS_ENABLED(CONFIG_DRM_XE_DEBUG) ? ~0 : 0,
--
2.49.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [PATCH 2/2] drm/xe: Annotate default for guc_log_level param
2025-06-12 18:05 [PATCH 0/2] drm/xe: Tweak default GuC log level Lucas De Marchi
2025-06-12 18:05 ` [PATCH 1/2] drm/xe/guc: Default log level to non-verbose Lucas De Marchi
@ 2025-06-12 18:05 ` Lucas De Marchi
2025-06-12 18:26 ` John Harrison
2025-06-12 23:32 ` ✗ CI.checkpatch: warning for drm/xe: Tweak default GuC log level Patchwork
` (3 subsequent siblings)
5 siblings, 1 reply; 13+ messages in thread
From: Lucas De Marchi @ 2025-06-12 18:05 UTC (permalink / raw)
To: intel-xe; +Cc: Lucas De Marchi, Michal Mrozek, John Harrison
Reword the parameter description so it's clear what's the default and
what are the verbose levels.
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
---
drivers/gpu/drm/xe/xe_module.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/xe/xe_module.c b/drivers/gpu/drm/xe/xe_module.c
index 4809afa7ce3f9..3ca25bea5a15a 100644
--- a/drivers/gpu/drm/xe/xe_module.c
+++ b/drivers/gpu/drm/xe/xe_module.c
@@ -43,7 +43,11 @@ module_param_named(vram_bar_size, xe_modparam.force_vram_bar_size, int, 0600);
MODULE_PARM_DESC(vram_bar_size, "Set the vram bar size (in MiB) - <0=disable-resize, 0=max-needed-size[default], >0=force-size");
module_param_named(guc_log_level, xe_modparam.guc_log_level, int, 0600);
-MODULE_PARM_DESC(guc_log_level, "GuC firmware logging level (0=disable, 1..5=enable with verbosity min..max)");
+#if IS_ENABLED(CONFIG_DRM_XE_DEBUG)
+MODULE_PARM_DESC(guc_log_level, "GuC firmware logging level (0=disable, 1=normal, 2..5=verbose-levels [default=3])");
+#else
+MODULE_PARM_DESC(guc_log_level, "GuC firmware logging level (0=disable, 1=normal, 2..5=verbose-levels [default=1])");
+#endif
module_param_named_unsafe(guc_firmware_path, xe_modparam.guc_firmware_path, charp, 0400);
MODULE_PARM_DESC(guc_firmware_path,
--
2.49.0
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH 1/2] drm/xe/guc: Default log level to non-verbose
2025-06-12 18:05 ` [PATCH 1/2] drm/xe/guc: Default log level to non-verbose Lucas De Marchi
@ 2025-06-12 18:21 ` John Harrison
2025-06-12 18:29 ` Matthew Brost
2025-06-12 18:21 ` Matthew Brost
1 sibling, 1 reply; 13+ messages in thread
From: John Harrison @ 2025-06-12 18:21 UTC (permalink / raw)
To: Lucas De Marchi, intel-xe; +Cc: Michal Mrozek
On 6/12/2025 11:05 AM, Lucas De Marchi wrote:
> Currently xe sets the guc log level to a verbose level since it's useful
> to debug hangs and general development. However the verbose level may
> already be too much and affect performance.
>
> Michal Mrozek did some tests with the L0 compute stack for submission
> latency with ULLS disabled. Below are the normalized numbers with log
> level 3 (the current default) as baseline for each test:
>
> Test \ Log Level 3 0 1 2
> ----------------------------------------------------------- ------ ------ ------ ------
> BestWalkerNthCommandListSubmission(CmdListCount=2) 1.00 0.63 0.63 0.96
> BestWalkerNthSubmission(KernelCount=2) 1.00 0.62 0.63 0.96
> BestWalkerNthSubmissionImmediate(KernelCount=2) 1.00 0.58 0.58 0.85
> BestWalkerSubmission 1.00 0.62 0.62 0.96
> BestWalkerSubmissionImmediate 1.00 0.63 0.62 0.96
> BestWalkerSubmissionImmediateMultiCmdlists(cmdlistCount=2) 1.00 0.58 0.58 0.86
> BestWalkerSubmissionImmediateMultiCmdlists(cmdlistCount=4) 1.00 0.70 0.70 0.83
> BestWalkerSubmissionImmediateMultiCmdlists(cmdlistCount=8) 1.00 0.53 0.52 0.78
>
> Log level 2 is the first "verbose level" for GuC, where the biggest
> difference happens. Keep log level 3 for CONFIG_DRM_XE_DEBUG, but switch
> to 1, i.e. GUC_LOG_LEVEL_NON_VERBOSE, for "normal" builds.
Note that this performance is understood, although it was not realised
quite how much of a hit it was on this benchmark. The impact comes from
logging around context switches. The logging adds a few microseconds to
the context switch time. In general, this is not noticeable as the
context switch time is negligible compared to the runtime for the
workload itself. However, I'm guessing from the name that this benchmark
is specifically measuring context switch performance with empty
workloads. Thus it is the pathological worst case scenario with regards
to the impact of the logging.
Anyway, not logging in release builds is generally a good idea and
better benchmark scores are always good :).
Reviewed-by: John Harrison <John.C.Harrison@Intel.com>
>
> Cc: Michal Mrozek <michal.mrozek@intel.com>
> Cc: John Harrison <John.C.Harrison@Intel.com>
> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
> ---
> drivers/gpu/drm/xe/xe_module.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_module.c b/drivers/gpu/drm/xe/xe_module.c
> index 1c4dfafbcd0bc..4809afa7ce3f9 100644
> --- a/drivers/gpu/drm/xe/xe_module.c
> +++ b/drivers/gpu/drm/xe/xe_module.c
> @@ -20,7 +20,7 @@
>
> struct xe_modparam xe_modparam = {
> .probe_display = true,
> - .guc_log_level = 3,
> + .guc_log_level = IS_ENABLED(CONFIG_DRM_XE_DEBUG) ? 3 : 1,
> .force_probe = CONFIG_DRM_XE_FORCE_PROBE,
> #ifdef CONFIG_PCI_IOV
> .max_vfs = IS_ENABLED(CONFIG_DRM_XE_DEBUG) ? ~0 : 0,
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 1/2] drm/xe/guc: Default log level to non-verbose
2025-06-12 18:05 ` [PATCH 1/2] drm/xe/guc: Default log level to non-verbose Lucas De Marchi
2025-06-12 18:21 ` John Harrison
@ 2025-06-12 18:21 ` Matthew Brost
2025-06-12 18:26 ` John Harrison
1 sibling, 1 reply; 13+ messages in thread
From: Matthew Brost @ 2025-06-12 18:21 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-xe, Michal Mrozek, John Harrison
On Thu, Jun 12, 2025 at 11:05:32AM -0700, Lucas De Marchi wrote:
> Currently xe sets the guc log level to a verbose level since it's useful
> to debug hangs and general development. However the verbose level may
> already be too much and affect performance.
>
> Michal Mrozek did some tests with the L0 compute stack for submission
> latency with ULLS disabled. Below are the normalized numbers with log
> level 3 (the current default) as baseline for each test:
>
> Test \ Log Level 3 0 1 2
> ----------------------------------------------------------- ------ ------ ------ ------
> BestWalkerNthCommandListSubmission(CmdListCount=2) 1.00 0.63 0.63 0.96
> BestWalkerNthSubmission(KernelCount=2) 1.00 0.62 0.63 0.96
> BestWalkerNthSubmissionImmediate(KernelCount=2) 1.00 0.58 0.58 0.85
> BestWalkerSubmission 1.00 0.62 0.62 0.96
> BestWalkerSubmissionImmediate 1.00 0.63 0.62 0.96
> BestWalkerSubmissionImmediateMultiCmdlists(cmdlistCount=2) 1.00 0.58 0.58 0.86
> BestWalkerSubmissionImmediateMultiCmdlists(cmdlistCount=4) 1.00 0.70 0.70 0.83
> BestWalkerSubmissionImmediateMultiCmdlists(cmdlistCount=8) 1.00 0.53 0.52 0.78
>
> Log level 2 is the first "verbose level" for GuC, where the biggest
> difference happens. Keep log level 3 for CONFIG_DRM_XE_DEBUG, but switch
> to 1, i.e. GUC_LOG_LEVEL_NON_VERBOSE, for "normal" builds.
>
For series in general, I think this is a good idea - no need to slow
down performance for customers.
Downside is devcoredump from customers are going to have less
information. I'm wondering if the GuC log level is low, if we should
print something in devcoredump indicating this, and instructions on how
to turn up the GuC log level for filing verbose bug reports? e.g., A
similar message to what we print in xe_device_declare_wedged?
Matt
> Cc: Michal Mrozek <michal.mrozek@intel.com>
> Cc: John Harrison <John.C.Harrison@Intel.com>
> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
> ---
> drivers/gpu/drm/xe/xe_module.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_module.c b/drivers/gpu/drm/xe/xe_module.c
> index 1c4dfafbcd0bc..4809afa7ce3f9 100644
> --- a/drivers/gpu/drm/xe/xe_module.c
> +++ b/drivers/gpu/drm/xe/xe_module.c
> @@ -20,7 +20,7 @@
>
> struct xe_modparam xe_modparam = {
> .probe_display = true,
> - .guc_log_level = 3,
> + .guc_log_level = IS_ENABLED(CONFIG_DRM_XE_DEBUG) ? 3 : 1,
> .force_probe = CONFIG_DRM_XE_FORCE_PROBE,
> #ifdef CONFIG_PCI_IOV
> .max_vfs = IS_ENABLED(CONFIG_DRM_XE_DEBUG) ? ~0 : 0,
>
> --
> 2.49.0
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 1/2] drm/xe/guc: Default log level to non-verbose
2025-06-12 18:21 ` Matthew Brost
@ 2025-06-12 18:26 ` John Harrison
2025-06-12 18:35 ` Matthew Brost
0 siblings, 1 reply; 13+ messages in thread
From: John Harrison @ 2025-06-12 18:26 UTC (permalink / raw)
To: Matthew Brost, Lucas De Marchi; +Cc: intel-xe, Michal Mrozek
On 6/12/2025 11:21 AM, Matthew Brost wrote:
> On Thu, Jun 12, 2025 at 11:05:32AM -0700, Lucas De Marchi wrote:
>> Currently xe sets the guc log level to a verbose level since it's useful
>> to debug hangs and general development. However the verbose level may
>> already be too much and affect performance.
>>
>> Michal Mrozek did some tests with the L0 compute stack for submission
>> latency with ULLS disabled. Below are the normalized numbers with log
>> level 3 (the current default) as baseline for each test:
>>
>> Test \ Log Level 3 0 1 2
>> ----------------------------------------------------------- ------ ------ ------ ------
>> BestWalkerNthCommandListSubmission(CmdListCount=2) 1.00 0.63 0.63 0.96
>> BestWalkerNthSubmission(KernelCount=2) 1.00 0.62 0.63 0.96
>> BestWalkerNthSubmissionImmediate(KernelCount=2) 1.00 0.58 0.58 0.85
>> BestWalkerSubmission 1.00 0.62 0.62 0.96
>> BestWalkerSubmissionImmediate 1.00 0.63 0.62 0.96
>> BestWalkerSubmissionImmediateMultiCmdlists(cmdlistCount=2) 1.00 0.58 0.58 0.86
>> BestWalkerSubmissionImmediateMultiCmdlists(cmdlistCount=4) 1.00 0.70 0.70 0.83
>> BestWalkerSubmissionImmediateMultiCmdlists(cmdlistCount=8) 1.00 0.53 0.52 0.78
>>
>> Log level 2 is the first "verbose level" for GuC, where the biggest
>> difference happens. Keep log level 3 for CONFIG_DRM_XE_DEBUG, but switch
>> to 1, i.e. GUC_LOG_LEVEL_NON_VERBOSE, for "normal" builds.
>>
> For series in general, I think this is a good idea - no need to slow
> down performance for customers.
>
> Downside is devcoredump from customers are going to have less
> information. I'm wondering if the GuC log level is low, if we should
> print something in devcoredump indicating this, and instructions on how
We already include the log level in the GuC info section of the core
dump (and the debugfs dump), I thought?
And note that the minimum log level is meant to include the really
important logs. It certainly isn't as complete as higher levels but it
is hopefully enough to give us a first thought of what is going on. And
if we need more then it is easy to add a comment to the bug report
saying 'please re-run with this extra setting'.
John.
> to turn up the GuC log level for filing verbose bug reports? e.g., A
> similar message to what we print in xe_device_declare_wedged?
>
> Matt
>
>> Cc: Michal Mrozek <michal.mrozek@intel.com>
>> Cc: John Harrison <John.C.Harrison@Intel.com>
>> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
>> ---
>> drivers/gpu/drm/xe/xe_module.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_module.c b/drivers/gpu/drm/xe/xe_module.c
>> index 1c4dfafbcd0bc..4809afa7ce3f9 100644
>> --- a/drivers/gpu/drm/xe/xe_module.c
>> +++ b/drivers/gpu/drm/xe/xe_module.c
>> @@ -20,7 +20,7 @@
>>
>> struct xe_modparam xe_modparam = {
>> .probe_display = true,
>> - .guc_log_level = 3,
>> + .guc_log_level = IS_ENABLED(CONFIG_DRM_XE_DEBUG) ? 3 : 1,
>> .force_probe = CONFIG_DRM_XE_FORCE_PROBE,
>> #ifdef CONFIG_PCI_IOV
>> .max_vfs = IS_ENABLED(CONFIG_DRM_XE_DEBUG) ? ~0 : 0,
>>
>> --
>> 2.49.0
>>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 2/2] drm/xe: Annotate default for guc_log_level param
2025-06-12 18:05 ` [PATCH 2/2] drm/xe: Annotate default for guc_log_level param Lucas De Marchi
@ 2025-06-12 18:26 ` John Harrison
0 siblings, 0 replies; 13+ messages in thread
From: John Harrison @ 2025-06-12 18:26 UTC (permalink / raw)
To: Lucas De Marchi, intel-xe; +Cc: Michal Mrozek
On 6/12/2025 11:05 AM, Lucas De Marchi wrote:
> Reword the parameter description so it's clear what's the default and
> what are the verbose levels.
>
> Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: John Harrison <John.C.Harrison@Intel.com>
> ---
> drivers/gpu/drm/xe/xe_module.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_module.c b/drivers/gpu/drm/xe/xe_module.c
> index 4809afa7ce3f9..3ca25bea5a15a 100644
> --- a/drivers/gpu/drm/xe/xe_module.c
> +++ b/drivers/gpu/drm/xe/xe_module.c
> @@ -43,7 +43,11 @@ module_param_named(vram_bar_size, xe_modparam.force_vram_bar_size, int, 0600);
> MODULE_PARM_DESC(vram_bar_size, "Set the vram bar size (in MiB) - <0=disable-resize, 0=max-needed-size[default], >0=force-size");
>
> module_param_named(guc_log_level, xe_modparam.guc_log_level, int, 0600);
> -MODULE_PARM_DESC(guc_log_level, "GuC firmware logging level (0=disable, 1..5=enable with verbosity min..max)");
> +#if IS_ENABLED(CONFIG_DRM_XE_DEBUG)
> +MODULE_PARM_DESC(guc_log_level, "GuC firmware logging level (0=disable, 1=normal, 2..5=verbose-levels [default=3])");
> +#else
> +MODULE_PARM_DESC(guc_log_level, "GuC firmware logging level (0=disable, 1=normal, 2..5=verbose-levels [default=1])");
> +#endif
>
> module_param_named_unsafe(guc_firmware_path, xe_modparam.guc_firmware_path, charp, 0400);
> MODULE_PARM_DESC(guc_firmware_path,
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 1/2] drm/xe/guc: Default log level to non-verbose
2025-06-12 18:21 ` John Harrison
@ 2025-06-12 18:29 ` Matthew Brost
0 siblings, 0 replies; 13+ messages in thread
From: Matthew Brost @ 2025-06-12 18:29 UTC (permalink / raw)
To: John Harrison; +Cc: Lucas De Marchi, intel-xe, Michal Mrozek
On Thu, Jun 12, 2025 at 11:21:38AM -0700, John Harrison wrote:
> On 6/12/2025 11:05 AM, Lucas De Marchi wrote:
> > Currently xe sets the guc log level to a verbose level since it's useful
> > to debug hangs and general development. However the verbose level may
> > already be too much and affect performance.
> >
> > Michal Mrozek did some tests with the L0 compute stack for submission
> > latency with ULLS disabled. Below are the normalized numbers with log
> > level 3 (the current default) as baseline for each test:
> >
> > Test \ Log Level 3 0 1 2
> > ----------------------------------------------------------- ------ ------ ------ ------
> > BestWalkerNthCommandListSubmission(CmdListCount=2) 1.00 0.63 0.63 0.96
> > BestWalkerNthSubmission(KernelCount=2) 1.00 0.62 0.63 0.96
> > BestWalkerNthSubmissionImmediate(KernelCount=2) 1.00 0.58 0.58 0.85
> > BestWalkerSubmission 1.00 0.62 0.62 0.96
> > BestWalkerSubmissionImmediate 1.00 0.63 0.62 0.96
> > BestWalkerSubmissionImmediateMultiCmdlists(cmdlistCount=2) 1.00 0.58 0.58 0.86
> > BestWalkerSubmissionImmediateMultiCmdlists(cmdlistCount=4) 1.00 0.70 0.70 0.83
> > BestWalkerSubmissionImmediateMultiCmdlists(cmdlistCount=8) 1.00 0.53 0.52 0.78
> >
> > Log level 2 is the first "verbose level" for GuC, where the biggest
> > difference happens. Keep log level 3 for CONFIG_DRM_XE_DEBUG, but switch
> > to 1, i.e. GUC_LOG_LEVEL_NON_VERBOSE, for "normal" builds.
> Note that this performance is understood, although it was not realised quite
> how much of a hit it was on this benchmark. The impact comes from logging
> around context switches. The logging adds a few microseconds to the context
> switch time. In general, this is not noticeable as the context switch time
> is negligible compared to the runtime for the workload itself. However, I'm
> guessing from the name that this benchmark is specifically measuring context
> switch performance with empty workloads. Thus it is the pathological worst
> case scenario with regards to the impact of the logging.
>
> Anyway, not logging in release builds is generally a good idea and better
> benchmark scores are always good :).
>
FWIW, a page fault benchmark from compute showed 15us better latency
without GuC logging in my testing. That involves context switches,
multiple H2G + G2H, and the page fault service. Pagefaults are certainly
a case we'd like to speed up.
Matt
> Reviewed-by: John Harrison <John.C.Harrison@Intel.com>
>
> >
> > Cc: Michal Mrozek <michal.mrozek@intel.com>
> > Cc: John Harrison <John.C.Harrison@Intel.com>
> > Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
> > ---
> > drivers/gpu/drm/xe/xe_module.c | 2 +-
> > 1 file changed, 1 insertion(+), 1 deletion(-)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_module.c b/drivers/gpu/drm/xe/xe_module.c
> > index 1c4dfafbcd0bc..4809afa7ce3f9 100644
> > --- a/drivers/gpu/drm/xe/xe_module.c
> > +++ b/drivers/gpu/drm/xe/xe_module.c
> > @@ -20,7 +20,7 @@
> > struct xe_modparam xe_modparam = {
> > .probe_display = true,
> > - .guc_log_level = 3,
> > + .guc_log_level = IS_ENABLED(CONFIG_DRM_XE_DEBUG) ? 3 : 1,
> > .force_probe = CONFIG_DRM_XE_FORCE_PROBE,
> > #ifdef CONFIG_PCI_IOV
> > .max_vfs = IS_ENABLED(CONFIG_DRM_XE_DEBUG) ? ~0 : 0,
> >
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 1/2] drm/xe/guc: Default log level to non-verbose
2025-06-12 18:26 ` John Harrison
@ 2025-06-12 18:35 ` Matthew Brost
0 siblings, 0 replies; 13+ messages in thread
From: Matthew Brost @ 2025-06-12 18:35 UTC (permalink / raw)
To: John Harrison; +Cc: Lucas De Marchi, intel-xe, Michal Mrozek
On Thu, Jun 12, 2025 at 11:26:08AM -0700, John Harrison wrote:
> On 6/12/2025 11:21 AM, Matthew Brost wrote:
> > On Thu, Jun 12, 2025 at 11:05:32AM -0700, Lucas De Marchi wrote:
> > > Currently xe sets the guc log level to a verbose level since it's useful
> > > to debug hangs and general development. However the verbose level may
> > > already be too much and affect performance.
> > >
> > > Michal Mrozek did some tests with the L0 compute stack for submission
> > > latency with ULLS disabled. Below are the normalized numbers with log
> > > level 3 (the current default) as baseline for each test:
> > >
> > > Test \ Log Level 3 0 1 2
> > > ----------------------------------------------------------- ------ ------ ------ ------
> > > BestWalkerNthCommandListSubmission(CmdListCount=2) 1.00 0.63 0.63 0.96
> > > BestWalkerNthSubmission(KernelCount=2) 1.00 0.62 0.63 0.96
> > > BestWalkerNthSubmissionImmediate(KernelCount=2) 1.00 0.58 0.58 0.85
> > > BestWalkerSubmission 1.00 0.62 0.62 0.96
> > > BestWalkerSubmissionImmediate 1.00 0.63 0.62 0.96
> > > BestWalkerSubmissionImmediateMultiCmdlists(cmdlistCount=2) 1.00 0.58 0.58 0.86
> > > BestWalkerSubmissionImmediateMultiCmdlists(cmdlistCount=4) 1.00 0.70 0.70 0.83
> > > BestWalkerSubmissionImmediateMultiCmdlists(cmdlistCount=8) 1.00 0.53 0.52 0.78
> > >
> > > Log level 2 is the first "verbose level" for GuC, where the biggest
> > > difference happens. Keep log level 3 for CONFIG_DRM_XE_DEBUG, but switch
> > > to 1, i.e. GUC_LOG_LEVEL_NON_VERBOSE, for "normal" builds.
> > >
> > For series in general, I think this is a good idea - no need to slow
> > down performance for customers.
> >
> > Downside is devcoredump from customers are going to have less
> > information. I'm wondering if the GuC log level is low, if we should
> > print something in devcoredump indicating this, and instructions on how
> We already include the log level in the GuC info section of the core dump
> (and the debugfs dump), I thought?
>
Yes, GuC log level is in there.
> And note that the minimum log level is meant to include the really important
> logs. It certainly isn't as complete as higher levels but it is hopefully
> enough to give us a first thought of what is going on. And if we need more
> then it is easy to add a comment to the bug report saying 'please re-run
> with this extra setting'.
>
Sure. Typically for really difficult problems you need ftrace (which is
not available either) in addition to the verbose GuC logs to really
figure out what went sideways. I guess I'd hope customers are not
hitting those types of bugs too.
Matt
> John.
>
> > to turn up the GuC log level for filing verbose bug reports? e.g., A
> > similar message to what we print in xe_device_declare_wedged?
> >
> > Matt
> >
> > > Cc: Michal Mrozek <michal.mrozek@intel.com>
> > > Cc: John Harrison <John.C.Harrison@Intel.com>
> > > Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
> > > ---
> > > drivers/gpu/drm/xe/xe_module.c | 2 +-
> > > 1 file changed, 1 insertion(+), 1 deletion(-)
> > >
> > > diff --git a/drivers/gpu/drm/xe/xe_module.c b/drivers/gpu/drm/xe/xe_module.c
> > > index 1c4dfafbcd0bc..4809afa7ce3f9 100644
> > > --- a/drivers/gpu/drm/xe/xe_module.c
> > > +++ b/drivers/gpu/drm/xe/xe_module.c
> > > @@ -20,7 +20,7 @@
> > > struct xe_modparam xe_modparam = {
> > > .probe_display = true,
> > > - .guc_log_level = 3,
> > > + .guc_log_level = IS_ENABLED(CONFIG_DRM_XE_DEBUG) ? 3 : 1,
> > > .force_probe = CONFIG_DRM_XE_FORCE_PROBE,
> > > #ifdef CONFIG_PCI_IOV
> > > .max_vfs = IS_ENABLED(CONFIG_DRM_XE_DEBUG) ? ~0 : 0,
> > >
> > > --
> > > 2.49.0
> > >
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ CI.checkpatch: warning for drm/xe: Tweak default GuC log level
2025-06-12 18:05 [PATCH 0/2] drm/xe: Tweak default GuC log level Lucas De Marchi
2025-06-12 18:05 ` [PATCH 1/2] drm/xe/guc: Default log level to non-verbose Lucas De Marchi
2025-06-12 18:05 ` [PATCH 2/2] drm/xe: Annotate default for guc_log_level param Lucas De Marchi
@ 2025-06-12 23:32 ` Patchwork
2025-06-12 23:34 ` ✓ CI.KUnit: success " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-06-12 23:32 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Tweak default GuC log level
URL : https://patchwork.freedesktop.org/series/150183/
State : warning
== Summary ==
+ KERNEL=/kernel
+ git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt
Cloning into 'mt'...
warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/
+ git -C mt rev-list -n1 origin/master
202708c00696422fd217223bb679a353a5936e23
+ cd /kernel
+ git config --global --add safe.directory /kernel
+ git log -n1
commit 22ed2c32e10f8d7bf6d11b179a94e1f69893b385
Author: Lucas De Marchi <lucas.demarchi@intel.com>
Date: Thu Jun 12 11:05:33 2025 -0700
drm/xe: Annotate default for guc_log_level param
Reword the parameter description so it's clear what's the default and
what are the verbose levels.
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Reviewed-by: John Harrison <John.C.Harrison@Intel.com>
+ /mt/dim checkpatch 1eb0e9ebd86a603c0d83e641c5e543606d175bc6 drm-intel
61cecb3bfb10 drm/xe/guc: Default log level to non-verbose
-:14: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?)
#14:
Test \ Log Level 3 0 1 2
total: 0 errors, 1 warnings, 0 checks, 8 lines checked
22ed2c32e10f drm/xe: Annotate default for guc_log_level param
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ CI.KUnit: success for drm/xe: Tweak default GuC log level
2025-06-12 18:05 [PATCH 0/2] drm/xe: Tweak default GuC log level Lucas De Marchi
` (2 preceding siblings ...)
2025-06-12 23:32 ` ✗ CI.checkpatch: warning for drm/xe: Tweak default GuC log level Patchwork
@ 2025-06-12 23:34 ` Patchwork
2025-06-13 1:02 ` ✓ Xe.CI.BAT: " Patchwork
2025-06-13 20:00 ` ✗ Xe.CI.Full: failure " Patchwork
5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-06-12 23:34 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Tweak default GuC log level
URL : https://patchwork.freedesktop.org/series/150183/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[23:32:54] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:32:58] 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=25
[23:33:32] Starting KUnit Kernel (1/1)...
[23:33:32] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:33:33] ================== guc_buf (11 subtests) ===================
[23:33:33] [PASSED] test_smallest
[23:33:33] [PASSED] test_largest
[23:33:33] [PASSED] test_granular
[23:33:33] [PASSED] test_unique
[23:33:33] [PASSED] test_overlap
[23:33:33] [PASSED] test_reusable
[23:33:33] [PASSED] test_too_big
[23:33:33] [PASSED] test_flush
[23:33:33] [PASSED] test_lookup
[23:33:33] [PASSED] test_data
[23:33:33] [PASSED] test_class
[23:33:33] ===================== [PASSED] guc_buf =====================
[23:33:33] =================== guc_dbm (7 subtests) ===================
[23:33:33] [PASSED] test_empty
[23:33:33] [PASSED] test_default
[23:33:33] ======================== test_size ========================
[23:33:33] [PASSED] 4
[23:33:33] [PASSED] 8
[23:33:33] [PASSED] 32
[23:33:33] [PASSED] 256
[23:33:33] ==================== [PASSED] test_size ====================
[23:33:33] ======================= test_reuse ========================
[23:33:33] [PASSED] 4
[23:33:33] [PASSED] 8
[23:33:33] [PASSED] 32
[23:33:33] [PASSED] 256
[23:33:33] =================== [PASSED] test_reuse ====================
[23:33:33] =================== test_range_overlap ====================
[23:33:33] [PASSED] 4
[23:33:33] [PASSED] 8
[23:33:33] [PASSED] 32
[23:33:33] [PASSED] 256
[23:33:33] =============== [PASSED] test_range_overlap ================
[23:33:33] =================== test_range_compact ====================
[23:33:33] [PASSED] 4
[23:33:33] [PASSED] 8
[23:33:33] [PASSED] 32
[23:33:33] [PASSED] 256
[23:33:33] =============== [PASSED] test_range_compact ================
[23:33:33] ==================== test_range_spare =====================
[23:33:33] [PASSED] 4
[23:33:33] [PASSED] 8
[23:33:33] [PASSED] 32
[23:33:33] [PASSED] 256
[23:33:33] ================ [PASSED] test_range_spare =================
[23:33:33] ===================== [PASSED] guc_dbm =====================
[23:33:33] =================== guc_idm (6 subtests) ===================
[23:33:33] [PASSED] bad_init
[23:33:33] [PASSED] no_init
[23:33:33] [PASSED] init_fini
[23:33:33] [PASSED] check_used
[23:33:33] [PASSED] check_quota
[23:33:33] [PASSED] check_all
[23:33:33] ===================== [PASSED] guc_idm =====================
[23:33:33] ================== no_relay (3 subtests) ===================
[23:33:33] [PASSED] xe_drops_guc2pf_if_not_ready
[23:33:33] [PASSED] xe_drops_guc2vf_if_not_ready
[23:33:33] [PASSED] xe_rejects_send_if_not_ready
[23:33:33] ==================== [PASSED] no_relay =====================
[23:33:33] ================== pf_relay (14 subtests) ==================
[23:33:33] [PASSED] pf_rejects_guc2pf_too_short
[23:33:33] [PASSED] pf_rejects_guc2pf_too_long
[23:33:33] [PASSED] pf_rejects_guc2pf_no_payload
[23:33:33] [PASSED] pf_fails_no_payload
[23:33:33] [PASSED] pf_fails_bad_origin
[23:33:33] [PASSED] pf_fails_bad_type
[23:33:33] [PASSED] pf_txn_reports_error
[23:33:33] [PASSED] pf_txn_sends_pf2guc
[23:33:33] [PASSED] pf_sends_pf2guc
[23:33:33] [SKIPPED] pf_loopback_nop
[23:33:33] [SKIPPED] pf_loopback_echo
[23:33:33] [SKIPPED] pf_loopback_fail
[23:33:33] [SKIPPED] pf_loopback_busy
[23:33:33] [SKIPPED] pf_loopback_retry
[23:33:33] ==================== [PASSED] pf_relay =====================
[23:33:33] ================== vf_relay (3 subtests) ===================
[23:33:33] [PASSED] vf_rejects_guc2vf_too_short
[23:33:33] [PASSED] vf_rejects_guc2vf_too_long
[23:33:33] [PASSED] vf_rejects_guc2vf_no_payload
[23:33:33] ==================== [PASSED] vf_relay =====================
[23:33:33] ================= pf_service (11 subtests) =================
[23:33:33] [PASSED] pf_negotiate_any
[23:33:33] [PASSED] pf_negotiate_base_match
[23:33:33] [PASSED] pf_negotiate_base_newer
[23:33:33] [PASSED] pf_negotiate_base_next
[23:33:33] [SKIPPED] pf_negotiate_base_older
[23:33:33] [PASSED] pf_negotiate_base_prev
[23:33:33] [PASSED] pf_negotiate_latest_match
[23:33:33] [PASSED] pf_negotiate_latest_newer
[23:33:33] [PASSED] pf_negotiate_latest_next
[23:33:33] [SKIPPED] pf_negotiate_latest_older
[23:33:33] [SKIPPED] pf_negotiate_latest_prev
[23:33:33] =================== [PASSED] pf_service ====================
[23:33:33] ===================== lmtt (1 subtest) =====================
[23:33:33] ======================== test_ops =========================
[23:33:33] [PASSED] 2-level
[23:33:33] [PASSED] multi-level
[23:33:33] ==================== [PASSED] test_ops =====================
[23:33:33] ====================== [PASSED] lmtt =======================
[23:33:33] =================== xe_mocs (2 subtests) ===================
[23:33:33] ================ xe_live_mocs_kernel_kunit ================
[23:33:33] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[23:33:33] ================ xe_live_mocs_reset_kunit =================
[23:33:33] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[23:33:33] ==================== [SKIPPED] xe_mocs =====================
[23:33:33] ================= xe_migrate (2 subtests) ==================
[23:33:33] ================= xe_migrate_sanity_kunit =================
[23:33:33] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[23:33:33] ================== xe_validate_ccs_kunit ==================
[23:33:33] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[23:33:33] =================== [SKIPPED] xe_migrate ===================
[23:33:33] ================== xe_dma_buf (1 subtest) ==================
[23:33:33] ==================== xe_dma_buf_kunit =====================
[23:33:33] ================ [SKIPPED] xe_dma_buf_kunit ================
[23:33:33] =================== [SKIPPED] xe_dma_buf ===================
[23:33:33] ================= xe_bo_shrink (1 subtest) =================
[23:33:33] =================== xe_bo_shrink_kunit ====================
[23:33:33] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[23:33:33] ================== [SKIPPED] xe_bo_shrink ==================
[23:33:33] ==================== xe_bo (2 subtests) ====================
[23:33:33] ================== xe_ccs_migrate_kunit ===================
[23:33:33] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[23:33:33] ==================== xe_bo_evict_kunit ====================
[23:33:33] =============== [SKIPPED] xe_bo_evict_kunit ================
[23:33:33] ===================== [SKIPPED] xe_bo ======================
[23:33:33] ==================== args (11 subtests) ====================
[23:33:33] [PASSED] count_args_test
[23:33:33] [PASSED] call_args_example
[23:33:33] [PASSED] call_args_test
[23:33:33] [PASSED] drop_first_arg_example
[23:33:33] [PASSED] drop_first_arg_test
[23:33:33] [PASSED] first_arg_example
[23:33:33] [PASSED] first_arg_test
[23:33:33] [PASSED] last_arg_example
[23:33:33] [PASSED] last_arg_test
[23:33:33] [PASSED] pick_arg_example
[23:33:33] [PASSED] sep_comma_example
[23:33:33] ====================== [PASSED] args =======================
[23:33:33] =================== xe_pci (2 subtests) ====================
[23:33:33] [PASSED] xe_gmdid_graphics_ip
[23:33:33] [PASSED] xe_gmdid_media_ip
[23:33:33] ===================== [PASSED] xe_pci ======================
[23:33:33] =================== xe_rtp (2 subtests) ====================
[23:33:33] =============== xe_rtp_process_to_sr_tests ================
[23:33:33] [PASSED] coalesce-same-reg
[23:33:33] [PASSED] no-match-no-add
[23:33:33] [PASSED] match-or
[23:33:33] [PASSED] match-or-xfail
[23:33:33] [PASSED] no-match-no-add-multiple-rules
[23:33:33] [PASSED] two-regs-two-entries
[23:33:33] [PASSED] clr-one-set-other
[23:33:33] [PASSED] set-field
[23:33:33] [PASSED] conflict-duplicate
[23:33:33] [PASSED] conflict-not-disjoint
stty: 'standard input': Inappropriate ioctl for device
[23:33:33] [PASSED] conflict-reg-type
[23:33:33] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[23:33:33] ================== xe_rtp_process_tests ===================
[23:33:33] [PASSED] active1
[23:33:33] [PASSED] active2
[23:33:33] [PASSED] active-inactive
[23:33:33] [PASSED] inactive-active
[23:33:33] [PASSED] inactive-1st_or_active-inactive
[23:33:33] [PASSED] inactive-2nd_or_active-inactive
[23:33:33] [PASSED] inactive-last_or_active-inactive
[23:33:33] [PASSED] inactive-no_or_active-inactive
[23:33:33] ============== [PASSED] xe_rtp_process_tests ===============
[23:33:33] ===================== [PASSED] xe_rtp ======================
[23:33:33] ==================== xe_wa (1 subtest) =====================
[23:33:33] ======================== xe_wa_gt =========================
[23:33:33] [PASSED] TIGERLAKE (B0)
[23:33:33] [PASSED] DG1 (A0)
[23:33:33] [PASSED] DG1 (B0)
[23:33:33] [PASSED] ALDERLAKE_S (A0)
[23:33:33] [PASSED] ALDERLAKE_S (B0)
[23:33:33] [PASSED] ALDERLAKE_S (C0)
[23:33:33] [PASSED] ALDERLAKE_S (D0)
[23:33:33] [PASSED] ALDERLAKE_P (A0)
[23:33:33] [PASSED] ALDERLAKE_P (B0)
[23:33:33] [PASSED] ALDERLAKE_P (C0)
[23:33:33] [PASSED] ALDERLAKE_S_RPLS (D0)
[23:33:33] [PASSED] ALDERLAKE_P_RPLU (E0)
[23:33:33] [PASSED] DG2_G10 (C0)
[23:33:33] [PASSED] DG2_G11 (B1)
[23:33:33] [PASSED] DG2_G12 (A1)
[23:33:33] [PASSED] METEORLAKE (g:A0, m:A0)
[23:33:33] [PASSED] METEORLAKE (g:A0, m:A0)
[23:33:33] [PASSED] METEORLAKE (g:A0, m:A0)
[23:33:33] [PASSED] LUNARLAKE (g:A0, m:A0)
[23:33:33] [PASSED] LUNARLAKE (g:B0, m:A0)
[23:33:33] [PASSED] BATTLEMAGE (g:A0, m:A1)
[23:33:33] ==================== [PASSED] xe_wa_gt =====================
[23:33:33] ====================== [PASSED] xe_wa ======================
[23:33:33] ============================================================
[23:33:33] Testing complete. Ran 133 tests: passed: 117, skipped: 16
[23:33:33] Elapsed time: 38.993s total, 4.288s configuring, 34.338s building, 0.316s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[23:33:33] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:33:35] 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=25
[23:34:01] Starting KUnit Kernel (1/1)...
[23:34:01] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:34:01] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[23:34:01] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[23:34:01] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[23:34:01] =========== drm_validate_clone_mode (2 subtests) ===========
[23:34:01] ============== drm_test_check_in_clone_mode ===============
[23:34:01] [PASSED] in_clone_mode
[23:34:01] [PASSED] not_in_clone_mode
[23:34:01] ========== [PASSED] drm_test_check_in_clone_mode ===========
[23:34:01] =============== drm_test_check_valid_clones ===============
[23:34:01] [PASSED] not_in_clone_mode
[23:34:01] [PASSED] valid_clone
[23:34:01] [PASSED] invalid_clone
[23:34:01] =========== [PASSED] drm_test_check_valid_clones ===========
[23:34:01] ============= [PASSED] drm_validate_clone_mode =============
[23:34:01] ============= drm_validate_modeset (1 subtest) =============
[23:34:01] [PASSED] drm_test_check_connector_changed_modeset
[23:34:01] ============== [PASSED] drm_validate_modeset ===============
[23:34:01] ====== drm_test_bridge_get_current_state (2 subtests) ======
[23:34:01] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[23:34:01] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[23:34:01] ======== [PASSED] drm_test_bridge_get_current_state ========
[23:34:01] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[23:34:01] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[23:34:01] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[23:34:01] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[23:34:01] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[23:34:01] ============== drm_bridge_alloc (2 subtests) ===============
[23:34:01] [PASSED] drm_test_drm_bridge_alloc_basic
[23:34:01] [PASSED] drm_test_drm_bridge_alloc_get_put
[23:34:01] ================ [PASSED] drm_bridge_alloc =================
[23:34:01] ================== drm_buddy (7 subtests) ==================
[23:34:01] [PASSED] drm_test_buddy_alloc_limit
[23:34:01] [PASSED] drm_test_buddy_alloc_optimistic
[23:34:01] [PASSED] drm_test_buddy_alloc_pessimistic
[23:34:01] [PASSED] drm_test_buddy_alloc_pathological
[23:34:01] [PASSED] drm_test_buddy_alloc_contiguous
[23:34:01] [PASSED] drm_test_buddy_alloc_clear
[23:34:01] [PASSED] drm_test_buddy_alloc_range_bias
[23:34:01] ==================== [PASSED] drm_buddy ====================
[23:34:01] ============= drm_cmdline_parser (40 subtests) =============
[23:34:01] [PASSED] drm_test_cmdline_force_d_only
[23:34:01] [PASSED] drm_test_cmdline_force_D_only_dvi
[23:34:01] [PASSED] drm_test_cmdline_force_D_only_hdmi
[23:34:01] [PASSED] drm_test_cmdline_force_D_only_not_digital
[23:34:01] [PASSED] drm_test_cmdline_force_e_only
[23:34:01] [PASSED] drm_test_cmdline_res
[23:34:01] [PASSED] drm_test_cmdline_res_vesa
[23:34:01] [PASSED] drm_test_cmdline_res_vesa_rblank
[23:34:01] [PASSED] drm_test_cmdline_res_rblank
[23:34:01] [PASSED] drm_test_cmdline_res_bpp
[23:34:01] [PASSED] drm_test_cmdline_res_refresh
[23:34:01] [PASSED] drm_test_cmdline_res_bpp_refresh
[23:34:01] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[23:34:01] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[23:34:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[23:34:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[23:34:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[23:34:01] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[23:34:01] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[23:34:01] [PASSED] drm_test_cmdline_res_margins_force_on
[23:34:01] [PASSED] drm_test_cmdline_res_vesa_margins
[23:34:01] [PASSED] drm_test_cmdline_name
[23:34:01] [PASSED] drm_test_cmdline_name_bpp
[23:34:01] [PASSED] drm_test_cmdline_name_option
[23:34:01] [PASSED] drm_test_cmdline_name_bpp_option
[23:34:01] [PASSED] drm_test_cmdline_rotate_0
[23:34:01] [PASSED] drm_test_cmdline_rotate_90
[23:34:01] [PASSED] drm_test_cmdline_rotate_180
[23:34:01] [PASSED] drm_test_cmdline_rotate_270
[23:34:01] [PASSED] drm_test_cmdline_hmirror
[23:34:01] [PASSED] drm_test_cmdline_vmirror
[23:34:01] [PASSED] drm_test_cmdline_margin_options
[23:34:01] [PASSED] drm_test_cmdline_multiple_options
[23:34:01] [PASSED] drm_test_cmdline_bpp_extra_and_option
[23:34:01] [PASSED] drm_test_cmdline_extra_and_option
[23:34:01] [PASSED] drm_test_cmdline_freestanding_options
[23:34:01] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[23:34:01] [PASSED] drm_test_cmdline_panel_orientation
[23:34:01] ================ drm_test_cmdline_invalid =================
[23:34:01] [PASSED] margin_only
[23:34:01] [PASSED] interlace_only
[23:34:01] [PASSED] res_missing_x
[23:34:01] [PASSED] res_missing_y
[23:34:01] [PASSED] res_bad_y
[23:34:01] [PASSED] res_missing_y_bpp
[23:34:01] [PASSED] res_bad_bpp
[23:34:01] [PASSED] res_bad_refresh
[23:34:01] [PASSED] res_bpp_refresh_force_on_off
[23:34:01] [PASSED] res_invalid_mode
[23:34:01] [PASSED] res_bpp_wrong_place_mode
[23:34:01] [PASSED] name_bpp_refresh
[23:34:01] [PASSED] name_refresh
[23:34:01] [PASSED] name_refresh_wrong_mode
[23:34:01] [PASSED] name_refresh_invalid_mode
[23:34:01] [PASSED] rotate_multiple
[23:34:01] [PASSED] rotate_invalid_val
[23:34:01] [PASSED] rotate_truncated
[23:34:01] [PASSED] invalid_option
[23:34:01] [PASSED] invalid_tv_option
[23:34:01] [PASSED] truncated_tv_option
[23:34:01] ============ [PASSED] drm_test_cmdline_invalid =============
[23:34:01] =============== drm_test_cmdline_tv_options ===============
[23:34:01] [PASSED] NTSC
[23:34:01] [PASSED] NTSC_443
[23:34:01] [PASSED] NTSC_J
[23:34:01] [PASSED] PAL
[23:34:01] [PASSED] PAL_M
[23:34:01] [PASSED] PAL_N
[23:34:01] [PASSED] SECAM
[23:34:01] [PASSED] MONO_525
[23:34:01] [PASSED] MONO_625
[23:34:01] =========== [PASSED] drm_test_cmdline_tv_options ===========
[23:34:01] =============== [PASSED] drm_cmdline_parser ================
[23:34:01] ========== drmm_connector_hdmi_init (20 subtests) ==========
[23:34:01] [PASSED] drm_test_connector_hdmi_init_valid
[23:34:01] [PASSED] drm_test_connector_hdmi_init_bpc_8
[23:34:01] [PASSED] drm_test_connector_hdmi_init_bpc_10
[23:34:01] [PASSED] drm_test_connector_hdmi_init_bpc_12
[23:34:01] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[23:34:01] [PASSED] drm_test_connector_hdmi_init_bpc_null
[23:34:01] [PASSED] drm_test_connector_hdmi_init_formats_empty
[23:34:01] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[23:34:01] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[23:34:01] [PASSED] supported_formats=0x9 yuv420_allowed=1
[23:34:01] [PASSED] supported_formats=0x9 yuv420_allowed=0
[23:34:01] [PASSED] supported_formats=0x3 yuv420_allowed=1
[23:34:01] [PASSED] supported_formats=0x3 yuv420_allowed=0
[23:34:01] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[23:34:01] [PASSED] drm_test_connector_hdmi_init_null_ddc
[23:34:01] [PASSED] drm_test_connector_hdmi_init_null_product
[23:34:01] [PASSED] drm_test_connector_hdmi_init_null_vendor
[23:34:01] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[23:34:01] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[23:34:01] [PASSED] drm_test_connector_hdmi_init_product_valid
[23:34:01] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[23:34:01] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[23:34:01] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[23:34:01] ========= drm_test_connector_hdmi_init_type_valid =========
[23:34:01] [PASSED] HDMI-A
[23:34:01] [PASSED] HDMI-B
[23:34:01] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[23:34:01] ======== drm_test_connector_hdmi_init_type_invalid ========
[23:34:01] [PASSED] Unknown
[23:34:01] [PASSED] VGA
[23:34:01] [PASSED] DVI-I
[23:34:01] [PASSED] DVI-D
[23:34:01] [PASSED] DVI-A
[23:34:01] [PASSED] Composite
[23:34:01] [PASSED] SVIDEO
[23:34:01] [PASSED] LVDS
[23:34:01] [PASSED] Component
[23:34:01] [PASSED] DIN
[23:34:01] [PASSED] DP
[23:34:01] [PASSED] TV
[23:34:01] [PASSED] eDP
[23:34:01] [PASSED] Virtual
[23:34:01] [PASSED] DSI
[23:34:01] [PASSED] DPI
[23:34:01] [PASSED] Writeback
[23:34:01] [PASSED] SPI
[23:34:01] [PASSED] USB
[23:34:01] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[23:34:01] ============ [PASSED] drmm_connector_hdmi_init =============
[23:34:01] ============= drmm_connector_init (3 subtests) =============
[23:34:01] [PASSED] drm_test_drmm_connector_init
[23:34:01] [PASSED] drm_test_drmm_connector_init_null_ddc
[23:34:01] ========= drm_test_drmm_connector_init_type_valid =========
[23:34:01] [PASSED] Unknown
[23:34:01] [PASSED] VGA
[23:34:01] [PASSED] DVI-I
[23:34:01] [PASSED] DVI-D
[23:34:01] [PASSED] DVI-A
[23:34:01] [PASSED] Composite
[23:34:01] [PASSED] SVIDEO
[23:34:01] [PASSED] LVDS
[23:34:01] [PASSED] Component
[23:34:01] [PASSED] DIN
[23:34:01] [PASSED] DP
[23:34:01] [PASSED] HDMI-A
[23:34:01] [PASSED] HDMI-B
[23:34:01] [PASSED] TV
[23:34:01] [PASSED] eDP
[23:34:01] [PASSED] Virtual
[23:34:01] [PASSED] DSI
[23:34:01] [PASSED] DPI
[23:34:01] [PASSED] Writeback
[23:34:01] [PASSED] SPI
[23:34:01] [PASSED] USB
[23:34:01] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[23:34:01] =============== [PASSED] drmm_connector_init ===============
[23:34:01] ========= drm_connector_dynamic_init (6 subtests) ==========
[23:34:01] [PASSED] drm_test_drm_connector_dynamic_init
[23:34:01] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[23:34:01] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[23:34:01] [PASSED] drm_test_drm_connector_dynamic_init_properties
[23:34:01] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[23:34:01] [PASSED] Unknown
[23:34:01] [PASSED] VGA
[23:34:01] [PASSED] DVI-I
[23:34:01] [PASSED] DVI-D
[23:34:01] [PASSED] DVI-A
[23:34:01] [PASSED] Composite
[23:34:01] [PASSED] SVIDEO
[23:34:01] [PASSED] LVDS
[23:34:01] [PASSED] Component
[23:34:01] [PASSED] DIN
[23:34:01] [PASSED] DP
[23:34:01] [PASSED] HDMI-A
[23:34:01] [PASSED] HDMI-B
[23:34:01] [PASSED] TV
[23:34:01] [PASSED] eDP
[23:34:01] [PASSED] Virtual
[23:34:01] [PASSED] DSI
[23:34:01] [PASSED] DPI
[23:34:01] [PASSED] Writeback
[23:34:01] [PASSED] SPI
[23:34:01] [PASSED] USB
[23:34:01] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[23:34:01] ======== drm_test_drm_connector_dynamic_init_name =========
[23:34:01] [PASSED] Unknown
[23:34:01] [PASSED] VGA
[23:34:01] [PASSED] DVI-I
[23:34:01] [PASSED] DVI-D
[23:34:01] [PASSED] DVI-A
[23:34:01] [PASSED] Composite
[23:34:01] [PASSED] SVIDEO
[23:34:01] [PASSED] LVDS
[23:34:01] [PASSED] Component
[23:34:01] [PASSED] DIN
[23:34:01] [PASSED] DP
[23:34:01] [PASSED] HDMI-A
[23:34:01] [PASSED] HDMI-B
[23:34:01] [PASSED] TV
[23:34:01] [PASSED] eDP
[23:34:01] [PASSED] Virtual
[23:34:01] [PASSED] DSI
[23:34:01] [PASSED] DPI
[23:34:01] [PASSED] Writeback
[23:34:01] [PASSED] SPI
[23:34:01] [PASSED] USB
[23:34:01] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[23:34:01] =========== [PASSED] drm_connector_dynamic_init ============
[23:34:01] ==== drm_connector_dynamic_register_early (4 subtests) =====
[23:34:01] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[23:34:01] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[23:34:01] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[23:34:01] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[23:34:01] ====== [PASSED] drm_connector_dynamic_register_early =======
[23:34:01] ======= drm_connector_dynamic_register (7 subtests) ========
[23:34:01] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[23:34:01] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[23:34:01] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[23:34:01] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[23:34:01] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[23:34:01] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[23:34:01] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[23:34:01] ========= [PASSED] drm_connector_dynamic_register ==========
[23:34:01] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[23:34:01] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[23:34:01] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[23:34:01] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[23:34:01] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[23:34:01] ========== drm_test_get_tv_mode_from_name_valid ===========
[23:34:01] [PASSED] NTSC
[23:34:01] [PASSED] NTSC-443
[23:34:01] [PASSED] NTSC-J
[23:34:01] [PASSED] PAL
[23:34:01] [PASSED] PAL-M
[23:34:01] [PASSED] PAL-N
[23:34:01] [PASSED] SECAM
[23:34:01] [PASSED] Mono
[23:34:01] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[23:34:01] [PASSED] drm_test_get_tv_mode_from_name_truncated
[23:34:01] ============ [PASSED] drm_get_tv_mode_from_name ============
[23:34:01] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[23:34:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[23:34:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[23:34:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[23:34:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[23:34:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[23:34:01] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[23:34:01] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[23:34:01] [PASSED] VIC 96
[23:34:01] [PASSED] VIC 97
[23:34:01] [PASSED] VIC 101
[23:34:01] [PASSED] VIC 102
[23:34:01] [PASSED] VIC 106
[23:34:01] [PASSED] VIC 107
[23:34:01] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[23:34:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[23:34:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[23:34:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[23:34:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[23:34:01] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[23:34:01] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[23:34:01] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[23:34:01] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[23:34:01] [PASSED] Automatic
[23:34:01] [PASSED] Full
[23:34:01] [PASSED] Limited 16:235
[23:34:01] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[23:34:01] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[23:34:01] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[23:34:01] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[23:34:01] === drm_test_drm_hdmi_connector_get_output_format_name ====
[23:34:01] [PASSED] RGB
[23:34:01] [PASSED] YUV 4:2:0
[23:34:01] [PASSED] YUV 4:2:2
[23:34:01] [PASSED] YUV 4:4:4
[23:34:01] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[23:34:01] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[23:34:01] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[23:34:01] ============= drm_damage_helper (21 subtests) ==============
[23:34:01] [PASSED] drm_test_damage_iter_no_damage
[23:34:01] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[23:34:01] [PASSED] drm_test_damage_iter_no_damage_src_moved
[23:34:01] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[23:34:01] [PASSED] drm_test_damage_iter_no_damage_not_visible
[23:34:01] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[23:34:01] [PASSED] drm_test_damage_iter_no_damage_no_fb
[23:34:01] [PASSED] drm_test_damage_iter_simple_damage
[23:34:01] [PASSED] drm_test_damage_iter_single_damage
[23:34:01] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[23:34:01] [PASSED] drm_test_damage_iter_single_damage_outside_src
[23:34:01] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[23:34:01] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[23:34:01] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[23:34:01] [PASSED] drm_test_damage_iter_single_damage_src_moved
[23:34:01] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[23:34:01] [PASSED] drm_test_damage_iter_damage
[23:34:01] [PASSED] drm_test_damage_iter_damage_one_intersect
[23:34:01] [PASSED] drm_test_damage_iter_damage_one_outside
[23:34:01] [PASSED] drm_test_damage_iter_damage_src_moved
[23:34:01] [PASSED] drm_test_damage_iter_damage_not_visible
[23:34:01] ================ [PASSED] drm_damage_helper ================
[23:34:01] ============== drm_dp_mst_helper (3 subtests) ==============
[23:34:01] ============== drm_test_dp_mst_calc_pbn_mode ==============
[23:34:01] [PASSED] Clock 154000 BPP 30 DSC disabled
[23:34:01] [PASSED] Clock 234000 BPP 30 DSC disabled
[23:34:01] [PASSED] Clock 297000 BPP 24 DSC disabled
[23:34:01] [PASSED] Clock 332880 BPP 24 DSC enabled
[23:34:01] [PASSED] Clock 324540 BPP 24 DSC enabled
[23:34:01] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[23:34:01] ============== drm_test_dp_mst_calc_pbn_div ===============
[23:34:01] [PASSED] Link rate 2000000 lane count 4
[23:34:01] [PASSED] Link rate 2000000 lane count 2
[23:34:01] [PASSED] Link rate 2000000 lane count 1
[23:34:01] [PASSED] Link rate 1350000 lane count 4
[23:34:01] [PASSED] Link rate 1350000 lane count 2
[23:34:01] [PASSED] Link rate 1350000 lane count 1
[23:34:01] [PASSED] Link rate 1000000 lane count 4
[23:34:01] [PASSED] Link rate 1000000 lane count 2
[23:34:01] [PASSED] Link rate 1000000 lane count 1
[23:34:01] [PASSED] Link rate 810000 lane count 4
[23:34:01] [PASSED] Link rate 810000 lane count 2
[23:34:01] [PASSED] Link rate 810000 lane count 1
[23:34:01] [PASSED] Link rate 540000 lane count 4
[23:34:01] [PASSED] Link rate 540000 lane count 2
[23:34:01] [PASSED] Link rate 540000 lane count 1
[23:34:01] [PASSED] Link rate 270000 lane count 4
[23:34:01] [PASSED] Link rate 270000 lane count 2
[23:34:01] [PASSED] Link rate 270000 lane count 1
[23:34:01] [PASSED] Link rate 162000 lane count 4
[23:34:01] [PASSED] Link rate 162000 lane count 2
[23:34:01] [PASSED] Link rate 162000 lane count 1
[23:34:01] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[23:34:01] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[23:34:01] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[23:34:01] [PASSED] DP_POWER_UP_PHY with port number
[23:34:01] [PASSED] DP_POWER_DOWN_PHY with port number
[23:34:01] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[23:34:01] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[23:34:01] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[23:34:01] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[23:34:01] [PASSED] DP_QUERY_PAYLOAD with port number
[23:34:01] [PASSED] DP_QUERY_PAYLOAD with VCPI
[23:34:01] [PASSED] DP_REMOTE_DPCD_READ with port number
[23:34:01] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[23:34:01] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[23:34:01] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[23:34:01] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[23:34:01] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[23:34:01] [PASSED] DP_REMOTE_I2C_READ with port number
[23:34:01] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[23:34:01] [PASSED] DP_REMOTE_I2C_READ with transactions array
[23:34:01] [PASSED] DP_REMOTE_I2C_WRITE with port number
[23:34:01] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[23:34:01] [PASSED] DP_REMOTE_I2C_WRITE with data array
[23:34:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[23:34:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[23:34:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[23:34:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[23:34:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[23:34:01] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[23:34:01] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[23:34:01] ================ [PASSED] drm_dp_mst_helper ================
[23:34:01] ================== drm_exec (7 subtests) ===================
[23:34:01] [PASSED] sanitycheck
[23:34:01] [PASSED] test_lock
[23:34:01] [PASSED] test_lock_unlock
[23:34:01] [PASSED] test_duplicates
[23:34:01] [PASSED] test_prepare
[23:34:01] [PASSED] test_prepare_array
[23:34:01] [PASSED] test_multiple_loops
[23:34:01] ==================== [PASSED] drm_exec =====================
[23:34:01] =========== drm_format_helper_test (18 subtests) ===========
[23:34:01] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[23:34:01] [PASSED] single_pixel_source_buffer
[23:34:01] [PASSED] single_pixel_clip_rectangle
[23:34:01] [PASSED] well_known_colors
[23:34:01] [PASSED] destination_pitch
[23:34:01] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[23:34:01] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[23:34:01] [PASSED] single_pixel_source_buffer
[23:34:01] [PASSED] single_pixel_clip_rectangle
[23:34:01] [PASSED] well_known_colors
[23:34:01] [PASSED] destination_pitch
[23:34:01] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[23:34:01] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[23:34:01] [PASSED] single_pixel_source_buffer
[23:34:01] [PASSED] single_pixel_clip_rectangle
[23:34:01] [PASSED] well_known_colors
[23:34:01] [PASSED] destination_pitch
[23:34:01] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[23:34:01] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[23:34:01] [PASSED] single_pixel_source_buffer
[23:34:01] [PASSED] single_pixel_clip_rectangle
[23:34:01] [PASSED] well_known_colors
[23:34:01] [PASSED] destination_pitch
[23:34:01] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[23:34:01] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[23:34:01] [PASSED] single_pixel_source_buffer
[23:34:01] [PASSED] single_pixel_clip_rectangle
[23:34:01] [PASSED] well_known_colors
[23:34:01] [PASSED] destination_pitch
[23:34:01] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[23:34:01] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[23:34:01] [PASSED] single_pixel_source_buffer
[23:34:01] [PASSED] single_pixel_clip_rectangle
[23:34:01] [PASSED] well_known_colors
[23:34:01] [PASSED] destination_pitch
[23:34:01] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[23:34:01] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[23:34:01] [PASSED] single_pixel_source_buffer
[23:34:01] [PASSED] single_pixel_clip_rectangle
[23:34:01] [PASSED] well_known_colors
[23:34:01] [PASSED] destination_pitch
[23:34:01] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[23:34:01] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[23:34:01] [PASSED] single_pixel_source_buffer
[23:34:01] [PASSED] single_pixel_clip_rectangle
[23:34:01] [PASSED] well_known_colors
[23:34:01] [PASSED] destination_pitch
[23:34:01] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[23:34:01] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[23:34:01] [PASSED] single_pixel_source_buffer
[23:34:01] [PASSED] single_pixel_clip_rectangle
[23:34:01] [PASSED] well_known_colors
[23:34:01] [PASSED] destination_pitch
[23:34:01] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[23:34:01] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[23:34:01] [PASSED] single_pixel_source_buffer
[23:34:01] [PASSED] single_pixel_clip_rectangle
[23:34:01] [PASSED] well_known_colors
[23:34:01] [PASSED] destination_pitch
[23:34:01] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[23:34:01] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[23:34:01] [PASSED] single_pixel_source_buffer
[23:34:01] [PASSED] single_pixel_clip_rectangle
[23:34:01] [PASSED] well_known_colors
[23:34:01] [PASSED] destination_pitch
[23:34:01] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[23:34:01] ============== drm_test_fb_xrgb8888_to_mono ===============
[23:34:01] [PASSED] single_pixel_source_buffer
[23:34:01] [PASSED] single_pixel_clip_rectangle
[23:34:01] [PASSED] well_known_colors
[23:34:01] [PASSED] destination_pitch
[23:34:01] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[23:34:01] ==================== drm_test_fb_swab =====================
[23:34:01] [PASSED] single_pixel_source_buffer
[23:34:01] [PASSED] single_pixel_clip_rectangle
[23:34:01] [PASSED] well_known_colors
[23:34:01] [PASSED] destination_pitch
[23:34:01] ================ [PASSED] drm_test_fb_swab =================
[23:34:01] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[23:34:01] [PASSED] single_pixel_source_buffer
[23:34:01] [PASSED] single_pixel_clip_rectangle
[23:34:01] [PASSED] well_known_colors
[23:34:01] [PASSED] destination_pitch
[23:34:01] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[23:34:01] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[23:34:01] [PASSED] single_pixel_source_buffer
[23:34:01] [PASSED] single_pixel_clip_rectangle
[23:34:01] [PASSED] well_known_colors
[23:34:01] [PASSED] destination_pitch
[23:34:01] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[23:34:01] ================= drm_test_fb_clip_offset =================
[23:34:01] [PASSED] pass through
[23:34:01] [PASSED] horizontal offset
[23:34:01] [PASSED] vertical offset
[23:34:01] [PASSED] horizontal and vertical offset
[23:34:01] [PASSED] horizontal offset (custom pitch)
[23:34:01] [PASSED] vertical offset (custom pitch)
[23:34:01] [PASSED] horizontal and vertical offset (custom pitch)
[23:34:01] ============= [PASSED] drm_test_fb_clip_offset =============
[23:34:01] ============== drm_test_fb_build_fourcc_list ==============
[23:34:01] [PASSED] no native formats
[23:34:01] [PASSED] XRGB8888 as native format
[23:34:01] [PASSED] remove duplicates
[23:34:01] [PASSED] convert alpha formats
[23:34:01] [PASSED] random formats
[23:34:01] ========== [PASSED] drm_test_fb_build_fourcc_list ==========
[23:34:01] =================== drm_test_fb_memcpy ====================
[23:34:01] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[23:34:01] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[23:34:01] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[23:34:01] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[23:34:01] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[23:34:01] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[23:34:01] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[23:34:01] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[23:34:01] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[23:34:01] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[23:34:01] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[23:34:01] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[23:34:01] =============== [PASSED] drm_test_fb_memcpy ================
[23:34:01] ============= [PASSED] drm_format_helper_test ==============
[23:34:01] ================= drm_format (18 subtests) =================
[23:34:01] [PASSED] drm_test_format_block_width_invalid
[23:34:01] [PASSED] drm_test_format_block_width_one_plane
[23:34:01] [PASSED] drm_test_format_block_width_two_plane
[23:34:01] [PASSED] drm_test_format_block_width_three_plane
[23:34:01] [PASSED] drm_test_format_block_width_tiled
[23:34:01] [PASSED] drm_test_format_block_height_invalid
[23:34:01] [PASSED] drm_test_format_block_height_one_plane
[23:34:01] [PASSED] drm_test_format_block_height_two_plane
[23:34:01] [PASSED] drm_test_format_block_height_three_plane
[23:34:01] [PASSED] drm_test_format_block_height_tiled
[23:34:01] [PASSED] drm_test_format_min_pitch_invalid
[23:34:01] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[23:34:01] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[23:34:01] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[23:34:01] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[23:34:01] [PASSED] drm_test_format_min_pitch_two_plane
[23:34:01] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[23:34:01] [PASSED] drm_test_format_min_pitch_tiled
[23:34:01] =================== [PASSED] drm_format ====================
[23:34:01] ============== drm_framebuffer (10 subtests) ===============
[23:34:01] ========== drm_test_framebuffer_check_src_coords ==========
[23:34:01] [PASSED] Success: source fits into fb
[23:34:01] [PASSED] Fail: overflowing fb with x-axis coordinate
[23:34:01] [PASSED] Fail: overflowing fb with y-axis coordinate
[23:34:01] [PASSED] Fail: overflowing fb with source width
[23:34:01] [PASSED] Fail: overflowing fb with source height
[23:34:01] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[23:34:01] [PASSED] drm_test_framebuffer_cleanup
[23:34:01] =============== drm_test_framebuffer_create ===============
[23:34:01] [PASSED] ABGR8888 normal sizes
[23:34:01] [PASSED] ABGR8888 max sizes
[23:34:01] [PASSED] ABGR8888 pitch greater than min required
[23:34:01] [PASSED] ABGR8888 pitch less than min required
[23:34:01] [PASSED] ABGR8888 Invalid width
[23:34:01] [PASSED] ABGR8888 Invalid buffer handle
[23:34:01] [PASSED] No pixel format
[23:34:01] [PASSED] ABGR8888 Width 0
[23:34:01] [PASSED] ABGR8888 Height 0
[23:34:01] [PASSED] ABGR8888 Out of bound height * pitch combination
[23:34:01] [PASSED] ABGR8888 Large buffer offset
[23:34:01] [PASSED] ABGR8888 Buffer offset for inexistent plane
[23:34:01] [PASSED] ABGR8888 Invalid flag
[23:34:01] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[23:34:01] [PASSED] ABGR8888 Valid buffer modifier
[23:34:01] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[23:34:01] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[23:34:01] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[23:34:01] [PASSED] NV12 Normal sizes
[23:34:01] [PASSED] NV12 Max sizes
[23:34:01] [PASSED] NV12 Invalid pitch
[23:34:01] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[23:34:01] [PASSED] NV12 different modifier per-plane
[23:34:01] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[23:34:01] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[23:34:01] [PASSED] NV12 Modifier for inexistent plane
[23:34:01] [PASSED] NV12 Handle for inexistent plane
[23:34:01] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[23:34:01] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[23:34:01] [PASSED] YVU420 Normal sizes
[23:34:01] [PASSED] YVU420 Max sizes
[23:34:01] [PASSED] YVU420 Invalid pitch
[23:34:01] [PASSED] YVU420 Different pitches
[23:34:01] [PASSED] YVU420 Different buffer offsets/pitches
[23:34:01] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[23:34:01] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[23:34:01] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[23:34:01] [PASSED] YVU420 Valid modifier
[23:34:01] [PASSED] YVU420 Different modifiers per plane
[23:34:01] [PASSED] YVU420 Modifier for inexistent plane
[23:34:01] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[23:34:01] [PASSED] X0L2 Normal sizes
[23:34:01] [PASSED] X0L2 Max sizes
[23:34:01] [PASSED] X0L2 Invalid pitch
[23:34:01] [PASSED] X0L2 Pitch greater than minimum required
[23:34:01] [PASSED] X0L2 Handle for inexistent plane
[23:34:01] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[23:34:01] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[23:34:01] [PASSED] X0L2 Valid modifier
[23:34:01] [PASSED] X0L2 Modifier for inexistent plane
[23:34:01] =========== [PASSED] drm_test_framebuffer_create ===========
[23:34:01] [PASSED] drm_test_framebuffer_free
[23:34:01] [PASSED] drm_test_framebuffer_init
[23:34:01] [PASSED] drm_test_framebuffer_init_bad_format
[23:34:01] [PASSED] drm_test_framebuffer_init_dev_mismatch
[23:34:01] [PASSED] drm_test_framebuffer_lookup
[23:34:01] [PASSED] drm_test_framebuffer_lookup_inexistent
[23:34:01] [PASSED] drm_test_framebuffer_modifiers_not_supported
[23:34:01] ================= [PASSED] drm_framebuffer =================
[23:34:01] ================ drm_gem_shmem (8 subtests) ================
[23:34:01] [PASSED] drm_gem_shmem_test_obj_create
[23:34:01] [PASSED] drm_gem_shmem_test_obj_create_private
[23:34:01] [PASSED] drm_gem_shmem_test_pin_pages
[23:34:01] [PASSED] drm_gem_shmem_test_vmap
[23:34:01] [PASSED] drm_gem_shmem_test_get_pages_sgt
[23:34:01] [PASSED] drm_gem_shmem_test_get_sg_table
[23:34:01] [PASSED] drm_gem_shmem_test_madvise
[23:34:01] [PASSED] drm_gem_shmem_test_purge
[23:34:01] ================== [PASSED] drm_gem_shmem ==================
[23:34:01] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[23:34:01] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[23:34:01] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[23:34:01] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[23:34:01] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[23:34:01] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[23:34:01] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[23:34:01] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[23:34:01] [PASSED] Automatic
[23:34:01] [PASSED] Full
[23:34:01] [PASSED] Limited 16:235
[23:34:01] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[23:34:01] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[23:34:01] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[23:34:01] [PASSED] drm_test_check_disable_connector
[23:34:01] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[23:34:01] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[23:34:01] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[23:34:01] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[23:34:01] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[23:34:01] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[23:34:01] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[23:34:01] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[23:34:01] [PASSED] drm_test_check_output_bpc_dvi
[23:34:01] [PASSED] drm_test_check_output_bpc_format_vic_1
[23:34:01] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[23:34:01] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[23:34:01] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[23:34:01] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[23:34:01] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[23:34:01] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[23:34:01] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[23:34:01] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[23:34:01] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[23:34:01] [PASSED] drm_test_check_broadcast_rgb_value
[23:34:01] [PASSED] drm_test_check_bpc_8_value
[23:34:01] [PASSED] drm_test_check_bpc_10_value
[23:34:01] [PASSED] drm_test_check_bpc_12_value
[23:34:01] [PASSED] drm_test_check_format_value
[23:34:01] [PASSED] drm_test_check_tmds_char_value
[23:34:01] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[23:34:01] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[23:34:01] [PASSED] drm_test_check_mode_valid
[23:34:01] [PASSED] drm_test_check_mode_valid_reject
[23:34:01] [PASSED] drm_test_check_mode_valid_reject_rate
[23:34:01] [PASSED] drm_test_check_mode_valid_reject_max_clock
[23:34:01] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[23:34:01] ================= drm_managed (2 subtests) =================
[23:34:01] [PASSED] drm_test_managed_release_action
[23:34:01] [PASSED] drm_test_managed_run_action
[23:34:01] =================== [PASSED] drm_managed ===================
[23:34:01] =================== drm_mm (6 subtests) ====================
[23:34:01] [PASSED] drm_test_mm_init
[23:34:01] [PASSED] drm_test_mm_debug
[23:34:01] [PASSED] drm_test_mm_align32
[23:34:01] [PASSED] drm_test_mm_align64
[23:34:01] [PASSED] drm_test_mm_lowest
[23:34:01] [PASSED] drm_test_mm_highest
[23:34:01] ===================== [PASSED] drm_mm ======================
[23:34:01] ============= drm_modes_analog_tv (5 subtests) =============
[23:34:01] [PASSED] drm_test_modes_analog_tv_mono_576i
[23:34:01] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[23:34:01] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[23:34:01] [PASSED] drm_test_modes_analog_tv_pal_576i
[23:34:01] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[23:34:01] =============== [PASSED] drm_modes_analog_tv ===============
[23:34:01] ============== drm_plane_helper (2 subtests) ===============
[23:34:01] =============== drm_test_check_plane_state ================
[23:34:01] [PASSED] clipping_simple
[23:34:01] [PASSED] clipping_rotate_reflect
[23:34:01] [PASSED] positioning_simple
[23:34:01] [PASSED] upscaling
[23:34:01] [PASSED] downscaling
[23:34:01] [PASSED] rounding1
[23:34:01] [PASSED] rounding2
[23:34:01] [PASSED] rounding3
[23:34:01] [PASSED] rounding4
[23:34:01] =========== [PASSED] drm_test_check_plane_state ============
[23:34:01] =========== drm_test_check_invalid_plane_state ============
[23:34:01] [PASSED] positioning_invalid
[23:34:01] [PASSED] upscaling_invalid
[23:34:01] [PASSED] downscaling_invalid
[23:34:01] ======= [PASSED] drm_test_check_invalid_plane_state ========
[23:34:01] ================ [PASSED] drm_plane_helper =================
[23:34:01] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[23:34:01] ====== drm_test_connector_helper_tv_get_modes_check =======
[23:34:01] [PASSED] None
[23:34:01] [PASSED] PAL
[23:34:01] [PASSED] NTSC
[23:34:01] [PASSED] Both, NTSC Default
[23:34:01] [PASSED] Both, PAL Default
[23:34:01] [PASSED] Both, NTSC Default, with PAL on command-line
[23:34:01] [PASSED] Both, PAL Default, with NTSC on command-line
[23:34:01] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[23:34:01] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[23:34:01] ================== drm_rect (9 subtests) ===================
[23:34:01] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[23:34:01] [PASSED] drm_test_rect_clip_scaled_not_clipped
[23:34:01] [PASSED] drm_test_rect_clip_scaled_clipped
[23:34:01] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[23:34:01] ================= drm_test_rect_intersect =================
[23:34:01] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[23:34:01] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[23:34:01] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[23:34:01] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[23:34:01] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[23:34:01] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[23:34:01] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[23:34:01] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[23:34:01] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[23:34:01] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[23:34:01] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[23:34:01] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[23:34:01] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[23:34:01] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[23:34:01] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[23:34:01] ============= [PASSED] drm_test_rect_intersect =============
[23:34:01] ================ drm_test_rect_calc_hscale ================
[23:34:01] [PASSED] normal use
[23:34:01] [PASSED] out of max range
[23:34:01] [PASSED] out of min range
[23:34:01] [PASSED] zero dst
[23:34:01] [PASSED] negative src
[23:34:01] [PASSED] negative dst
[23:34:01] ============ [PASSED] drm_test_rect_calc_hscale ============
[23:34:01] ================ drm_test_rect_calc_vscale ================
[23:34:01] [PASSED] normal use
[23:34:01] [PASSED] out of max range
[23:34:01] [PASSED] out of min range
[23:34:01] [PASSED] zero dst
[23:34:01] [PASSED] negative src
[23:34:01] [PASSED] negative dst
stty: 'standard input': Inappropriate ioctl for device
[23:34:01] ============ [PASSED] drm_test_rect_calc_vscale ============
[23:34:01] ================== drm_test_rect_rotate ===================
[23:34:01] [PASSED] reflect-x
[23:34:01] [PASSED] reflect-y
[23:34:01] [PASSED] rotate-0
[23:34:01] [PASSED] rotate-90
[23:34:01] [PASSED] rotate-180
[23:34:01] [PASSED] rotate-270
[23:34:01] ============== [PASSED] drm_test_rect_rotate ===============
[23:34:01] ================ drm_test_rect_rotate_inv =================
[23:34:01] [PASSED] reflect-x
[23:34:01] [PASSED] reflect-y
[23:34:01] [PASSED] rotate-0
[23:34:01] [PASSED] rotate-90
[23:34:01] [PASSED] rotate-180
[23:34:01] [PASSED] rotate-270
[23:34:01] ============ [PASSED] drm_test_rect_rotate_inv =============
[23:34:01] ==================== [PASSED] drm_rect =====================
[23:34:01] ============================================================
[23:34:01] Testing complete. Ran 616 tests: passed: 616
[23:34:01] Elapsed time: 28.354s total, 1.610s configuring, 26.527s building, 0.192s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[23:34:01] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:34:03] 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=25
[23:34:11] Starting KUnit Kernel (1/1)...
[23:34:11] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:34:11] ================= ttm_device (5 subtests) ==================
[23:34:11] [PASSED] ttm_device_init_basic
[23:34:11] [PASSED] ttm_device_init_multiple
[23:34:11] [PASSED] ttm_device_fini_basic
[23:34:11] [PASSED] ttm_device_init_no_vma_man
[23:34:11] ================== ttm_device_init_pools ==================
[23:34:11] [PASSED] No DMA allocations, no DMA32 required
[23:34:11] [PASSED] DMA allocations, DMA32 required
[23:34:11] [PASSED] No DMA allocations, DMA32 required
[23:34:11] [PASSED] DMA allocations, no DMA32 required
[23:34:11] ============== [PASSED] ttm_device_init_pools ==============
[23:34:11] =================== [PASSED] ttm_device ====================
[23:34:11] ================== ttm_pool (8 subtests) ===================
[23:34:11] ================== ttm_pool_alloc_basic ===================
[23:34:11] [PASSED] One page
[23:34:11] [PASSED] More than one page
[23:34:11] [PASSED] Above the allocation limit
[23:34:11] [PASSED] One page, with coherent DMA mappings enabled
[23:34:11] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[23:34:11] ============== [PASSED] ttm_pool_alloc_basic ===============
[23:34:11] ============== ttm_pool_alloc_basic_dma_addr ==============
[23:34:11] [PASSED] One page
[23:34:11] [PASSED] More than one page
[23:34:11] [PASSED] Above the allocation limit
[23:34:11] [PASSED] One page, with coherent DMA mappings enabled
[23:34:11] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[23:34:11] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[23:34:11] [PASSED] ttm_pool_alloc_order_caching_match
[23:34:11] [PASSED] ttm_pool_alloc_caching_mismatch
[23:34:11] [PASSED] ttm_pool_alloc_order_mismatch
[23:34:11] [PASSED] ttm_pool_free_dma_alloc
[23:34:11] [PASSED] ttm_pool_free_no_dma_alloc
[23:34:11] [PASSED] ttm_pool_fini_basic
[23:34:11] ==================== [PASSED] ttm_pool =====================
[23:34:11] ================ ttm_resource (8 subtests) =================
[23:34:11] ================= ttm_resource_init_basic =================
[23:34:11] [PASSED] Init resource in TTM_PL_SYSTEM
[23:34:11] [PASSED] Init resource in TTM_PL_VRAM
[23:34:11] [PASSED] Init resource in a private placement
[23:34:11] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[23:34:11] ============= [PASSED] ttm_resource_init_basic =============
[23:34:11] [PASSED] ttm_resource_init_pinned
[23:34:11] [PASSED] ttm_resource_fini_basic
[23:34:11] [PASSED] ttm_resource_manager_init_basic
[23:34:11] [PASSED] ttm_resource_manager_usage_basic
[23:34:11] [PASSED] ttm_resource_manager_set_used_basic
[23:34:11] [PASSED] ttm_sys_man_alloc_basic
[23:34:11] [PASSED] ttm_sys_man_free_basic
[23:34:11] ================== [PASSED] ttm_resource ===================
[23:34:11] =================== ttm_tt (15 subtests) ===================
[23:34:11] ==================== ttm_tt_init_basic ====================
[23:34:11] [PASSED] Page-aligned size
[23:34:11] [PASSED] Extra pages requested
[23:34:11] ================ [PASSED] ttm_tt_init_basic ================
[23:34:11] [PASSED] ttm_tt_init_misaligned
[23:34:11] [PASSED] ttm_tt_fini_basic
[23:34:11] [PASSED] ttm_tt_fini_sg
[23:34:11] [PASSED] ttm_tt_fini_shmem
[23:34:11] [PASSED] ttm_tt_create_basic
[23:34:11] [PASSED] ttm_tt_create_invalid_bo_type
[23:34:11] [PASSED] ttm_tt_create_ttm_exists
[23:34:11] [PASSED] ttm_tt_create_failed
[23:34:11] [PASSED] ttm_tt_destroy_basic
[23:34:11] [PASSED] ttm_tt_populate_null_ttm
[23:34:11] [PASSED] ttm_tt_populate_populated_ttm
[23:34:11] [PASSED] ttm_tt_unpopulate_basic
[23:34:11] [PASSED] ttm_tt_unpopulate_empty_ttm
[23:34:11] [PASSED] ttm_tt_swapin_basic
[23:34:11] ===================== [PASSED] ttm_tt ======================
[23:34:11] =================== ttm_bo (14 subtests) ===================
[23:34:11] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[23:34:11] [PASSED] Cannot be interrupted and sleeps
[23:34:11] [PASSED] Cannot be interrupted, locks straight away
[23:34:11] [PASSED] Can be interrupted, sleeps
[23:34:11] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[23:34:11] [PASSED] ttm_bo_reserve_locked_no_sleep
[23:34:11] [PASSED] ttm_bo_reserve_no_wait_ticket
[23:34:11] [PASSED] ttm_bo_reserve_double_resv
[23:34:11] [PASSED] ttm_bo_reserve_interrupted
[23:34:11] [PASSED] ttm_bo_reserve_deadlock
[23:34:11] [PASSED] ttm_bo_unreserve_basic
[23:34:11] [PASSED] ttm_bo_unreserve_pinned
[23:34:11] [PASSED] ttm_bo_unreserve_bulk
[23:34:11] [PASSED] ttm_bo_put_basic
[23:34:11] [PASSED] ttm_bo_put_shared_resv
[23:34:11] [PASSED] ttm_bo_pin_basic
[23:34:11] [PASSED] ttm_bo_pin_unpin_resource
[23:34:11] [PASSED] ttm_bo_multiple_pin_one_unpin
[23:34:11] ===================== [PASSED] ttm_bo ======================
[23:34:11] ============== ttm_bo_validate (22 subtests) ===============
[23:34:11] ============== ttm_bo_init_reserved_sys_man ===============
[23:34:11] [PASSED] Buffer object for userspace
[23:34:11] [PASSED] Kernel buffer object
[23:34:11] [PASSED] Shared buffer object
[23:34:11] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[23:34:11] ============== ttm_bo_init_reserved_mock_man ==============
[23:34:11] [PASSED] Buffer object for userspace
[23:34:11] [PASSED] Kernel buffer object
[23:34:11] [PASSED] Shared buffer object
[23:34:11] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[23:34:11] [PASSED] ttm_bo_init_reserved_resv
[23:34:11] ================== ttm_bo_validate_basic ==================
[23:34:11] [PASSED] Buffer object for userspace
[23:34:11] [PASSED] Kernel buffer object
[23:34:11] [PASSED] Shared buffer object
[23:34:11] ============== [PASSED] ttm_bo_validate_basic ==============
[23:34:11] [PASSED] ttm_bo_validate_invalid_placement
[23:34:11] ============= ttm_bo_validate_same_placement ==============
[23:34:11] [PASSED] System manager
[23:34:11] [PASSED] VRAM manager
[23:34:11] ========= [PASSED] ttm_bo_validate_same_placement ==========
[23:34:11] [PASSED] ttm_bo_validate_failed_alloc
[23:34:11] [PASSED] ttm_bo_validate_pinned
[23:34:11] [PASSED] ttm_bo_validate_busy_placement
[23:34:11] ================ ttm_bo_validate_multihop =================
[23:34:11] [PASSED] Buffer object for userspace
[23:34:11] [PASSED] Kernel buffer object
[23:34:11] [PASSED] Shared buffer object
[23:34:11] ============ [PASSED] ttm_bo_validate_multihop =============
[23:34:11] ========== ttm_bo_validate_no_placement_signaled ==========
[23:34:11] [PASSED] Buffer object in system domain, no page vector
[23:34:11] [PASSED] Buffer object in system domain with an existing page vector
[23:34:11] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[23:34:11] ======== ttm_bo_validate_no_placement_not_signaled ========
[23:34:11] [PASSED] Buffer object for userspace
[23:34:11] [PASSED] Kernel buffer object
[23:34:11] [PASSED] Shared buffer object
[23:34:11] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[23:34:11] [PASSED] ttm_bo_validate_move_fence_signaled
[23:34:11] ========= ttm_bo_validate_move_fence_not_signaled =========
[23:34:11] [PASSED] Waits for GPU
[23:34:11] [PASSED] Tries to lock straight away
[23:34:11] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[23:34:11] [PASSED] ttm_bo_validate_swapout
[23:34:11] [PASSED] ttm_bo_validate_happy_evict
[23:34:11] [PASSED] ttm_bo_validate_all_pinned_evict
[23:34:11] [PASSED] ttm_bo_validate_allowed_only_evict
[23:34:11] [PASSED] ttm_bo_validate_deleted_evict
[23:34:11] [PASSED] ttm_bo_validate_busy_domain_evict
[23:34:11] [PASSED] ttm_bo_validate_evict_gutting
[23:34:11] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[23:34:11] ================= [PASSED] ttm_bo_validate =================
[23:34:11] ============================================================
[23:34:11] Testing complete. Ran 102 tests: passed: 102
[23:34:11] Elapsed time: 9.968s total, 1.597s configuring, 7.704s building, 0.546s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe: Tweak default GuC log level
2025-06-12 18:05 [PATCH 0/2] drm/xe: Tweak default GuC log level Lucas De Marchi
` (3 preceding siblings ...)
2025-06-12 23:34 ` ✓ CI.KUnit: success " Patchwork
@ 2025-06-13 1:02 ` Patchwork
2025-06-13 20:00 ` ✗ Xe.CI.Full: failure " Patchwork
5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-06-13 1:02 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1085 bytes --]
== Series Details ==
Series: drm/xe: Tweak default GuC log level
URL : https://patchwork.freedesktop.org/series/150183/
State : success
== Summary ==
CI Bug Log - changes from xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2_BAT -> xe-pw-150183v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (7 -> 7)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8408 -> IGT_8409
* Linux: xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2 -> xe-pw-150183v1
IGT_8408: c034847bfe3d48c1d0d361dd44a0bc7cb276a31c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8409: 47d092f112d138977837666b161c97032c3446cd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2: aca8df1835568921d5f108fe9fd16b1d282a74b2
xe-pw-150183v1: 150183v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/index.html
[-- Attachment #2: Type: text/html, Size: 1647 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.Full: failure for drm/xe: Tweak default GuC log level
2025-06-12 18:05 [PATCH 0/2] drm/xe: Tweak default GuC log level Lucas De Marchi
` (4 preceding siblings ...)
2025-06-13 1:02 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-06-13 20:00 ` Patchwork
5 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-06-13 20:00 UTC (permalink / raw)
To: Lucas De Marchi; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 83676 bytes --]
== Series Details ==
Series: drm/xe: Tweak default GuC log level
URL : https://patchwork.freedesktop.org/series/150183/
State : failure
== Summary ==
CI Bug Log - changes from xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2_FULL -> xe-pw-150183v1_FULL
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with xe-pw-150183v1_FULL need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-150183v1_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-150183v1_FULL:
### IGT changes ###
#### Warnings ####
* igt@xe_configfs@survivability-mode:
- shard-dg2-set2: [SKIP][1] ([Intel XE#5084]) -> [SKIP][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-dg2-436/igt@xe_configfs@survivability-mode.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-435/igt@xe_configfs@survivability-mode.html
- shard-lnl: [SKIP][3] ([Intel XE#5084]) -> [SKIP][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-lnl-2/igt@xe_configfs@survivability-mode.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-4/igt@xe_configfs@survivability-mode.html
Known issues
------------
Here are the changes found in xe-pw-150183v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-read:
- shard-adlp: NOTRUN -> [SKIP][5] ([Intel XE#1125])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-6/igt@intel_hwmon@hwmon-read.html
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [PASS][6] -> [FAIL][7] ([Intel XE#4665])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-bmg-1/igt@intel_hwmon@hwmon-write.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-7/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2233])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#623])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-463/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1466])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-adlp: NOTRUN -> [SKIP][11] ([Intel XE#3157])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-dp-4-4-rc-ccs-cc:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#3767]) +15 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-464/igt@kms_async_flips@async-flip-with-page-flip-events-tiled@pipe-d-dp-4-4-rc-ccs-cc.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-adlp: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +16 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-adlp: NOTRUN -> [SKIP][14] ([Intel XE#316]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-9/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2327])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1407]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-8/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-0:
- shard-adlp: NOTRUN -> [DMESG-FAIL][17] ([Intel XE#4543]) +5 other tests dmesg-fail
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-1/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#619])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#607])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1477])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-adlp: [PASS][21] -> [DMESG-FAIL][22] ([Intel XE#4543]) +2 other tests dmesg-fail
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +9 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +3 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +6 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2191])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-3/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-adlp: NOTRUN -> [SKIP][27] ([Intel XE#2191]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-9/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#367])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-1/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-adlp: NOTRUN -> [SKIP][29] ([Intel XE#367]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-8/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-463/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-2/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2887]) +7 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-7/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-adlp: NOTRUN -> [SKIP][33] ([Intel XE#2907])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#787]) +41 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-464/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#2887]) +5 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [PASS][36] -> [INCOMPLETE][37] ([Intel XE#3862]) +1 other test incomplete
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#3432])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#3432])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][40] ([Intel XE#787]) +77 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#2907])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#2669]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs:
- shard-adlp: NOTRUN -> [SKIP][43] ([Intel XE#455] / [Intel XE#787]) +51 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [PASS][44] -> [INCOMPLETE][45] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) +1 other test incomplete
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][46] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4.html
* igt@kms_cdclk@mode-transition:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2724])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-6/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-adlp: NOTRUN -> [SKIP][48] ([Intel XE#306])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-4/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-adlp: NOTRUN -> [SKIP][49] ([Intel XE#373]) +9 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-6/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2252]) +7 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-5/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#373]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#373]) +7 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-8/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_content_protection@content-type-change:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2341])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-5/igt@kms_content_protection@content-type-change.html
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#5176])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-7/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@srm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][55] ([Intel XE#1178])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-5/igt@kms_content_protection@srm@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2320]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#308]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-435/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#2321]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2321]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#1424]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-8/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-adlp: NOTRUN -> [SKIP][61] ([Intel XE#308]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-4/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-bmg: [PASS][62] -> [SKIP][63] ([Intel XE#2291])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-adlp: NOTRUN -> [SKIP][64] ([Intel XE#309]) +4 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#309]) +3 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#323])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-433/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#323])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-adlp: NOTRUN -> [SKIP][68] ([Intel XE#323])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#4210])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-adlp: NOTRUN -> [SKIP][70] ([Intel XE#4302])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-2/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [PASS][71] -> [SKIP][72] ([Intel XE#1340])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-bmg-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_aux_dev:
- shard-adlp: NOTRUN -> [SKIP][73] ([Intel XE#3009])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-9/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#4354])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-435/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dsc@dsc-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#2244])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-4/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-adlp: NOTRUN -> [SKIP][76] ([Intel XE#4422])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#4422])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#4422])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-433/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
- shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#4422])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@psr:
- shard-adlp: NOTRUN -> [SKIP][80] ([Intel XE#776])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-2/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-2x:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#702])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-8/igt@kms_feature_discovery@display-2x.html
- shard-adlp: NOTRUN -> [SKIP][82] ([Intel XE#702])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-2/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-adlp: NOTRUN -> [SKIP][83] ([Intel XE#1137])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-1/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1421]) +5 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-4/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2316])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-plain-flip:
- shard-bmg: [PASS][86] -> [SKIP][87] ([Intel XE#2316]) +5 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-bmg-2/igt@kms_flip@2x-plain-flip.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-6/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-adlp: NOTRUN -> [SKIP][88] ([Intel XE#310]) +8 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-2/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank@a-dp4:
- shard-dg2-set2: [PASS][89] -> [FAIL][90] ([Intel XE#301] / [Intel XE#3321]) +2 other tests fail
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@a-dp4.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
- shard-dg2-set2: [PASS][91] -> [FAIL][92] ([Intel XE#301]) +2 other tests fail
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
* igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3:
- shard-bmg: [PASS][93] -> [FAIL][94] ([Intel XE#3321]) +1 other test fail
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3:
- shard-bmg: [PASS][95] -> [INCOMPLETE][96] ([Intel XE#2049] / [Intel XE#2597])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a3.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1:
- shard-lnl: [PASS][97] -> [FAIL][98] ([Intel XE#886]) +2 other tests fail
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1.html
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-6/igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1:
- shard-adlp: [PASS][99] -> [FAIL][100] ([Intel XE#2882]) +1 other test fail
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-adlp-4/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-1/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1401]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2293]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#455]) +3 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [FAIL][105] ([Intel XE#3106] / [Intel XE#4683]) +1 other test fail
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode:
- shard-adlp: NOTRUN -> [DMESG-FAIL][106] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-4/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#651]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2312]) +7 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2311]) +18 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#656]) +23 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#4141]) +6 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][113] ([Intel XE#651]) +16 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#651]) +11 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-adlp: NOTRUN -> [SKIP][115] ([Intel XE#653]) +29 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2313]) +21 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#653]) +16 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-slowdraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-adlp: NOTRUN -> [SKIP][118] ([Intel XE#1151])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2350])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-6/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-adlp: NOTRUN -> [SKIP][120] ([Intel XE#656]) +55 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_getfb@getfb2-accept-ccs:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2340])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-5/igt@kms_getfb@getfb2-accept-ccs.html
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#2340])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-7/igt@kms_getfb@getfb2-accept-ccs.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#346]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-2/igt@kms_joiner@basic-big-joiner.html
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#346])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-8/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-adlp: NOTRUN -> [SKIP][125] ([Intel XE#3012])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-bmg: [PASS][126] -> [SKIP][127] ([Intel XE#3012])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2934])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#2925])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-433/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#2934])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-adlp: NOTRUN -> [SKIP][131] ([Intel XE#356])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_cursor@viewport:
- shard-dg2-set2: [PASS][132] -> [FAIL][133] ([Intel XE#616]) +1 other test fail
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-dg2-464/igt@kms_plane_cursor@viewport.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-463/igt@kms_plane_cursor@viewport.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-adlp: NOTRUN -> [SKIP][134] ([Intel XE#4596]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-2/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#4596])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-8/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-adlp: NOTRUN -> [SKIP][136] ([Intel XE#870])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-9/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2391])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#736])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-adlp: NOTRUN -> [FAIL][139] ([Intel XE#718])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][140] ([Intel XE#1489]) +5 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#4608])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#2893]) +2 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf:
- shard-adlp: NOTRUN -> [SKIP][143] ([Intel XE#1489]) +9 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-3/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#1489]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-435/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-adlp: NOTRUN -> [SKIP][145] ([Intel XE#1122])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-4/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-sprite-render:
- shard-adlp: NOTRUN -> [SKIP][146] ([Intel XE#2850] / [Intel XE#929]) +16 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-6/igt@kms_psr@fbc-pr-sprite-render.html
* igt@kms_psr@fbc-psr2-cursor-plane-move:
- shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#2234] / [Intel XE#2850]) +10 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-2/igt@kms_psr@fbc-psr2-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-lnl: NOTRUN -> [SKIP][148] ([Intel XE#1406]) +6 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-3/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff@edp-1:
- shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#4609]) +2 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-3/igt@kms_psr@fbc-psr2-sprite-plane-onoff@edp-1.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-433/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-lnl: [PASS][151] -> [SKIP][152] ([Intel XE#4692])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-lnl-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-adlp: NOTRUN -> [SKIP][153] ([Intel XE#1127])
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-adlp: NOTRUN -> [SKIP][154] ([Intel XE#3414]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-6/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#3414] / [Intel XE#3904])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
- shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#3414] / [Intel XE#3904])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-adlp: NOTRUN -> [SKIP][157] ([Intel XE#455]) +24 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-3/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_tv_load_detect@load-detect:
- shard-adlp: NOTRUN -> [SKIP][158] ([Intel XE#330])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-8/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#1499])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-8/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#1499])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@xe_ccs@suspend-resume:
- shard-adlp: NOTRUN -> [SKIP][161] ([Intel XE#455] / [Intel XE#488]) +3 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-8/igt@xe_ccs@suspend-resume.html
* igt@xe_compute@ccs-mode-basic:
- shard-adlp: NOTRUN -> [SKIP][162] ([Intel XE#1447]) +1 other test skip
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-8/igt@xe_compute@ccs-mode-basic.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-adlp: NOTRUN -> [SKIP][163] ([Intel XE#1123]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-8/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_copy_basic@mem-set-linear-0xfffe:
- shard-adlp: NOTRUN -> [SKIP][164] ([Intel XE#1126])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-4/igt@xe_copy_basic@mem-set-linear-0xfffe.html
* igt@xe_create@create-big-vram:
- shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#1062])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-8/igt@xe_create@create-big-vram.html
* igt@xe_eu_stall@invalid-sampling-rate:
- shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#4497])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-464/igt@xe_eu_stall@invalid-sampling-rate.html
* igt@xe_eu_stall@unprivileged-access:
- shard-adlp: NOTRUN -> [SKIP][167] ([Intel XE#4497]) +2 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-8/igt@xe_eu_stall@unprivileged-access.html
* igt@xe_eudebug@basic-vm-bind-discovery:
- shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#4837]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-464/igt@xe_eudebug@basic-vm-bind-discovery.html
* igt@xe_eudebug@vm-bind-clear:
- shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#4837]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-2/igt@xe_eudebug@vm-bind-clear.html
* igt@xe_eudebug_online@basic-breakpoint:
- shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#4837]) +7 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-2/igt@xe_eudebug_online@basic-breakpoint.html
* igt@xe_eudebug_online@single-step-one:
- shard-adlp: NOTRUN -> [SKIP][171] ([Intel XE#4837]) +17 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-8/igt@xe_eudebug_online@single-step-one.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-adlp: NOTRUN -> [SKIP][172] ([Intel XE#4519])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-9/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_evict@evict-beng-large:
- shard-adlp: NOTRUN -> [SKIP][173] ([Intel XE#261] / [Intel XE#688]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-4/igt@xe_evict@evict-beng-large.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen:
- shard-lnl: NOTRUN -> [SKIP][174] ([Intel XE#688]) +3 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-6/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html
* igt@xe_evict_ccs@evict-overcommit-standalone-nofree-reopen:
- shard-adlp: NOTRUN -> [SKIP][175] ([Intel XE#688]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-3/igt@xe_evict_ccs@evict-overcommit-standalone-nofree-reopen.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind:
- shard-adlp: NOTRUN -> [SKIP][176] ([Intel XE#1392]) +5 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-8/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race:
- shard-adlp: NOTRUN -> [SKIP][177] ([Intel XE#4945])
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-6/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][178] ([Intel XE#1392]) +1 other test skip
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-once-basic-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#2322]) +3 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-4/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
* igt@xe_exec_fault_mode@once-bindexecqueue-userptr:
- shard-adlp: NOTRUN -> [SKIP][180] ([Intel XE#288]) +23 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-4/igt@xe_exec_fault_mode@once-bindexecqueue-userptr.html
* igt@xe_exec_fault_mode@once-rebind-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][181] ([Intel XE#288]) +15 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-435/igt@xe_exec_fault_mode@once-rebind-imm.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-adlp: NOTRUN -> [SKIP][182] ([Intel XE#2360])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-6/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_exec_reset@cat-error:
- shard-adlp: NOTRUN -> [DMESG-WARN][183] ([Intel XE#3868])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-3/igt@xe_exec_reset@cat-error.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-dg2-set2: [PASS][184] -> [DMESG-WARN][185] ([Intel XE#3876])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-dg2-436/igt@xe_exec_reset@parallel-gt-reset.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-433/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_system_allocator@fault-threads-same-page-benchmark:
- shard-dg2-set2: NOTRUN -> [SKIP][186] ([Intel XE#4915]) +119 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-436/igt@xe_exec_system_allocator@fault-threads-same-page-benchmark.html
* igt@xe_exec_system_allocator@process-many-large-mmap-remap-ro-dontunmap-eocheck:
- shard-adlp: NOTRUN -> [SKIP][187] ([Intel XE#4915]) +335 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-6/igt@xe_exec_system_allocator@process-many-large-mmap-remap-ro-dontunmap-eocheck.html
* igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][188] ([Intel XE#4943]) +14 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-7/igt@xe_exec_system_allocator@threads-many-large-execqueues-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge:
- shard-bmg: NOTRUN -> [SKIP][189] ([Intel XE#4943]) +18 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-8/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-adlp: NOTRUN -> [ABORT][190] ([Intel XE#4917])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-2/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-bmg: NOTRUN -> [ABORT][191] ([Intel XE#4911])
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-4/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_live_ktest@xe_bo:
- shard-adlp: NOTRUN -> [SKIP][192] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-9/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-adlp: NOTRUN -> [SKIP][193] ([Intel XE#2229])
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-9/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_mmap@pci-membarrier-parallel:
- shard-adlp: NOTRUN -> [SKIP][194] ([Intel XE#5100]) +1 other test skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-2/igt@xe_mmap@pci-membarrier-parallel.html
* igt@xe_module_load@force-load:
- shard-adlp: NOTRUN -> [SKIP][195] ([Intel XE#378])
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-8/igt@xe_module_load@force-load.html
* igt@xe_noexec_ping_pong:
- shard-adlp: NOTRUN -> [SKIP][196] ([Intel XE#379])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-4/igt@xe_noexec_ping_pong.html
* igt@xe_oa@buffer-size:
- shard-dg2-set2: NOTRUN -> [SKIP][197] ([Intel XE#4501])
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-436/igt@xe_oa@buffer-size.html
- shard-adlp: NOTRUN -> [SKIP][198] ([Intel XE#4501])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-8/igt@xe_oa@buffer-size.html
* igt@xe_oa@invalid-oa-format-id:
- shard-adlp: NOTRUN -> [SKIP][199] ([Intel XE#2541] / [Intel XE#3573]) +9 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-1/igt@xe_oa@invalid-oa-format-id.html
* igt@xe_oa@mmio-triggered-reports-read:
- shard-adlp: NOTRUN -> [SKIP][200] ([Intel XE#5103])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-3/igt@xe_oa@mmio-triggered-reports-read.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-lnl: NOTRUN -> [SKIP][201] ([Intel XE#2248])
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-3/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: NOTRUN -> [SKIP][202] ([Intel XE#2541] / [Intel XE#3573])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-436/igt@xe_oa@polling-small-buf.html
* igt@xe_pat@pat-index-xe2:
- shard-adlp: NOTRUN -> [SKIP][203] ([Intel XE#977])
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-1/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- shard-bmg: NOTRUN -> [SKIP][204] ([Intel XE#1420])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-7/igt@xe_pat@pat-index-xehpc.html
* igt@xe_peer2peer@write:
- shard-adlp: NOTRUN -> [SKIP][205] ([Intel XE#1061])
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-9/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-mocs:
- shard-adlp: NOTRUN -> [SKIP][206] ([Intel XE#2284])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-1/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@s3-vm-bind-prefetch:
- shard-lnl: NOTRUN -> [SKIP][207] ([Intel XE#584]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-2/igt@xe_pm@s3-vm-bind-prefetch.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-adlp: NOTRUN -> [SKIP][208] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-4/igt@xe_pm@s4-d3cold-basic-exec.html
- shard-dg2-set2: NOTRUN -> [SKIP][209] ([Intel XE#2284] / [Intel XE#366])
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-463/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-adlp: [PASS][210] -> [ABORT][211] ([Intel XE#1794] / [Intel XE#2953])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-adlp-8/igt@xe_pm@s4-d3hot-basic-exec.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-9/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-lnl: [PASS][212] -> [ABORT][213] ([Intel XE#1794])
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-lnl-7/igt@xe_pm@s4-vm-bind-unbind-all.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_prime_self_import@basic-with_one_bo:
- shard-lnl: NOTRUN -> [ABORT][214] ([Intel XE#5247])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-1/igt@xe_prime_self_import@basic-with_one_bo.html
* igt@xe_pxp@pxp-optout:
- shard-bmg: NOTRUN -> [SKIP][215] ([Intel XE#4733])
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-3/igt@xe_pxp@pxp-optout.html
* igt@xe_pxp@pxp-stale-bo-bind-post-rpm:
- shard-dg2-set2: NOTRUN -> [SKIP][216] ([Intel XE#4733])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-435/igt@xe_pxp@pxp-stale-bo-bind-post-rpm.html
* igt@xe_pxp@pxp-stale-bo-exec-post-rpm:
- shard-adlp: NOTRUN -> [SKIP][217] ([Intel XE#4733]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-9/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-adlp: NOTRUN -> [SKIP][218] ([Intel XE#944]) +2 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-1/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_query@multigpu-query-pxp-status:
- shard-lnl: NOTRUN -> [SKIP][219] ([Intel XE#944]) +2 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-3/igt@xe_query@multigpu-query-pxp-status.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: NOTRUN -> [SKIP][220] ([Intel XE#944]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-435/igt@xe_query@multigpu-query-topology.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-bmg: NOTRUN -> [SKIP][221] ([Intel XE#944]) +3 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-6/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_render_copy@render-stress-4-copies:
- shard-adlp: NOTRUN -> [SKIP][222] ([Intel XE#4814]) +1 other test skip
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-9/igt@xe_render_copy@render-stress-4-copies.html
- shard-dg2-set2: NOTRUN -> [SKIP][223] ([Intel XE#4814])
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-464/igt@xe_render_copy@render-stress-4-copies.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
- shard-bmg: NOTRUN -> [SKIP][224] ([Intel XE#4130]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-1/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
- shard-lnl: NOTRUN -> [SKIP][225] ([Intel XE#4130])
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-6/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
* igt@xe_sriov_auto_provisioning@selfconfig-basic:
- shard-adlp: NOTRUN -> [ABORT][226] ([Intel XE#5214]) +2 other tests abort
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-3/igt@xe_sriov_auto_provisioning@selfconfig-basic.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-lnl: NOTRUN -> [SKIP][227] ([Intel XE#3342])
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-8/igt@xe_sriov_flr@flr-each-isolation.html
- shard-bmg: NOTRUN -> [SKIP][228] ([Intel XE#3342])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-8/igt@xe_sriov_flr@flr-each-isolation.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: NOTRUN -> [SKIP][229] ([Intel XE#4273])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-7/igt@xe_sriov_flr@flr-vfs-parallel.html
- shard-lnl: NOTRUN -> [SKIP][230] ([Intel XE#4273])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-1/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-dg2-set2: NOTRUN -> [SKIP][231] ([Intel XE#4351])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-433/igt@xe_sriov_scheduling@equal-throughput.html
- shard-lnl: NOTRUN -> [SKIP][232] ([Intel XE#4351])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-3/igt@xe_sriov_scheduling@equal-throughput.html
- shard-bmg: NOTRUN -> [SKIP][233] ([Intel XE#4351])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-7/igt@xe_sriov_scheduling@equal-throughput.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [FAIL][234] ([Intel XE#911]) -> [PASS][235] +3 other tests pass
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_atomic_transition@modeset-transition-fencing:
- shard-adlp: [DMESG-WARN][236] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][237] +1 other test pass
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-adlp-2/igt@kms_atomic_transition@modeset-transition-fencing.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-1/igt@kms_atomic_transition@modeset-transition-fencing.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-adlp: [DMESG-FAIL][238] ([Intel XE#4543]) -> [PASS][239] +1 other test pass
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-adlp-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][240] ([Intel XE#3862]) -> [PASS][241] +1 other test pass
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][242] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][243]
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-bmg: [SKIP][244] ([Intel XE#2291]) -> [PASS][245] +1 other test pass
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@forked-move:
- shard-bmg: [INCOMPLETE][246] ([Intel XE#3226]) -> [PASS][247] +1 other test pass
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-bmg-1/igt@kms_cursor_legacy@forked-move.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-2/igt@kms_cursor_legacy@forked-move.html
* igt@kms_flip@flip-vs-blocking-wf-vblank:
- shard-dg2-set2: [FAIL][248] ([Intel XE#3098]) -> [PASS][249] +1 other test pass
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-dg2-435/igt@kms_flip@flip-vs-blocking-wf-vblank.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-464/igt@kms_flip@flip-vs-blocking-wf-vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-adlp: [FAIL][250] ([Intel XE#301]) -> [PASS][251] +1 other test pass
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-adlp-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6:
- shard-dg2-set2: [FAIL][252] ([Intel XE#301]) -> [PASS][253] +4 other tests pass
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [SKIP][254] ([Intel XE#455]) -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-dg2-433/igt@kms_hdr@invalid-hdr.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
* igt@xe_pmu@gt-frequency:
- shard-dg2-set2: [FAIL][256] ([Intel XE#5166]) -> [PASS][257] +1 other test pass
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-dg2-436/igt@xe_pmu@gt-frequency.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-433/igt@xe_pmu@gt-frequency.html
#### Warnings ####
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][258] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [INCOMPLETE][259] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522])
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_content_protection@srm:
- shard-bmg: [SKIP][260] ([Intel XE#2341]) -> [FAIL][261] ([Intel XE#1178])
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-bmg-6/igt@kms_content_protection@srm.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-5/igt@kms_content_protection@srm.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][262] ([Intel XE#2311]) -> [SKIP][263] ([Intel XE#2312]) +7 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][264] ([Intel XE#4141]) -> [SKIP][265] ([Intel XE#2312]) +5 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][266] ([Intel XE#2312]) -> [SKIP][267] ([Intel XE#4141]) +7 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][268] ([Intel XE#2312]) -> [SKIP][269] ([Intel XE#2311]) +9 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
- shard-adlp: [SKIP][270] ([Intel XE#653]) -> [SKIP][271] ([Intel XE#4947])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][272] ([Intel XE#2312]) -> [SKIP][273] ([Intel XE#2313]) +11 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][274] ([Intel XE#2313]) -> [SKIP][275] ([Intel XE#2312]) +8 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][276] ([Intel XE#5021]) -> [SKIP][277] ([Intel XE#4596])
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-yf.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][278] ([Intel XE#2426]) -> [SKIP][279] ([Intel XE#2509])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@xe_exec_fault_mode@twice-invalid-fault:
- shard-adlp: [SKIP][280] ([Intel XE#288]) -> [SKIP][281] ([Intel XE#4945])
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-adlp-1/igt@xe_exec_fault_mode@twice-invalid-fault.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-6/igt@xe_exec_fault_mode@twice-invalid-fault.html
* igt@xe_pmu@engine-activity-all-load:
- shard-adlp: [ABORT][282] ([Intel XE#5214]) -> [DMESG-WARN][283] ([Intel XE#5214])
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-adlp-3/igt@xe_pmu@engine-activity-all-load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-4/igt@xe_pmu@engine-activity-all-load.html
* igt@xe_pmu@engine-activity-load:
- shard-adlp: [DMESG-WARN][284] ([Intel XE#5214]) -> [ABORT][285] ([Intel XE#5214]) +2 other tests abort
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2/shard-adlp-9/igt@xe_pmu@engine-activity-load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/shard-adlp-8/igt@xe_pmu@engine-activity-load.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[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#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1151]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1151
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2340
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[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#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[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#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[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#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310
[Intel XE#3106]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3106
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[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#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767
[Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#379]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/379
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868
[Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876
[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#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497
[Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[Intel XE#4519]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4519
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608
[Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4665
[Intel XE#4683]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4683
[Intel XE#4692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4692
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[Intel XE#4911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4911
[Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917
[Intel XE#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#4945]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4945
[Intel XE#4947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4947
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5084
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5103]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5103
[Intel XE#5166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5166
[Intel XE#5172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5172
[Intel XE#5176]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5176
[Intel XE#5214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5214
[Intel XE#5247]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5247
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#702]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/702
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[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#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
Build changes
-------------
* IGT: IGT_8408 -> IGT_8409
* Linux: xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2 -> xe-pw-150183v1
IGT_8408: c034847bfe3d48c1d0d361dd44a0bc7cb276a31c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8409: 47d092f112d138977837666b161c97032c3446cd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3243-aca8df1835568921d5f108fe9fd16b1d282a74b2: aca8df1835568921d5f108fe9fd16b1d282a74b2
xe-pw-150183v1: 150183v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150183v1/index.html
[-- Attachment #2: Type: text/html, Size: 98772 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2025-06-13 20:00 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-12 18:05 [PATCH 0/2] drm/xe: Tweak default GuC log level Lucas De Marchi
2025-06-12 18:05 ` [PATCH 1/2] drm/xe/guc: Default log level to non-verbose Lucas De Marchi
2025-06-12 18:21 ` John Harrison
2025-06-12 18:29 ` Matthew Brost
2025-06-12 18:21 ` Matthew Brost
2025-06-12 18:26 ` John Harrison
2025-06-12 18:35 ` Matthew Brost
2025-06-12 18:05 ` [PATCH 2/2] drm/xe: Annotate default for guc_log_level param Lucas De Marchi
2025-06-12 18:26 ` John Harrison
2025-06-12 23:32 ` ✗ CI.checkpatch: warning for drm/xe: Tweak default GuC log level Patchwork
2025-06-12 23:34 ` ✓ CI.KUnit: success " Patchwork
2025-06-13 1:02 ` ✓ Xe.CI.BAT: " Patchwork
2025-06-13 20:00 ` ✗ Xe.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox