* [PATCH i-g-t] gputop: Add memory only utilization type
@ 2024-11-21 9:38 Christian Gmeiner
2024-11-21 10:03 ` Tvrtko Ursulin
` (5 more replies)
0 siblings, 6 replies; 11+ messages in thread
From: Christian Gmeiner @ 2024-11-21 9:38 UTC (permalink / raw)
To: igt-dev; +Cc: kernel-dev, tursulin, Christian Gmeiner
From: Christian Gmeiner <cgmeiner@igalia.com>
Add special handling for drivers that only provide memory utilization
fdinfo.
Signed-off-by: Christian Gmeiner <cgmeiner@igalia.com>
---
tools/gputop.c | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/tools/gputop.c b/tools/gputop.c
index 43b01f566..4135d84c1 100644
--- a/tools/gputop.c
+++ b/tools/gputop.c
@@ -35,6 +35,7 @@
enum utilization_type {
UTILIZATION_TYPE_ENGINE_TIME,
UTILIZATION_TYPE_TOTAL_CYCLES,
+ UTILIZATION_TYPE_MEMORY_ONLY,
};
static const char *bars[] = { " ", "▏", "▎", "▍", "▌", "▋", "▊", "▉", "█" };
@@ -141,6 +142,9 @@ engines_identical(const struct igt_drm_client *c,
c->engines->max_engine_id != pc->engines->max_engine_id)
return false;
+ if (!c->engines->num_engines && !pc->engines->num_engines)
+ return true;
+
for (i = 0; i <= c->engines->max_engine_id; i++)
if (c->engines->capacity[i] != pc->engines->capacity[i] ||
!!c->engines->names[i] != !!pc->engines->names[i] ||
@@ -193,6 +197,8 @@ print_client(struct igt_drm_client *c, struct igt_drm_client **prevc,
utilization_type = UTILIZATION_TYPE_TOTAL_CYCLES;
else if (c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_ENGINE_TIME)
utilization_type = UTILIZATION_TYPE_ENGINE_TIME;
+ else if (c->regions->num_regions)
+ utilization_type = UTILIZATION_TYPE_MEMORY_ONLY;
else
return 0;
@@ -209,6 +215,13 @@ print_client(struct igt_drm_client *c, struct igt_drm_client **prevc,
if (!c->total_total_cycles)
return 0;
break;
+ case UTILIZATION_TYPE_MEMORY_ONLY:
+ for (sz = 0, i = 0; i <= c->regions->max_region_id; i++)
+ sz += c->memory[i].total;
+
+ if (sz == 0)
+ return 0;
+ break;
}
/* Print header when moving to a different DRM card. */
@@ -234,6 +247,9 @@ print_client(struct igt_drm_client *c, struct igt_drm_client **prevc,
lines++;
+ if (utilization_type == UTILIZATION_TYPE_MEMORY_ONLY)
+ goto print_name;
+
for (i = 0; c->samples > 1 && i <= c->engines->max_engine_id; i++) {
double pct;
@@ -249,6 +265,9 @@ print_client(struct igt_drm_client *c, struct igt_drm_client **prevc,
pct = (double)c->utilization[i].delta_cycles / c->utilization[i].delta_total_cycles * 100 /
c->engines->capacity[i];
break;
+ case UTILIZATION_TYPE_MEMORY_ONLY:
+ /* Nothing to do. */
+ break;
}
/*
@@ -262,6 +281,7 @@ print_client(struct igt_drm_client *c, struct igt_drm_client **prevc,
len += *engine_w;
}
+print_name:
printf(" %-*s\n", con_w - len - 1, c->print_name);
return lines;
--
2.47.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] gputop: Add memory only utilization type
2024-11-21 9:38 [PATCH i-g-t] gputop: Add memory only utilization type Christian Gmeiner
@ 2024-11-21 10:03 ` Tvrtko Ursulin
2024-11-21 18:35 ` Christian Gmeiner
2024-11-22 11:20 ` ✗ GitLab.Pipeline: warning for " Patchwork
` (4 subsequent siblings)
5 siblings, 1 reply; 11+ messages in thread
From: Tvrtko Ursulin @ 2024-11-21 10:03 UTC (permalink / raw)
To: Christian Gmeiner, igt-dev; +Cc: kernel-dev, tursulin, Christian Gmeiner
On 21/11/2024 09:38, Christian Gmeiner wrote:
> From: Christian Gmeiner <cgmeiner@igalia.com>
>
> Add special handling for drivers that only provide memory utilization
> fdinfo.
To check I am following correctly - special in this context means avoid
displaying empty fields, or avoid a crash, or?
> Signed-off-by: Christian Gmeiner <cgmeiner@igalia.com>
> ---
> tools/gputop.c | 20 ++++++++++++++++++++
> 1 file changed, 20 insertions(+)
>
> diff --git a/tools/gputop.c b/tools/gputop.c
> index 43b01f566..4135d84c1 100644
> --- a/tools/gputop.c
> +++ b/tools/gputop.c
> @@ -35,6 +35,7 @@
> enum utilization_type {
> UTILIZATION_TYPE_ENGINE_TIME,
> UTILIZATION_TYPE_TOTAL_CYCLES,
> + UTILIZATION_TYPE_MEMORY_ONLY,
> };
>
> static const char *bars[] = { " ", "▏", "▎", "▍", "▌", "▋", "▊", "▉", "█" };
> @@ -141,6 +142,9 @@ engines_identical(const struct igt_drm_client *c,
> c->engines->max_engine_id != pc->engines->max_engine_id)
> return false;
>
> + if (!c->engines->num_engines && !pc->engines->num_engines)
> + return true;
strcmp() below crashes?
I would move the check you added to be first in this function. I think
that makes most sense from the flow wise - checking it before max_engine_id.
With this fixed what remains broken?
The loop in print_client() should ideally be skipped but even as is I
think exits on the capacity check, no? At the moment it seems like this
could be enough but maybe I am missing something.
Regards,
Tvrtko
> +
> for (i = 0; i <= c->engines->max_engine_id; i++)
> if (c->engines->capacity[i] != pc->engines->capacity[i] ||
> !!c->engines->names[i] != !!pc->engines->names[i] ||
> @@ -193,6 +197,8 @@ print_client(struct igt_drm_client *c, struct igt_drm_client **prevc,
> utilization_type = UTILIZATION_TYPE_TOTAL_CYCLES;
> else if (c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_ENGINE_TIME)
> utilization_type = UTILIZATION_TYPE_ENGINE_TIME;
> + else if (c->regions->num_regions)
> + utilization_type = UTILIZATION_TYPE_MEMORY_ONLY;
> else
> return 0;
>
> @@ -209,6 +215,13 @@ print_client(struct igt_drm_client *c, struct igt_drm_client **prevc,
> if (!c->total_total_cycles)
> return 0;
> break;
> + case UTILIZATION_TYPE_MEMORY_ONLY:
> + for (sz = 0, i = 0; i <= c->regions->max_region_id; i++)
> + sz += c->memory[i].total;
> +
> + if (sz == 0)
> + return 0;
> + break;
> }
>
> /* Print header when moving to a different DRM card. */
> @@ -234,6 +247,9 @@ print_client(struct igt_drm_client *c, struct igt_drm_client **prevc,
>
> lines++;
>
> + if (utilization_type == UTILIZATION_TYPE_MEMORY_ONLY)
> + goto print_name;
> +
> for (i = 0; c->samples > 1 && i <= c->engines->max_engine_id; i++) {
> double pct;
>
> @@ -249,6 +265,9 @@ print_client(struct igt_drm_client *c, struct igt_drm_client **prevc,
> pct = (double)c->utilization[i].delta_cycles / c->utilization[i].delta_total_cycles * 100 /
> c->engines->capacity[i];
> break;
> + case UTILIZATION_TYPE_MEMORY_ONLY:
> + /* Nothing to do. */
> + break;
> }
>
> /*
> @@ -262,6 +281,7 @@ print_client(struct igt_drm_client *c, struct igt_drm_client **prevc,
> len += *engine_w;
> }
>
> +print_name:
> printf(" %-*s\n", con_w - len - 1, c->print_name);
>
> return lines;
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] gputop: Add memory only utilization type
2024-11-21 10:03 ` Tvrtko Ursulin
@ 2024-11-21 18:35 ` Christian Gmeiner
2024-11-22 8:54 ` Tvrtko Ursulin
0 siblings, 1 reply; 11+ messages in thread
From: Christian Gmeiner @ 2024-11-21 18:35 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: igt-dev, kernel-dev, tursulin, Christian Gmeiner
Hi Tvrtko
> > From: Christian Gmeiner <cgmeiner@igalia.com>
> >
> > Add special handling for drivers that only provide memory utilization
> > fdinfo.
>
> To check I am following correctly - special in this context means avoid
> displaying empty fields, or avoid a crash, or?
- Avoid early return in print_client(..) -> no output show.
- Avoid a crash in strcmp(..).
>
> > Signed-off-by: Christian Gmeiner <cgmeiner@igalia.com>
> > ---
> > tools/gputop.c | 20 ++++++++++++++++++++
> > 1 file changed, 20 insertions(+)
> >
> > diff --git a/tools/gputop.c b/tools/gputop.c
> > index 43b01f566..4135d84c1 100644
> > --- a/tools/gputop.c
> > +++ b/tools/gputop.c
> > @@ -35,6 +35,7 @@
> > enum utilization_type {
> > UTILIZATION_TYPE_ENGINE_TIME,
> > UTILIZATION_TYPE_TOTAL_CYCLES,
> > + UTILIZATION_TYPE_MEMORY_ONLY,
> > };
> >
> > static const char *bars[] = { " ", "▏", "▎", "▍", "▌", "▋", "▊", "▉", "█" };
> > @@ -141,6 +142,9 @@ engines_identical(const struct igt_drm_client *c,
> > c->engines->max_engine_id != pc->engines->max_engine_id)
> > return false;
> >
> > + if (!c->engines->num_engines && !pc->engines->num_engines)
> > + return true;
>
> strcmp() below crashes?
>
Correct.
> I would move the check you added to be first in this function. I think
> that makes most sense from the flow wise - checking it before max_engine_id.
>
Will do in v2.
> With this fixed what remains broken?
>
Show any output :)
> The loop in print_client() should ideally be skipped but even as is I
> think exits on the capacity check, no? At the moment it seems like this
> could be enough but maybe I am missing something.
>
You are correct - it works without the goto thing.
> Regards,
>
> Tvrtko
>
> > +
> > for (i = 0; i <= c->engines->max_engine_id; i++)
> > if (c->engines->capacity[i] != pc->engines->capacity[i] ||
> > !!c->engines->names[i] != !!pc->engines->names[i] ||
> > @@ -193,6 +197,8 @@ print_client(struct igt_drm_client *c, struct igt_drm_client **prevc,
> > utilization_type = UTILIZATION_TYPE_TOTAL_CYCLES;
> > else if (c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_ENGINE_TIME)
> > utilization_type = UTILIZATION_TYPE_ENGINE_TIME;
> > + else if (c->regions->num_regions)
> > + utilization_type = UTILIZATION_TYPE_MEMORY_ONLY;
> > else
> > return 0;
> >
> > @@ -209,6 +215,13 @@ print_client(struct igt_drm_client *c, struct igt_drm_client **prevc,
> > if (!c->total_total_cycles)
> > return 0;
> > break;
> > + case UTILIZATION_TYPE_MEMORY_ONLY:
> > + for (sz = 0, i = 0; i <= c->regions->max_region_id; i++)
> > + sz += c->memory[i].total;
> > +
> > + if (sz == 0)
> > + return 0;
> > + break;
> > }
> >
> > /* Print header when moving to a different DRM card. */
> > @@ -234,6 +247,9 @@ print_client(struct igt_drm_client *c, struct igt_drm_client **prevc,
> >
> > lines++;
> >
> > + if (utilization_type == UTILIZATION_TYPE_MEMORY_ONLY)
> > + goto print_name;
> > +
> > for (i = 0; c->samples > 1 && i <= c->engines->max_engine_id; i++) {
> > double pct;
> >
> > @@ -249,6 +265,9 @@ print_client(struct igt_drm_client *c, struct igt_drm_client **prevc,
> > pct = (double)c->utilization[i].delta_cycles / c->utilization[i].delta_total_cycles * 100 /
> > c->engines->capacity[i];
> > break;
> > + case UTILIZATION_TYPE_MEMORY_ONLY:
> > + /* Nothing to do. */
> > + break;
> > }
> >
> > /*
> > @@ -262,6 +281,7 @@ print_client(struct igt_drm_client *c, struct igt_drm_client **prevc,
> > len += *engine_w;
> > }
> >
> > +print_name:
> > printf(" %-*s\n", con_w - len - 1, c->print_name);
> >
> > return lines;
--
greets
--
Christian Gmeiner, MSc
https://christian-gmeiner.info/privacypolicy
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] gputop: Add memory only utilization type
2024-11-21 18:35 ` Christian Gmeiner
@ 2024-11-22 8:54 ` Tvrtko Ursulin
2024-11-22 20:19 ` Christian Gmeiner
0 siblings, 1 reply; 11+ messages in thread
From: Tvrtko Ursulin @ 2024-11-22 8:54 UTC (permalink / raw)
To: Christian Gmeiner; +Cc: igt-dev, kernel-dev, tursulin, Christian Gmeiner
On 21/11/2024 18:35, Christian Gmeiner wrote:
> Hi Tvrtko
>
>>> From: Christian Gmeiner <cgmeiner@igalia.com>
>>>
>>> Add special handling for drivers that only provide memory utilization
>>> fdinfo.
>>
>> To check I am following correctly - special in this context means avoid
>> displaying empty fields, or avoid a crash, or?
>
> - Avoid early return in print_client(..) -> no output show.
> - Avoid a crash in strcmp(..).
>
>>
>>> Signed-off-by: Christian Gmeiner <cgmeiner@igalia.com>
>>> ---
>>> tools/gputop.c | 20 ++++++++++++++++++++
>>> 1 file changed, 20 insertions(+)
>>>
>>> diff --git a/tools/gputop.c b/tools/gputop.c
>>> index 43b01f566..4135d84c1 100644
>>> --- a/tools/gputop.c
>>> +++ b/tools/gputop.c
>>> @@ -35,6 +35,7 @@
>>> enum utilization_type {
>>> UTILIZATION_TYPE_ENGINE_TIME,
>>> UTILIZATION_TYPE_TOTAL_CYCLES,
>>> + UTILIZATION_TYPE_MEMORY_ONLY,
>>> };
>>>
>>> static const char *bars[] = { " ", "▏", "▎", "▍", "▌", "▋", "▊", "▉", "█" };
>>> @@ -141,6 +142,9 @@ engines_identical(const struct igt_drm_client *c,
>>> c->engines->max_engine_id != pc->engines->max_engine_id)
>>> return false;
>>>
>>> + if (!c->engines->num_engines && !pc->engines->num_engines)
>>> + return true;
>>
>> strcmp() below crashes?
>>
>
> Correct.
>
>> I would move the check you added to be first in this function. I think
>> that makes most sense from the flow wise - checking it before max_engine_id.
>>
>
> Will do in v2.
>
>> With this fixed what remains broken?
>>
>
> Show any output :)
I totally missed it. Shows the value of commit messages. ;)
Okay.. I wonder if we can get away without adding
UTILIZATION_TYPE_MEMORY_ONLY and instead make the code skip unavailable
data.
Would something like this work:
diff --git a/tools/gputop.c b/tools/gputop.c
index 43b01f566ac8..9639a7f5fde8 100644
--- a/tools/gputop.c
+++ b/tools/gputop.c
@@ -137,6 +137,9 @@ engines_identical(const struct igt_drm_client *c,
{
unsigned int i;
+ if (!c->engines->num_engines && !pc->engines->num_engines)
+ return true;
+
if (c->engines->num_engines != pc->engines->num_engines ||
c->engines->max_engine_id != pc->engines->max_engine_id)
return false;
@@ -188,27 +191,20 @@ print_client(struct igt_drm_client *c, struct
igt_drm_client **prevc,
uint64_t sz;
int len;
+ if (c->samples < 2)
+ return 0;
+
if (c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_TOTAL_CYCLES &&
- c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_CYCLES)
+ c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_CYCLES) {
utilization_type = UTILIZATION_TYPE_TOTAL_CYCLES;
- else if (c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_ENGINE_TIME)
+ /* Filter out idle clients. */
+ if (c->engines->num_engines && !c->total_total_cycles)
+ return 0;
+ } else if (c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_ENGINE_TIME) {
utilization_type = UTILIZATION_TYPE_ENGINE_TIME;
- else
- return 0;
-
- if (c->samples < 2)
- return 0;
-
- /* Filter out idle clients. */
- switch (utilization_type) {
- case UTILIZATION_TYPE_ENGINE_TIME:
- if (!c->total_engine_time)
- return 0;
- break;
- case UTILIZATION_TYPE_TOTAL_CYCLES:
- if (!c->total_total_cycles)
- return 0;
- break;
+ /* Filter out idle clients. */
+ if (c->engines->num_engines && !c->total_engine_time)
+ return 0;
}
/* Print header when moving to a different DRM card. */
@@ -234,7 +230,9 @@ print_client(struct igt_drm_client *c, struct
igt_drm_client **prevc,
lines++;
- for (i = 0; c->samples > 1 && i <= c->engines->max_engine_id; i++) {
+ for (i = 0;
+ c->engines->num_engines && i <= c->engines->max_engine_id;
+ i++) {
double pct;
if (!c->engines->capacity[i])
Regards,
Tvrtko
>> The loop in print_client() should ideally be skipped but even as is I
>> think exits on the capacity check, no? At the moment it seems like this
>> could be enough but maybe I am missing something.
>>
>
> You are correct - it works without the goto thing.
>
>> Regards,
>>
>> Tvrtko
>>
>>> +
>>> for (i = 0; i <= c->engines->max_engine_id; i++)
>>> if (c->engines->capacity[i] != pc->engines->capacity[i] ||
>>> !!c->engines->names[i] != !!pc->engines->names[i] ||
>>> @@ -193,6 +197,8 @@ print_client(struct igt_drm_client *c, struct igt_drm_client **prevc,
>>> utilization_type = UTILIZATION_TYPE_TOTAL_CYCLES;
>>> else if (c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_ENGINE_TIME)
>>> utilization_type = UTILIZATION_TYPE_ENGINE_TIME;
>>> + else if (c->regions->num_regions)
>>> + utilization_type = UTILIZATION_TYPE_MEMORY_ONLY;
>>> else
>>> return 0;
>>>
>>> @@ -209,6 +215,13 @@ print_client(struct igt_drm_client *c, struct igt_drm_client **prevc,
>>> if (!c->total_total_cycles)
>>> return 0;
>>> break;
>>> + case UTILIZATION_TYPE_MEMORY_ONLY:
>>> + for (sz = 0, i = 0; i <= c->regions->max_region_id; i++)
>>> + sz += c->memory[i].total;
>>> +
>>> + if (sz == 0)
>>> + return 0;
>>> + break;
>>> }
>>>
>>> /* Print header when moving to a different DRM card. */
>>> @@ -234,6 +247,9 @@ print_client(struct igt_drm_client *c, struct igt_drm_client **prevc,
>>>
>>> lines++;
>>>
>>> + if (utilization_type == UTILIZATION_TYPE_MEMORY_ONLY)
>>> + goto print_name;
>>> +
>>> for (i = 0; c->samples > 1 && i <= c->engines->max_engine_id; i++) {
>>> double pct;
>>>
>>> @@ -249,6 +265,9 @@ print_client(struct igt_drm_client *c, struct igt_drm_client **prevc,
>>> pct = (double)c->utilization[i].delta_cycles / c->utilization[i].delta_total_cycles * 100 /
>>> c->engines->capacity[i];
>>> break;
>>> + case UTILIZATION_TYPE_MEMORY_ONLY:
>>> + /* Nothing to do. */
>>> + break;
>>> }
>>>
>>> /*
>>> @@ -262,6 +281,7 @@ print_client(struct igt_drm_client *c, struct igt_drm_client **prevc,
>>> len += *engine_w;
>>> }
>>>
>>> +print_name:
>>> printf(" %-*s\n", con_w - len - 1, c->print_name);
>>>
>>> return lines;
>
>
>
^ permalink raw reply related [flat|nested] 11+ messages in thread
* ✗ GitLab.Pipeline: warning for gputop: Add memory only utilization type
2024-11-21 9:38 [PATCH i-g-t] gputop: Add memory only utilization type Christian Gmeiner
2024-11-21 10:03 ` Tvrtko Ursulin
@ 2024-11-22 11:20 ` Patchwork
2024-11-22 11:35 ` ✓ Xe.CI.BAT: success " Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-11-22 11:20 UTC (permalink / raw)
To: Christian Gmeiner; +Cc: igt-dev
== Series Details ==
Series: gputop: Add memory only utilization type
URL : https://patchwork.freedesktop.org/series/141689/
State : warning
== Summary ==
Pipeline status: FAILED.
see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1315258 for the overview.
build-containers:build-debian-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/67037522):
Checking if the job's project is part of a well-known group...
Thank you for contributing to freedesktop.org
Fetching changes...
Reinitialized existing Git repository in /builds/gfx-ci/igt-ci-tags/.git/
Checking out 022fad57 as detached HEAD (ref is intel/IGTPW_12174)...
Removing build/
Removing lib/i915/perf-configs/__pycache__/
Removing lib/xe/oa-configs/__pycache__/
Removing scripts/__pycache__/
Skipping Git submodules setup
section_end:1732274097:get_sources
section_start:1732274097:step_script
Executing "step_script" stage of the job script
Using docker image sha256:594aa868d31ee3304dee8cae8a3433c89a6fcfcf6c7d420c04cce22f60147176 for registry.freedesktop.org/wayland/ci-templates/buildah:2019-08-13.0 with digest registry.freedesktop.org/wayland/ci-templates/buildah@sha256:7dbcf22cd2c1c7d49db0dc7b4ab207c3d6a4a09bd81cc3b71a688d3727d8749f ...
section_end:1732274103:step_script
section_start:1732274103:cleanup_file_variables
Cleaning up project directory and file based variables
section_end:1732274104:cleanup_file_variables
ERROR: Job failed (system failure): Error response from daemon: no such image: docker.io/library/sha256:594aa868d31ee3304dee8cae8a3433c89a6fcfcf6c7d420c04cce22f60147176: image not known (docker.go:650:0s)
== Logs ==
For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1315258
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for gputop: Add memory only utilization type
2024-11-21 9:38 [PATCH i-g-t] gputop: Add memory only utilization type Christian Gmeiner
2024-11-21 10:03 ` Tvrtko Ursulin
2024-11-22 11:20 ` ✗ GitLab.Pipeline: warning for " Patchwork
@ 2024-11-22 11:35 ` Patchwork
2024-11-22 12:01 ` ✗ i915.CI.BAT: failure " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-11-22 11:35 UTC (permalink / raw)
To: Christian Gmeiner; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1496 bytes --]
== Series Details ==
Series: gputop: Add memory only utilization type
URL : https://patchwork.freedesktop.org/series/141689/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8122_BAT -> XEIGTPW_12174_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12174_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#1861])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
Build changes
-------------
* IGT: IGT_8122 -> IGTPW_12174
* Linux: xe-2259-bb17c42521f57b592e9ad49daca1f9f9045d3199 -> xe-2261-d571d186fd9e588dd4acdbbde1fb0935b84c233a
IGTPW_12174: 12174
IGT_8122: 8122
xe-2259-bb17c42521f57b592e9ad49daca1f9f9045d3199: bb17c42521f57b592e9ad49daca1f9f9045d3199
xe-2261-d571d186fd9e588dd4acdbbde1fb0935b84c233a: d571d186fd9e588dd4acdbbde1fb0935b84c233a
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/index.html
[-- Attachment #2: Type: text/html, Size: 2072 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.BAT: failure for gputop: Add memory only utilization type
2024-11-21 9:38 [PATCH i-g-t] gputop: Add memory only utilization type Christian Gmeiner
` (2 preceding siblings ...)
2024-11-22 11:35 ` ✓ Xe.CI.BAT: success " Patchwork
@ 2024-11-22 12:01 ` Patchwork
2024-11-22 21:24 ` ✗ Fi.CI.BUILD: failure for gputop: Add memory only utilization type (rev2) Patchwork
2024-11-23 9:03 ` ✗ Xe.CI.Full: failure for gputop: Add memory only utilization type Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-11-22 12:01 UTC (permalink / raw)
To: Christian Gmeiner; +Cc: igt-dev
== Series Details ==
Series: gputop: Add memory only utilization type
URL : https://patchwork.freedesktop.org/series/141689/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8122 -> IGTPW_12174
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12174 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12174, 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.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12174/index.html
Participating hosts (45 -> 44)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12174:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live:
- bat-rpls-4: [PASS][1] -> [DMESG-FAIL][2] +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8122/bat-rpls-4/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12174/bat-rpls-4/igt@i915_selftest@live.html
* igt@kms_flip@basic-flip-vs-dpms@c-dp1:
- fi-kbl-7567u: [PASS][3] -> [DMESG-WARN][4] +1 other test dmesg-warn
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8122/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms@c-dp1.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12174/fi-kbl-7567u/igt@kms_flip@basic-flip-vs-dpms@c-dp1.html
Known issues
------------
Here are the changes found in IGTPW_12174 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- bat-apl-1: [PASS][5] -> [INCOMPLETE][6] ([i915#12904]) +1 other test incomplete
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8122/bat-apl-1/igt@dmabuf@all-tests.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12174/bat-apl-1/igt@dmabuf@all-tests.html
* igt@i915_module_load@reload:
- bat-twl-2: [PASS][7] -> [DMESG-WARN][8] ([i915#1982])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8122/bat-twl-2/igt@i915_module_load@reload.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12174/bat-twl-2/igt@i915_module_load@reload.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-dg2-11: [PASS][9] -> [SKIP][10] ([i915#9197])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8122/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12174/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
#### Possible fixes ####
* igt@dmabuf@all-tests@dma_fence_chain:
- fi-bsw-nick: [INCOMPLETE][11] ([i915#12904]) -> [PASS][12] +1 other test pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8122/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12174/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
* igt@i915_pm_rpm@module-reload:
- bat-dg2-11: [FAIL][13] ([i915#12903]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8122/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12174/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-mtlp-8: [ABORT][15] ([i915#12061]) -> [PASS][16] +1 other test pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8122/bat-mtlp-8/igt@i915_selftest@live.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12174/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [ABORT][17] ([i915#12061]) -> [PASS][18] +1 other test pass
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8122/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12174/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1:
- fi-kbl-7567u: [DMESG-WARN][19] ([i915#12926]) -> [PASS][20] +3 other tests pass
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8122/fi-kbl-7567u/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12174/fi-kbl-7567u/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence@pipe-c-dp-1.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12695]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12695
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#12926]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12926
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8122 -> IGTPW_12174
* Linux: CI_DRM_15727 -> CI_DRM_15729
CI-20190529: 20190529
CI_DRM_15727: bb17c42521f57b592e9ad49daca1f9f9045d3199 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15729: d571d186fd9e588dd4acdbbde1fb0935b84c233a @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12174: 12174
IGT_8122: 8122
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12174/index.html
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] gputop: Add memory only utilization type
2024-11-22 8:54 ` Tvrtko Ursulin
@ 2024-11-22 20:19 ` Christian Gmeiner
2024-11-25 9:03 ` Tvrtko Ursulin
0 siblings, 1 reply; 11+ messages in thread
From: Christian Gmeiner @ 2024-11-22 20:19 UTC (permalink / raw)
To: Tvrtko Ursulin; +Cc: igt-dev, kernel-dev, tursulin, Christian Gmeiner
Hi
> > Hi Tvrtko
> >
> >>> From: Christian Gmeiner <cgmeiner@igalia.com>
> >>>
> >>> Add special handling for drivers that only provide memory utilization
> >>> fdinfo.
> >>
> >> To check I am following correctly - special in this context means avoid
> >> displaying empty fields, or avoid a crash, or?
> >
> > - Avoid early return in print_client(..) -> no output show.
> > - Avoid a crash in strcmp(..).
> >
> >>
> >>> Signed-off-by: Christian Gmeiner <cgmeiner@igalia.com>
> >>> ---
> >>> tools/gputop.c | 20 ++++++++++++++++++++
> >>> 1 file changed, 20 insertions(+)
> >>>
> >>> diff --git a/tools/gputop.c b/tools/gputop.c
> >>> index 43b01f566..4135d84c1 100644
> >>> --- a/tools/gputop.c
> >>> +++ b/tools/gputop.c
> >>> @@ -35,6 +35,7 @@
> >>> enum utilization_type {
> >>> UTILIZATION_TYPE_ENGINE_TIME,
> >>> UTILIZATION_TYPE_TOTAL_CYCLES,
> >>> + UTILIZATION_TYPE_MEMORY_ONLY,
> >>> };
> >>>
> >>> static const char *bars[] = { " ", "▏", "▎", "▍", "▌", "▋", "▊", "▉", "█" };
> >>> @@ -141,6 +142,9 @@ engines_identical(const struct igt_drm_client *c,
> >>> c->engines->max_engine_id != pc->engines->max_engine_id)
> >>> return false;
> >>>
> >>> + if (!c->engines->num_engines && !pc->engines->num_engines)
> >>> + return true;
> >>
> >> strcmp() below crashes?
> >>
> >
> > Correct.
> >
> >> I would move the check you added to be first in this function. I think
> >> that makes most sense from the flow wise - checking it before max_engine_id.
> >>
> >
> > Will do in v2.
> >
> >> With this fixed what remains broken?
> >>
> >
> > Show any output :)
>
> I totally missed it. Shows the value of commit messages. ;)
>
> Okay.. I wonder if we can get away without adding
> UTILIZATION_TYPE_MEMORY_ONLY and instead make the code skip unavailable
> data.
>
> Would something like this work:
>
> diff --git a/tools/gputop.c b/tools/gputop.c
> index 43b01f566ac8..9639a7f5fde8 100644
> --- a/tools/gputop.c
> +++ b/tools/gputop.c
> @@ -137,6 +137,9 @@ engines_identical(const struct igt_drm_client *c,
> {
> unsigned int i;
>
> + if (!c->engines->num_engines && !pc->engines->num_engines)
> + return true;
> +
> if (c->engines->num_engines != pc->engines->num_engines ||
> c->engines->max_engine_id != pc->engines->max_engine_id)
> return false;
> @@ -188,27 +191,20 @@ print_client(struct igt_drm_client *c, struct
> igt_drm_client **prevc,
> uint64_t sz;
> int len;
>
> + if (c->samples < 2)
> + return 0;
> +
> if (c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_TOTAL_CYCLES &&
> - c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_CYCLES)
> + c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_CYCLES) {
> utilization_type = UTILIZATION_TYPE_TOTAL_CYCLES;
> - else if (c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_ENGINE_TIME)
> + /* Filter out idle clients. */
> + if (c->engines->num_engines && !c->total_total_cycles)
> + return 0;
> + } else if (c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_ENGINE_TIME) {
> utilization_type = UTILIZATION_TYPE_ENGINE_TIME;
> - else
> - return 0;
> -
> - if (c->samples < 2)
> - return 0;
> -
> - /* Filter out idle clients. */
> - switch (utilization_type) {
> - case UTILIZATION_TYPE_ENGINE_TIME:
> - if (!c->total_engine_time)
> - return 0;
> - break;
> - case UTILIZATION_TYPE_TOTAL_CYCLES:
> - if (!c->total_total_cycles)
> - return 0;
> - break;
> + /* Filter out idle clients. */
> + if (c->engines->num_engines && !c->total_engine_time)
> + return 0;
> }
>
> /* Print header when moving to a different DRM card. */
> @@ -234,7 +230,9 @@ print_client(struct igt_drm_client *c, struct
> igt_drm_client **prevc,
>
> lines++;
>
> - for (i = 0; c->samples > 1 && i <= c->engines->max_engine_id; i++) {
> + for (i = 0;
> + c->engines->num_engines && i <= c->engines->max_engine_id;
> + i++) {
> double pct;
>
> if (!c->engines->capacity[i])
>
With your patch I get:
DRM minor 128
PID MEM RSS NAME
1308 16M 16M kmscube
1308 0B 0B kmscube
I think we should filter out the 0B MEM's one too - or?
diff --git a/tools/gputop.c b/tools/gputop.c
index 43b01f566..459cf213f 100644
--- a/tools/gputop.c
+++ b/tools/gputop.c
@@ -137,6 +137,9 @@ engines_identical(const struct igt_drm_client *c,
{
unsigned int i;
+ if (!c->engines->num_engines && !pc->engines->num_engines)
+ return true;
+
if (c->engines->num_engines != pc->engines->num_engines ||
c->engines->max_engine_id != pc->engines->max_engine_id)
return false;
@@ -188,27 +191,28 @@ print_client(struct igt_drm_client *c, struct
igt_drm_client **prevc,
uint64_t sz;
int len;
+ if (c->samples < 2)
+ return 0;
+
if (c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_TOTAL_CYCLES &&
- c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_CYCLES)
+ c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_CYCLES) {
utilization_type = UTILIZATION_TYPE_TOTAL_CYCLES;
- else if (c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_ENGINE_TIME)
+ /* Filter out idle clients. */
+ if (c->engines->num_engines && !c->total_total_cycles)
+ return 0;
+ } else if (c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_ENGINE_TIME) {
utilization_type = UTILIZATION_TYPE_ENGINE_TIME;
- else
- return 0;
+ /* Filter out idle clients. */
+ if (c->engines->num_engines && !c->total_engine_time)
+ return 0;
+ }
- if (c->samples < 2)
- return 0;
+ if (c->regions->num_regions) {
+ for (sz = 0, i = 0; i <= c->regions->max_region_id; i++)
+ sz += c->memory[i].total;
- /* Filter out idle clients. */
- switch (utilization_type) {
- case UTILIZATION_TYPE_ENGINE_TIME:
- if (!c->total_engine_time)
- return 0;
- break;
- case UTILIZATION_TYPE_TOTAL_CYCLES:
- if (!c->total_total_cycles)
- return 0;
- break;
+ if (sz == 0)
+ return 0;
}
/* Print header when moving to a different DRM card. */
@@ -234,7 +238,9 @@ print_client(struct igt_drm_client *c, struct
igt_drm_client **prevc,
lines++;
- for (i = 0; c->samples > 1 && i <= c->engines->max_engine_id; i++) {
+ for (i = 0;
+ c->engines->num_engines && i <= c->engines->max_engine_id;
+ i++) {
double pct;
if (!c->engines->capacity[i])
--
greets
--
Christian Gmeiner, MSc
https://christian-gmeiner.info/privacypolicy
^ permalink raw reply related [flat|nested] 11+ messages in thread
* ✗ Fi.CI.BUILD: failure for gputop: Add memory only utilization type (rev2)
2024-11-21 9:38 [PATCH i-g-t] gputop: Add memory only utilization type Christian Gmeiner
` (3 preceding siblings ...)
2024-11-22 12:01 ` ✗ i915.CI.BAT: failure " Patchwork
@ 2024-11-22 21:24 ` Patchwork
2024-11-23 9:03 ` ✗ Xe.CI.Full: failure for gputop: Add memory only utilization type Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-11-22 21:24 UTC (permalink / raw)
To: Christian Gmeiner; +Cc: igt-dev
== Series Details ==
Series: gputop: Add memory only utilization type (rev2)
URL : https://patchwork.freedesktop.org/series/141689/
State : failure
== Summary ==
Applying: gputop: Add memory only utilization type
Patch failed at 0001 gputop: Add memory only utilization type
When you have resolved this problem, run "git am --continue".
If you prefer to skip this patch, run "git am --skip" instead.
To restore the original branch and stop patching, run "git am --abort".
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.Full: failure for gputop: Add memory only utilization type
2024-11-21 9:38 [PATCH i-g-t] gputop: Add memory only utilization type Christian Gmeiner
` (4 preceding siblings ...)
2024-11-22 21:24 ` ✗ Fi.CI.BUILD: failure for gputop: Add memory only utilization type (rev2) Patchwork
@ 2024-11-23 9:03 ` Patchwork
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2024-11-23 9:03 UTC (permalink / raw)
To: Christian Gmeiner; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 125456 bytes --]
== Series Details ==
Series: gputop: Add memory only utilization type
URL : https://patchwork.freedesktop.org/series/141689/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8122_full -> XEIGTPW_12174_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12174_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12174_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 XEIGTPW_12174_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_draw_crc@draw-method-blt@xrgb8888-4tiled:
- shard-bmg: [PASS][1] -> [DMESG-FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_draw_crc@draw-method-blt@xrgb8888-4tiled.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-2/igt@kms_draw_crc@draw-method-blt@xrgb8888-4tiled.html
* igt@kms_flip@flip-vs-suspend@a-dp4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][3]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_flip@flip-vs-suspend@a-dp4.html
Known issues
------------
Here are the changes found in XEIGTPW_12174_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_getstats:
- shard-dg2-set2: NOTRUN -> [SKIP][4] ([Intel XE#2423])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@core_getstats.html
* igt@core_getversion@basic:
- shard-dg2-set2: NOTRUN -> [FAIL][5] ([Intel XE#3440])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@core_getversion@basic.html
* igt@core_hotunplug@hotrebind-lateclose:
- shard-dg2-set2: NOTRUN -> [SKIP][6] ([Intel XE#1885])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@core_hotunplug@hotrebind-lateclose.html
* igt@core_hotunplug@hotreplug:
- shard-dg2-set2: [PASS][7] -> [DMESG-WARN][8] ([Intel XE#3468] / [Intel XE#3521])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@core_hotunplug@hotreplug.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@core_hotunplug@hotreplug.html
* igt@core_hotunplug@hotreplug-lateclose:
- shard-dg2-set2: [PASS][9] -> [SKIP][10] ([Intel XE#1885])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@core_hotunplug@hotreplug-lateclose.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@core_hotunplug@hotreplug-lateclose.html
* igt@fbdev@eof:
- shard-dg2-set2: [PASS][11] -> [SKIP][12] ([Intel XE#2134]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@fbdev@eof.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@fbdev@eof.html
* igt@kms_atomic@crtc-invalid-params-fence@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][13] -> [DMESG-WARN][14] ([Intel XE#1727]) +4 other tests dmesg-warn
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_atomic@crtc-invalid-params-fence@pipe-a-hdmi-a-6.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_atomic@crtc-invalid-params-fence@pipe-a-hdmi-a-6.html
* igt@kms_atomic_interruptible@atomic-setmode:
- shard-bmg: NOTRUN -> [DMESG-WARN][15] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-2/igt@kms_atomic_interruptible@atomic-setmode.html
* igt@kms_atomic_interruptible@atomic-setmode@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][16] ([Intel XE#1727] / [Intel XE#3468]) +3 other tests dmesg-warn
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_atomic_interruptible@atomic-setmode@pipe-a-hdmi-a-6.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
- shard-dg2-set2: [PASS][17] -> [SKIP][18] ([Intel XE#2423] / [i915#2575]) +68 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#316]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2327])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +5 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p:
- shard-bmg: [PASS][23] -> [SKIP][24] ([Intel XE#2314] / [Intel XE#2894])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#367])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#367]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2887]) +8 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [PASS][28] -> [SKIP][29] ([Intel XE#2136] / [Intel XE#2351]) +6 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#787]) +132 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#455] / [Intel XE#787]) +24 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#3432]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_chamelium_hpd@hdmi-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2252]) +5 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#373]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2390])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: NOTRUN -> [FAIL][37] ([Intel XE#1178])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][38] ([Intel XE#3304])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-128x42@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][39] ([Intel XE#1727]) +2 other tests incomplete
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_cursor_crc@cursor-offscreen-128x42@pipe-a-hdmi-a-6.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2320]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#308])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][42] ([Intel XE#1727] / [Intel XE#3468])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-6.html
* igt@kms_cursor_edge_walk@256x256-right-edge@pipe-d-hdmi-a-3:
- shard-bmg: [PASS][43] -> [DMESG-WARN][44] ([Intel XE#3468]) +25 other tests dmesg-warn
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_cursor_edge_walk@256x256-right-edge@pipe-d-hdmi-a-3.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_cursor_edge_walk@256x256-right-edge@pipe-d-hdmi-a-3.html
* igt@kms_cursor_edge_walk@64x64-top-bottom:
- shard-bmg: NOTRUN -> [DMESG-FAIL][45] ([Intel XE#3468]) +4 other tests dmesg-fail
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@kms_cursor_edge_walk@64x64-top-bottom.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-bmg: [PASS][46] -> [SKIP][47] ([Intel XE#2291]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-varying-size:
- shard-bmg: [PASS][48] -> [DMESG-FAIL][49] ([Intel XE#3468]) +4 other tests dmesg-fail
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2286])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-bmg: [PASS][51] -> [SKIP][52] ([Intel XE#3070])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_draw_crc@draw-method-blt@xrgb2101010-4tiled:
- shard-bmg: [PASS][53] -> [INCOMPLETE][54] ([Intel XE#1727] / [Intel XE#3468]) +1 other test incomplete
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_draw_crc@draw-method-blt@xrgb2101010-4tiled.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-2/igt@kms_draw_crc@draw-method-blt@xrgb2101010-4tiled.html
* igt@kms_dsc@dsc-with-formats:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2244])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_dsc@dsc-with-formats.html
* igt@kms_feature_discovery@display-2x:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#2373])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_feature_discovery@display-2x.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: [PASS][58] -> [SKIP][59] ([Intel XE#2316]) +5 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-1/igt@kms_flip@2x-blocking-wf_vblank.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][60] -> [FAIL][61] ([Intel XE#301])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a6-dp4.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][62] ([Intel XE#3321] / [Intel XE#3487]) +1 other test fail
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][63] ([Intel XE#2882])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank@bc-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2316]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@blocking-wf_vblank@b-dp2:
- shard-bmg: NOTRUN -> [DMESG-WARN][65] ([Intel XE#3468]) +11 other tests dmesg-warn
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@kms_flip@blocking-wf_vblank@b-dp2.html
* igt@kms_flip@dpms-vs-vblank-race:
- shard-lnl: [PASS][66] -> [FAIL][67] ([Intel XE#3097])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-2/igt@kms_flip@dpms-vs-vblank-race.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-lnl-5/igt@kms_flip@dpms-vs-vblank-race.html
* igt@kms_flip@dpms-vs-vblank-race@c-edp1:
- shard-lnl: [PASS][68] -> [FAIL][69] ([Intel XE#3333])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-2/igt@kms_flip@dpms-vs-vblank-race@c-edp1.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-lnl-5/igt@kms_flip@dpms-vs-vblank-race@c-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [FAIL][70] ([Intel XE#3486])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][71] ([Intel XE#301] / [Intel XE#3486])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp4.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6:
- shard-dg2-set2: NOTRUN -> [FAIL][72] ([Intel XE#301]) +4 other tests fail
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [PASS][73] -> [FAIL][74] ([Intel XE#886]) +1 other test fail
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-bmg: [PASS][75] -> [FAIL][76] ([Intel XE#2882]) +2 other tests fail
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2293]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#2136]) +97 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2380]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([i915#5274])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2311]) +9 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2312]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
- shard-dg2-set2: [PASS][84] -> [SKIP][85] ([Intel XE#2136]) +18 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [FAIL][86] ([Intel XE#2333]) +4 other tests fail
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#651]) +13 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2352]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#653]) +13 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2313]) +16 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#2136] / [Intel XE#2351]) +26 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#346])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2934])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2927])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_lease@invalid-create-leases:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2423] / [i915#2575]) +106 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_lease@invalid-create-leases.html
* igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256:
- shard-dg2-set2: NOTRUN -> [FAIL][96] ([Intel XE#616]) +2 other tests fail
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [FAIL][97] ([Intel XE#361]) +1 other test fail
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#2763]) +11 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2763] / [Intel XE#455]) +4 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2763]) +4 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#870]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#1129])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@deep-pkgc:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#908])
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#2446]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@kms_pm_rpm@modeset-lpsp.html
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#1439] / [Intel XE#3141])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2-set2: [PASS][106] -> [SKIP][107] ([Intel XE#2446]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@kms_pm_rpm@modeset-non-lpsp.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1489]) +5 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#1489])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@pr-suspend:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#2234] / [Intel XE#2850]) +7 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@kms_psr@pr-suspend.html
* igt@kms_psr@psr-cursor-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#2351])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_psr@psr-cursor-plane-move.html
* igt@kms_psr@psr2-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#2850] / [Intel XE#929]) +7 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@kms_psr@psr2-sprite-plane-move.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2414])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#1127])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#3414]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#455]) +13 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2413]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-2/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2426])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [PASS][119] -> [FAIL][120] ([Intel XE#899]) +1 other test fail
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][121] ([Intel XE#3468]) +1 other test dmesg-warn
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-6.html
* igt@kms_vrr@flipline:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#1499]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@kms_vrr@flipline.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [PASS][123] -> [SKIP][124] ([Intel XE#1499])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_vrr@negative-basic.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#756])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#1091] / [Intel XE#2849])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@testdisplay:
- shard-dg2-set2: [PASS][127] -> [SKIP][128] ([Intel XE#2423])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@testdisplay.html
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@testdisplay.html
* igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue:
- shard-lnl: [PASS][129] -> [FAIL][130] ([Intel XE#2667])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-4/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-lnl-3/igt@xe_drm_fdinfo@utilization-single-full-load-destroy-queue.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2905]) +5 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug@discovery-empty:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2905]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-2/igt@xe_eudebug@discovery-empty.html
* igt@xe_evict@evict-beng-large-multi-vm-cm:
- shard-bmg: NOTRUN -> [FAIL][133] ([Intel XE#2364])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-2/igt@xe_evict@evict-beng-large-multi-vm-cm.html
* igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate:
- shard-dg2-set2: [PASS][134] -> [SKIP][135] ([Intel XE#1130]) +118 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@xe_exec_balancer@many-cm-virtual-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2322]) +4 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html
* igt@xe_exec_basic@once-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#1130]) +160 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@xe_exec_basic@once-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-imm:
- shard-bmg: [PASS][138] -> [DMESG-WARN][139] ([Intel XE#1727]) +3 other tests dmesg-warn
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-imm.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-imm.html
* igt@xe_exec_fault_mode@once-userptr-invalidate-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#288]) +13 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@xe_exec_fault_mode@once-userptr-invalidate-imm.html
* igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate:
- shard-dg2-set2: [PASS][141] -> [DMESG-WARN][142] ([Intel XE#3515])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][143] ([Intel XE#3343])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-bmg: [PASS][144] -> [DMESG-WARN][145] ([Intel XE#3343] / [Intel XE#3468])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
- shard-bmg: NOTRUN -> [DMESG-FAIL][146] ([Intel XE#3467] / [Intel XE#3468])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#2229])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@small-bar:
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#586])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@xe_mmap@small-bar.html
* igt@xe_oa@non-privileged-map-oa-buffer:
- shard-dg2-set2: NOTRUN -> [SKIP][149] ([Intel XE#3573]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@xe_oa@non-privileged-map-oa-buffer.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#977])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@xe_pat@pat-index-xe2.html
* igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][151] ([Intel XE#1173])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#2284] / [Intel XE#366])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@d3hot-mmap-system:
- shard-bmg: [PASS][153] -> [DMESG-WARN][154] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@xe_pm@d3hot-mmap-system.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@xe_pm@d3hot-mmap-system.html
* igt@xe_pm@d3hot-mocs:
- shard-dg2-set2: [PASS][155] -> [DMESG-WARN][156] ([Intel XE#3468])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@xe_pm@d3hot-mocs.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@xe_pm@d3hot-mocs.html
* igt@xe_pm@s2idle-mocs:
- shard-dg2-set2: NOTRUN -> [DMESG-FAIL][157] ([Intel XE#1727] / [Intel XE#3468])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@xe_pm@s2idle-mocs.html
- shard-lnl: [PASS][158] -> [DMESG-WARN][159] ([Intel XE#2932])
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-4/igt@xe_pm@s2idle-mocs.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-lnl-5/igt@xe_pm@s2idle-mocs.html
* igt@xe_pm@s3-mocs:
- shard-bmg: [PASS][160] -> [DMESG-FAIL][161] ([Intel XE#1727] / [Intel XE#3468])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-1/igt@xe_pm@s3-mocs.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-2/igt@xe_pm@s3-mocs.html
* igt@xe_pm@s4-basic:
- shard-lnl: [PASS][162] -> [ABORT][163] ([Intel XE#1358] / [Intel XE#1607])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-7/igt@xe_pm@s4-basic.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-lnl-2/igt@xe_pm@s4-basic.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#944])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@xe_query@multigpu-query-invalid-extension.html
#### Possible fixes ####
* igt@core_setmaster@master-drop-set-root:
- shard-dg2-set2: [FAIL][165] ([Intel XE#3249]) -> [PASS][166]
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@core_setmaster@master-drop-set-root.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@core_setmaster@master-drop-set-root.html
* igt@core_setmaster@master-drop-set-user:
- shard-dg2-set2: [FAIL][167] ([Intel XE#3339]) -> [PASS][168]
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@core_setmaster@master-drop-set-user.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@core_setmaster@master-drop-set-user.html
* igt@fbdev@write:
- shard-dg2-set2: [SKIP][169] ([Intel XE#2134]) -> [PASS][170]
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@fbdev@write.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@fbdev@write.html
* igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs:
- shard-lnl: [FAIL][171] ([Intel XE#1701]) -> [PASS][172] +1 other test pass
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-5/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-lnl-1/igt@kms_atomic_transition@modeset-transition-nonblocking@1x-outputs.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg2-set2: [SKIP][173] ([Intel XE#2136]) -> [PASS][174] +29 other tests pass
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: [DMESG-FAIL][175] ([Intel XE#3468]) -> [PASS][176] +21 other tests pass
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][177] ([Intel XE#3468]) -> [PASS][178] +1 other test pass
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [INCOMPLETE][179] ([Intel XE#3468]) -> [PASS][180] +1 other test pass
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg2-set2: [SKIP][181] ([Intel XE#2423] / [i915#2575]) -> [PASS][182] +87 other tests pass
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-bmg: [SKIP][183] ([Intel XE#2291]) -> [PASS][184]
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-bmg: [SKIP][185] ([Intel XE#2316]) -> [PASS][186]
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][187] ([Intel XE#3486]) -> [PASS][188]
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][189] ([Intel XE#301]) -> [PASS][190]
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][191] ([Intel XE#3321] / [Intel XE#3486]) -> [PASS][192]
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-blocking-wf-vblank:
- shard-lnl: [FAIL][193] ([Intel XE#886]) -> [PASS][194] +6 other tests pass
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-8/igt@kms_flip@flip-vs-blocking-wf-vblank.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-lnl-1/igt@kms_flip@flip-vs-blocking-wf-vblank.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-bmg: [INCOMPLETE][195] ([Intel XE#2635]) -> [PASS][196]
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a3:
- shard-bmg: [INCOMPLETE][197] -> [PASS][198] +1 other test pass
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a3.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a3.html
* igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3:
- shard-bmg: [DMESG-WARN][199] ([Intel XE#3468]) -> [PASS][200] +107 other tests pass
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-dg2-set2: [SKIP][201] ([Intel XE#2136] / [Intel XE#2351]) -> [PASS][202] +13 other tests pass
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_frontbuffer_tracking@basic:
- shard-dg2-set2: [SKIP][203] ([Intel XE#2351]) -> [PASS][204]
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_frontbuffer_tracking@basic.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pm_rpm@modeset-stress-extra-wait:
- shard-bmg: [INCOMPLETE][205] ([Intel XE#2864]) -> [PASS][206]
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_pm_rpm@modeset-stress-extra-wait.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@kms_pm_rpm@modeset-stress-extra-wait.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-dg2-set2: [SKIP][207] ([Intel XE#2446]) -> [PASS][208] +2 other tests pass
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_pm_rpm@system-suspend-modeset.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-bmg: [INCOMPLETE][209] ([Intel XE#1727] / [Intel XE#2864] / [Intel XE#3468]) -> [PASS][210]
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_pm_rpm@universal-planes-dpms.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_pm_rpm@universal-planes-dpms@plane-50:
- shard-bmg: [DMESG-WARN][211] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][212] +4 other tests pass
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_pm_rpm@universal-planes-dpms@plane-50.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@kms_pm_rpm@universal-planes-dpms@plane-50.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-top:
- shard-bmg: [DMESG-FAIL][213] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][214] +1 other test pass
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-2/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][215] ([Intel XE#2883]) -> [PASS][216] +2 other tests pass
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-lnl-5/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_setmode@basic@pipe-b-hdmi-a-3:
- shard-bmg: [FAIL][217] ([Intel XE#3559]) -> [PASS][218] +4 other tests pass
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-1/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@kms_setmode@basic@pipe-b-hdmi-a-3.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-lnl: [FAIL][219] ([Intel XE#899]) -> [PASS][220]
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3:
- shard-bmg: [INCOMPLETE][221] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][222] +4 other tests pass
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-hdmi-a-3.html
* igt@xe_evict@evict-mixed-threads-small:
- shard-bmg: [DMESG-WARN][223] ([Intel XE#1727]) -> [PASS][224] +5 other tests pass
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@xe_evict@evict-mixed-threads-small.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-2/igt@xe_evict@evict-mixed-threads-small.html
* igt@xe_exec_balancer@twice-virtual-basic:
- shard-dg2-set2: [SKIP][225] ([Intel XE#1130]) -> [PASS][226] +156 other tests pass
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@xe_exec_balancer@twice-virtual-basic.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@xe_exec_balancer@twice-virtual-basic.html
* igt@xe_exec_reset@cm-gt-reset:
- shard-dg2-set2: [INCOMPLETE][227] -> [PASS][228] +2 other tests pass
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@xe_exec_reset@cm-gt-reset.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@xe_exec_reset@cm-gt-reset.html
* igt@xe_exec_reset@parallel-gt-reset:
- shard-bmg: [DMESG-WARN][229] -> [PASS][230] +11 other tests pass
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@xe_exec_reset@parallel-gt-reset.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@xe_exec_reset@parallel-gt-reset.html
* igt@xe_exec_threads@threads-cm-fd-userptr:
- shard-bmg: [FAIL][231] -> [PASS][232]
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@xe_exec_threads@threads-cm-fd-userptr.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@xe_exec_threads@threads-cm-fd-userptr.html
* igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready:
- shard-bmg: [DMESG-WARN][233] ([Intel XE#3467]) -> [PASS][234] +1 other test pass
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-wait_for_lmem_ready.html
* igt@xe_fault_injection@vm-create-fail-xe_pt_create:
- shard-dg2-set2: [DMESG-WARN][235] ([Intel XE#3467]) -> [PASS][236] +1 other test pass
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
* igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch:
- shard-bmg: [DMESG-WARN][237] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][238] +1 other test pass
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-1/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@xe_fault_injection@vm-create-fail-xe_vm_create_scratch.html
* igt@xe_live_ktest@xe_migrate:
- shard-bmg: [SKIP][239] ([Intel XE#1192]) -> [PASS][240]
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@xe_live_ktest@xe_migrate.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@xe_live_ktest@xe_migrate.html
* igt@xe_module_load@unload:
- shard-dg2-set2: [DMESG-WARN][241] ([Intel XE#1727]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@xe_module_load@unload.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@xe_module_load@unload.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-bmg: [DMESG-WARN][243] ([Intel XE#1616] / [Intel XE#1727] / [Intel XE#3468]) -> [PASS][244] +1 other test pass
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-bmg: [DMESG-WARN][245] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@xe_pm@s3-d3hot-basic-exec.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_pm@s4-mocs:
- shard-bmg: [DMESG-WARN][247] ([Intel XE#1727] / [Intel XE#2280] / [Intel XE#3468]) -> [PASS][248]
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@xe_pm@s4-mocs.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@xe_pm@s4-mocs.html
#### Warnings ####
* igt@kms_atomic_interruptible@atomic-setmode:
- shard-dg2-set2: [SKIP][249] ([Intel XE#2423] / [i915#2575]) -> [DMESG-WARN][250] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_atomic_interruptible@atomic-setmode.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_atomic_interruptible@atomic-setmode.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-dg2-set2: [SKIP][251] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][252] ([Intel XE#316]) +1 other test skip
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-bmg: [DMESG-FAIL][253] ([Intel XE#3468]) -> [INCOMPLETE][254] ([Intel XE#3225] / [Intel XE#3468])
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-2/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][255] ([Intel XE#316]) -> [SKIP][256] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][257] ([Intel XE#316]) -> [SKIP][258] ([Intel XE#2136]) +2 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_big_fb@linear-8bpp-rotate-270.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][259] ([Intel XE#2136]) -> [SKIP][260] ([Intel XE#316]) +1 other test skip
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_big_fb@linear-8bpp-rotate-90.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_big_fb@linear-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-270:
- shard-dg2-set2: [SKIP][261] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][262] ([Intel XE#1124]) +4 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: [SKIP][263] ([Intel XE#619]) -> [SKIP][264] ([Intel XE#2136] / [Intel XE#2351])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2-set2: [SKIP][265] ([Intel XE#1124]) -> [SKIP][266] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: [SKIP][267] ([Intel XE#2136]) -> [SKIP][268] ([Intel XE#1124]) +6 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-set2: [SKIP][269] ([Intel XE#2136]) -> [SKIP][270] ([Intel XE#610])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2-set2: [SKIP][271] ([Intel XE#1124]) -> [SKIP][272] ([Intel XE#2136]) +4 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: [SKIP][273] ([Intel XE#2423] / [i915#2575]) -> [SKIP][274] ([Intel XE#2191]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: [SKIP][275] ([Intel XE#2191]) -> [SKIP][276] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2160x1440p:
- shard-dg2-set2: [SKIP][277] ([Intel XE#367]) -> [SKIP][278] ([Intel XE#2423] / [i915#2575]) +6 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2160x1440p:
- shard-dg2-set2: [SKIP][279] ([Intel XE#2423] / [i915#2575]) -> [SKIP][280] ([Intel XE#367]) +3 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][281] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][282] ([Intel XE#2136] / [Intel XE#2351])
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][283] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][284] ([Intel XE#455] / [Intel XE#787]) +4 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][285] ([Intel XE#2907]) -> [SKIP][286] ([Intel XE#2136]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][287] ([Intel XE#3442]) -> [SKIP][288] ([Intel XE#2136])
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][289] ([Intel XE#2136]) -> [SKIP][290] ([Intel XE#2907])
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][291] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][292] ([Intel XE#2136]) +5 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc:
- shard-dg2-set2: [SKIP][293] ([Intel XE#2136]) -> [SKIP][294] ([Intel XE#455] / [Intel XE#787]) +7 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: [SKIP][295] ([Intel XE#314]) -> [SKIP][296] ([Intel XE#2136] / [Intel XE#2351])
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_cdclk@mode-transition-all-outputs.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-dg2-set2: [SKIP][297] ([Intel XE#2423] / [i915#2575]) -> [SKIP][298] ([Intel XE#306]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_chamelium_color@ctm-red-to-blue.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_color@degamma:
- shard-dg2-set2: [SKIP][299] ([Intel XE#306]) -> [SKIP][300] ([Intel XE#2423] / [i915#2575]) +3 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_chamelium_color@degamma.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-dg2-set2: [SKIP][301] ([Intel XE#2423] / [i915#2575]) -> [SKIP][302] ([Intel XE#373]) +14 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_chamelium_frames@vga-frame-dump.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: [SKIP][303] ([Intel XE#373]) -> [SKIP][304] ([Intel XE#2423] / [i915#2575]) +6 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@kms_chamelium_hpd@hdmi-hpd.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_color@ctm-signed:
- shard-dg2-set2: [SKIP][305] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][306] ([Intel XE#1727])
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_color@ctm-signed.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_color@ctm-signed.html
* igt@kms_color@degamma:
- shard-dg2-set2: [INCOMPLETE][307] ([Intel XE#1727]) -> [SKIP][308] ([Intel XE#2423] / [i915#2575])
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_color@degamma.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@kms_color@degamma.html
* igt@kms_content_protection@atomic:
- shard-bmg: [FAIL][309] ([Intel XE#1178]) -> [SKIP][310] ([Intel XE#2341])
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_content_protection@atomic.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-dg2-set2: [SKIP][311] ([Intel XE#2423] / [i915#2575]) -> [SKIP][312] ([Intel XE#307])
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_content_protection@dp-mst-type-0.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2-set2: [SKIP][313] ([Intel XE#307]) -> [SKIP][314] ([Intel XE#2423] / [i915#2575])
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@kms_content_protection@dp-mst-type-1.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-dg2-set2: [SKIP][315] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][316] ([Intel XE#1727] / [Intel XE#3468])
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_cursor_crc@cursor-suspend.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-bmg: [INCOMPLETE][317] ([Intel XE#1727]) -> [SKIP][318] ([Intel XE#2291])
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-dg2-set2: [SKIP][319] ([Intel XE#323]) -> [SKIP][320] ([Intel XE#2423] / [i915#2575])
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-bmg: [DMESG-WARN][321] ([Intel XE#3468]) -> [SKIP][322] ([Intel XE#2291])
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][323] ([Intel XE#877]) -> [SKIP][324] ([Intel XE#2291])
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: [SKIP][325] ([Intel XE#2423] / [i915#2575]) -> [SKIP][326] ([Intel XE#323])
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@torture-bo:
- shard-dg2-set2: [DMESG-WARN][327] ([Intel XE#2932]) -> [SKIP][328] ([Intel XE#2423] / [i915#2575])
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_cursor_legacy@torture-bo.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@kms_cursor_legacy@torture-bo.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: [SKIP][329] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][330] ([Intel XE#455]) +1 other test skip
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_dsc@dsc-with-bpc-formats.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2-set2: [SKIP][331] ([Intel XE#776]) -> [SKIP][332] ([Intel XE#2136])
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_fbcon_fbt@psr.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: [SKIP][333] ([Intel XE#2423] / [i915#2575]) -> [SKIP][334] ([Intel XE#1138])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_feature_discovery@display-4x.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-bmg: [DMESG-WARN][335] ([Intel XE#3468]) -> [SKIP][336] ([Intel XE#2316]) +1 other test skip
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: [SKIP][337] ([Intel XE#2316]) -> [FAIL][338] ([Intel XE#2882])
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [DMESG-WARN][339] ([Intel XE#3468]) -> [DMESG-FAIL][340] ([Intel XE#1727] / [Intel XE#3468])
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3:
- shard-bmg: [DMESG-WARN][341] ([Intel XE#3468]) -> [DMESG-WARN][342] ([Intel XE#1727] / [Intel XE#3468])
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3:
- shard-bmg: [DMESG-WARN][343] ([Intel XE#3468]) -> [FAIL][344] ([Intel XE#3486]) +1 other test fail
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-dg2-set2: [SKIP][345] ([Intel XE#2423] / [i915#2575]) -> [FAIL][346] ([Intel XE#301])
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg2-set2: [SKIP][347] ([Intel XE#2423] / [i915#2575]) -> [INCOMPLETE][348] ([Intel XE#2049] / [Intel XE#2597])
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_flip@flip-vs-suspend.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-bmg: [DMESG-WARN][349] ([Intel XE#3468]) -> [DMESG-FAIL][350] ([Intel XE#3468]) +1 other test dmesg-fail
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-2/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-dg2-set2: [INCOMPLETE][351] ([Intel XE#1727] / [Intel XE#3468]) -> [SKIP][352] ([Intel XE#2136])
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-dg2-set2: [SKIP][353] ([Intel XE#2136]) -> [SKIP][354] ([Intel XE#455]) +1 other test skip
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][355] ([Intel XE#455]) -> [SKIP][356] ([Intel XE#2136] / [Intel XE#2351]) +1 other test skip
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: [SKIP][357] ([Intel XE#455]) -> [SKIP][358] ([Intel XE#2136]) +2 other tests skip
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move:
- shard-dg2-set2: [SKIP][359] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][360] ([Intel XE#651]) +11 other tests skip
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][361] ([Intel XE#2312]) -> [SKIP][362] ([Intel XE#2311]) +10 other tests skip
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt:
- shard-dg2-set2: [SKIP][363] ([Intel XE#651]) -> [SKIP][364] ([Intel XE#2136]) +23 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc:
- shard-dg2-set2: [SKIP][365] ([Intel XE#651]) -> [SKIP][366] ([Intel XE#2136] / [Intel XE#2351]) +9 other tests skip
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: [DMESG-FAIL][367] ([Intel XE#3468]) -> [FAIL][368] ([Intel XE#2333]) +13 other tests fail
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [FAIL][369] ([Intel XE#2333]) -> [DMESG-FAIL][370] ([Intel XE#3468]) +2 other tests dmesg-fail
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-rte:
- shard-bmg: [INCOMPLETE][371] ([Intel XE#3468]) -> [FAIL][372] ([Intel XE#2333])
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][373] ([Intel XE#2312]) -> [FAIL][374] ([Intel XE#2333]) +2 other tests fail
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
- shard-bmg: [DMESG-FAIL][375] ([Intel XE#3468]) -> [SKIP][376] ([Intel XE#2312]) +2 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [FAIL][377] ([Intel XE#2333]) -> [SKIP][378] ([Intel XE#2312]) +6 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][379] ([Intel XE#2136]) -> [SKIP][380] ([Intel XE#651]) +26 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt.html
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][381] ([Intel XE#2311]) -> [SKIP][382] ([Intel XE#2312]) +19 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][383] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][384] ([Intel XE#658]) +1 other test skip
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][385] ([Intel XE#2312]) -> [SKIP][386] ([Intel XE#2313]) +6 other tests skip
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][387] ([Intel XE#2136]) -> [SKIP][388] ([Intel XE#653]) +22 other tests skip
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][389] ([Intel XE#2313]) -> [SKIP][390] ([Intel XE#2312]) +19 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][391] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][392] ([Intel XE#653]) +5 other tests skip
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][393] ([Intel XE#653]) -> [SKIP][394] ([Intel XE#2136] / [Intel XE#2351]) +4 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: [SKIP][395] ([Intel XE#658]) -> [SKIP][396] ([Intel XE#2136] / [Intel XE#2351])
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][397] ([Intel XE#653]) -> [SKIP][398] ([Intel XE#2136]) +16 other tests skip
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-set2: [SKIP][399] ([Intel XE#2423] / [i915#2575]) -> [SKIP][400] ([Intel XE#605])
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_getfb@getfb-reject-ccs.html
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2-set2: [DMESG-WARN][401] ([Intel XE#3468]) -> [SKIP][402] ([Intel XE#2423] / [i915#2575])
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_hdr@bpc-switch-suspend.html
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][403] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][404] ([Intel XE#3544])
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: [SKIP][405] ([Intel XE#2423] / [i915#2575]) -> [SKIP][406] ([Intel XE#356])
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane@pixel-format:
- shard-bmg: [INCOMPLETE][407] ([Intel XE#3468]) -> [DMESG-WARN][408] ([Intel XE#3468])
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@kms_plane@pixel-format.html
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_plane@pixel-format.html
* igt@kms_plane_cursor@primary:
- shard-dg2-set2: [SKIP][409] ([Intel XE#2423] / [i915#2575]) -> [FAIL][410] ([Intel XE#616])
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_plane_cursor@primary.html
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@kms_plane_cursor@primary.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2-set2: [SKIP][411] ([Intel XE#2423] / [i915#2575]) -> [SKIP][412] ([Intel XE#455]) +9 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_plane_multiple@tiling-y.html
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2-set2: [SKIP][413] ([Intel XE#2423] / [i915#2575]) -> [SKIP][414] ([Intel XE#2763] / [Intel XE#455]) +2 other tests skip
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: [SKIP][415] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][416] ([Intel XE#2423] / [i915#2575])
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: [SKIP][417] ([Intel XE#2136]) -> [SKIP][418] ([Intel XE#870]) +1 other test skip
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_pm_backlight@fade-with-suspend.html
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg2-set2: [ABORT][419] ([Intel XE#3468]) -> [SKIP][420] ([Intel XE#2446])
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_pm_rpm@dpms-non-lpsp.html
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-dg2-set2: [SKIP][421] ([Intel XE#2446]) -> [DMESG-FAIL][422] ([Intel XE#1727] / [Intel XE#3468])
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_pm_rpm@i2c.html
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_pm_rpm@i2c.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-dg2-set2: [SKIP][423] ([Intel XE#2136]) -> [SKIP][424] ([Intel XE#1489]) +6 other tests skip
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][425] ([Intel XE#1489]) -> [SKIP][426] ([Intel XE#2136]) +7 other tests skip
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-dg2-set2: [SKIP][427] ([Intel XE#1122]) -> [SKIP][428] ([Intel XE#2136])
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-no-drrs:
- shard-dg2-set2: [SKIP][429] ([Intel XE#2136] / [Intel XE#2351]) -> [SKIP][430] ([Intel XE#2850] / [Intel XE#929]) +8 other tests skip
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_psr@fbc-pr-no-drrs.html
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@kms_psr@fbc-pr-no-drrs.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-dg2-set2: [SKIP][431] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][432] ([Intel XE#2136]) +8 other tests skip
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@kms_psr@fbc-psr2-dpms.html
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][433] ([Intel XE#2136]) -> [SKIP][434] ([Intel XE#2850] / [Intel XE#929]) +10 other tests skip
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: [SKIP][435] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][436] ([Intel XE#2136] / [Intel XE#2351]) +2 other tests skip
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_psr@psr-dpms.html
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][437] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][438] ([Intel XE#2351]) +1 other test skip
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@kms_psr@psr-sprite-plane-onoff.html
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: [SKIP][439] ([Intel XE#2136]) -> [SKIP][440] ([Intel XE#2939])
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: [SKIP][441] ([Intel XE#2423] / [i915#2575]) -> [SKIP][442] ([Intel XE#3414]) +1 other test skip
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_rotation_crc@bad-tiling.html
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2-set2: [SKIP][443] ([Intel XE#2423] / [i915#2575]) -> [SKIP][444] ([Intel XE#1127])
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [SKIP][445] ([Intel XE#2423] / [i915#2575]) -> [FAIL][446] ([Intel XE#1729])
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][447] ([Intel XE#2509]) -> [SKIP][448] ([Intel XE#2426])
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2-set2: [SKIP][449] ([Intel XE#2423] / [i915#2575]) -> [SKIP][450] ([Intel XE#362])
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@cmrr:
- shard-dg2-set2: [SKIP][451] ([Intel XE#2168]) -> [SKIP][452] ([Intel XE#2423] / [i915#2575])
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@kms_vrr@cmrr.html
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@kms_vrr@cmrr.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: [SKIP][453] ([Intel XE#455]) -> [SKIP][454] ([Intel XE#2423] / [i915#2575]) +7 other tests skip
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@kms_vrr@flip-dpms.html
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-dg2-set2: [SKIP][455] ([Intel XE#2423] / [i915#2575]) -> [SKIP][456] ([Intel XE#2168])
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_vrr@lobf.html
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@kms_vrr@lobf.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2-set2: [SKIP][457] ([Intel XE#2423] / [i915#2575]) -> [SKIP][458] ([Intel XE#756]) +1 other test skip
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: [SKIP][459] ([Intel XE#1123]) -> [SKIP][460] ([Intel XE#1130])
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0x369.html
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: [SKIP][461] ([Intel XE#1130]) -> [SKIP][462] ([Intel XE#1126])
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_eudebug@basic-vm-bind-extended-discovery:
- shard-dg2-set2: [SKIP][463] ([Intel XE#2905]) -> [SKIP][464] ([Intel XE#1130]) +7 other tests skip
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@xe_eudebug@basic-vm-bind-extended-discovery.html
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@xe_eudebug@basic-vm-bind-extended-discovery.html
* igt@xe_eudebug_online@basic-breakpoint:
- shard-dg2-set2: [SKIP][465] ([Intel XE#1130]) -> [SKIP][466] ([Intel XE#2905]) +12 other tests skip
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@xe_eudebug_online@basic-breakpoint.html
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@xe_eudebug_online@basic-breakpoint.html
* igt@xe_evict@evict-beng-mixed-many-threads-large:
- shard-bmg: [INCOMPLETE][467] ([Intel XE#1473]) -> [TIMEOUT][468] ([Intel XE#1473])
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-1/igt@xe_evict@evict-beng-mixed-many-threads-large.html
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-large.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [TIMEOUT][469] ([Intel XE#1473] / [Intel XE#402]) -> [SKIP][470] ([Intel XE#1130])
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-bmg: [INCOMPLETE][471] ([Intel XE#1473] / [Intel XE#3468]) -> [TIMEOUT][472] ([Intel XE#1473])
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@xe_evict@evict-mixed-many-threads-large.html
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-large.html
- shard-dg2-set2: [SKIP][473] ([Intel XE#1130]) -> [TIMEOUT][474] ([Intel XE#1473])
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@xe_evict@evict-mixed-many-threads-large.html
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind:
- shard-dg2-set2: [DMESG-WARN][475] ([Intel XE#1727]) -> [SKIP][476] ([Intel XE#1130]) +1 other test skip
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html
* igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch:
- shard-dg2-set2: [SKIP][477] ([Intel XE#288]) -> [SKIP][478] ([Intel XE#1130]) +29 other tests skip
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch.html
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-prefetch.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: [SKIP][479] ([Intel XE#1130]) -> [SKIP][480] ([Intel XE#288]) +29 other tests skip
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init:
- shard-dg2-set2: [DMESG-WARN][481] ([Intel XE#3343]) -> [SKIP][482] ([Intel XE#1130])
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ct_init.html
* igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute:
- shard-bmg: [DMESG-FAIL][483] ([Intel XE#3467]) -> [FAIL][484] ([Intel XE#3499])
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_execute.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare:
- shard-bmg: [DMESG-FAIL][485] ([Intel XE#3467] / [Intel XE#3468]) -> [FAIL][486] ([Intel XE#3499])
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-6/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_prepare.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
- shard-dg2-set2: [SKIP][487] ([Intel XE#1130]) -> [DMESG-WARN][488] ([Intel XE#3467]) +3 other tests dmesg-warn
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
* igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc:
- shard-dg2-set2: [DMESG-WARN][489] ([Intel XE#3467]) -> [SKIP][490] ([Intel XE#1130])
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@xe_fault_injection@vm-bind-fail-xe_vma_ops_alloc.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: [SKIP][491] ([Intel XE#560]) -> [SKIP][492] ([Intel XE#1130])
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@xe_media_fill@media-fill.html
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@xe_media_fill@media-fill.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [FAIL][493] ([Intel XE#3546]) -> [DMESG-WARN][494] ([Intel XE#3467])
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@xe_module_load@reload.html
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@xe_module_load@reload.html
- shard-bmg: [DMESG-WARN][495] ([Intel XE#3467]) -> [DMESG-WARN][496] ([Intel XE#3467] / [Intel XE#3468])
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-1/igt@xe_module_load@reload.html
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-2/igt@xe_module_load@reload.html
* igt@xe_oa@invalid-oa-metric-set-id:
- shard-dg2-set2: [SKIP][497] ([Intel XE#3573]) -> [SKIP][498] ([Intel XE#1130]) +4 other tests skip
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@xe_oa@invalid-oa-metric-set-id.html
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@xe_oa@invalid-oa-metric-set-id.html
* igt@xe_oa@invalid-remove-userspace-config:
- shard-dg2-set2: [SKIP][499] ([Intel XE#1130]) -> [SKIP][500] ([Intel XE#3573]) +8 other tests skip
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@xe_oa@invalid-remove-userspace-config.html
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@xe_oa@invalid-remove-userspace-config.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][501] ([Intel XE#979]) -> [SKIP][502] ([Intel XE#1130])
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@xe_pat@pat-index-xelpg.html
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@write:
- shard-dg2-set2: [SKIP][503] ([Intel XE#1061]) -> [FAIL][504] ([Intel XE#1173])
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@xe_peer2peer@write.html
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-463/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: [SKIP][505] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][506] ([Intel XE#1130]) +3 other tests skip
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-463/igt@xe_pm@d3cold-mmap-vram.html
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_pm@d3hot-mmap-system:
- shard-dg2-set2: [SKIP][507] ([Intel XE#1130]) -> [DMESG-WARN][508] ([Intel XE#3468])
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@xe_pm@d3hot-mmap-system.html
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@xe_pm@d3hot-mmap-system.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][509] ([Intel XE#1130]) -> [SKIP][510] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-466/igt@xe_pm@s2idle-d3cold-basic-exec.html
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [SKIP][511] ([Intel XE#1130]) -> [DMESG-WARN][512] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569]) +1 other test dmesg-warn
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@xe_pm@s3-basic-exec.html
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@xe_pm@s3-basic-exec.html
* igt@xe_pm@s4-vm-bind-prefetch:
- shard-dg2-set2: [SKIP][513] ([Intel XE#1130]) -> [DMESG-WARN][514] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests dmesg-warn
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@xe_pm@s4-vm-bind-prefetch.html
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-435/igt@xe_pm@s4-vm-bind-prefetch.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-dg2-set2: [SKIP][515] ([Intel XE#1130]) -> [SKIP][516] ([Intel XE#944]) +4 other tests skip
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@xe_query@multigpu-query-cs-cycles.html
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-dg2-set2: [SKIP][517] ([Intel XE#944]) -> [SKIP][518] ([Intel XE#1130]) +2 other tests skip
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-435/igt@xe_query@multigpu-query-uc-fw-version-guc.html
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@xe_query@multigpu-query-uc-fw-version-guc.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: [SKIP][519] ([Intel XE#1130]) -> [SKIP][520] ([Intel XE#3342])
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-434/igt@xe_sriov_flr@flr-vf1-clear.html
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-436/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-dg2-set2: [ABORT][521] ([Intel XE#3421]) -> [SKIP][522] ([Intel XE#1130])
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-436/igt@xe_wedged@wedged-at-any-timeout.html
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-466/igt@xe_wedged@wedged-at-any-timeout.html
- shard-bmg: [ABORT][523] ([Intel XE#3421]) -> [ABORT][524] ([Intel XE#3421] / [Intel XE#3468] / [Intel XE#3521])
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-bmg-2/igt@xe_wedged@wedged-at-any-timeout.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-dg2-set2: [ABORT][525] ([Intel XE#3075] / [Intel XE#3084]) -> [SKIP][526] ([Intel XE#1130])
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8122/shard-dg2-433/igt@xe_wedged@wedged-mode-toggle.html
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/shard-dg2-434/igt@xe_wedged@wedged-mode-toggle.html
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[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#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[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#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2280
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2635]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2635
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2667]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2667
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2864]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2864
[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#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#3070]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3070
[Intel XE#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084
[Intel XE#3097]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3097
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3249
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321
[Intel XE#3333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3333
[Intel XE#3339]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3339
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3421
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3440]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3440
[Intel XE#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#3486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3486
[Intel XE#3487]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3487
[Intel XE#3499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3499
[Intel XE#3515]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3515
[Intel XE#3521]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3521
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#3546]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3546
[Intel XE#3559]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3559
[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#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[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#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[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#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[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
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
Build changes
-------------
* IGT: IGT_8122 -> IGTPW_12174
* Linux: xe-2259-bb17c42521f57b592e9ad49daca1f9f9045d3199 -> xe-2261-d571d186fd9e588dd4acdbbde1fb0935b84c233a
IGTPW_12174: 12174
IGT_8122: 8122
xe-2259-bb17c42521f57b592e9ad49daca1f9f9045d3199: bb17c42521f57b592e9ad49daca1f9f9045d3199
xe-2261-d571d186fd9e588dd4acdbbde1fb0935b84c233a: d571d186fd9e588dd4acdbbde1fb0935b84c233a
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12174/index.html
[-- Attachment #2: Type: text/html, Size: 161979 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t] gputop: Add memory only utilization type
2024-11-22 20:19 ` Christian Gmeiner
@ 2024-11-25 9:03 ` Tvrtko Ursulin
0 siblings, 0 replies; 11+ messages in thread
From: Tvrtko Ursulin @ 2024-11-25 9:03 UTC (permalink / raw)
To: Christian Gmeiner; +Cc: igt-dev, kernel-dev, tursulin, Christian Gmeiner
On 22/11/2024 20:19, Christian Gmeiner wrote:
> Hi
>
>>> Hi Tvrtko
>>>
>>>>> From: Christian Gmeiner <cgmeiner@igalia.com>
>>>>>
>>>>> Add special handling for drivers that only provide memory utilization
>>>>> fdinfo.
>>>>
>>>> To check I am following correctly - special in this context means avoid
>>>> displaying empty fields, or avoid a crash, or?
>>>
>>> - Avoid early return in print_client(..) -> no output show.
>>> - Avoid a crash in strcmp(..).
>>>
>>>>
>>>>> Signed-off-by: Christian Gmeiner <cgmeiner@igalia.com>
>>>>> ---
>>>>> tools/gputop.c | 20 ++++++++++++++++++++
>>>>> 1 file changed, 20 insertions(+)
>>>>>
>>>>> diff --git a/tools/gputop.c b/tools/gputop.c
>>>>> index 43b01f566..4135d84c1 100644
>>>>> --- a/tools/gputop.c
>>>>> +++ b/tools/gputop.c
>>>>> @@ -35,6 +35,7 @@
>>>>> enum utilization_type {
>>>>> UTILIZATION_TYPE_ENGINE_TIME,
>>>>> UTILIZATION_TYPE_TOTAL_CYCLES,
>>>>> + UTILIZATION_TYPE_MEMORY_ONLY,
>>>>> };
>>>>>
>>>>> static const char *bars[] = { " ", "▏", "▎", "▍", "▌", "▋", "▊", "▉", "█" };
>>>>> @@ -141,6 +142,9 @@ engines_identical(const struct igt_drm_client *c,
>>>>> c->engines->max_engine_id != pc->engines->max_engine_id)
>>>>> return false;
>>>>>
>>>>> + if (!c->engines->num_engines && !pc->engines->num_engines)
>>>>> + return true;
>>>>
>>>> strcmp() below crashes?
>>>>
>>>
>>> Correct.
>>>
>>>> I would move the check you added to be first in this function. I think
>>>> that makes most sense from the flow wise - checking it before max_engine_id.
>>>>
>>>
>>> Will do in v2.
>>>
>>>> With this fixed what remains broken?
>>>>
>>>
>>> Show any output :)
>>
>> I totally missed it. Shows the value of commit messages. ;)
>>
>> Okay.. I wonder if we can get away without adding
>> UTILIZATION_TYPE_MEMORY_ONLY and instead make the code skip unavailable
>> data.
>>
>> Would something like this work:
>>
>> diff --git a/tools/gputop.c b/tools/gputop.c
>> index 43b01f566ac8..9639a7f5fde8 100644
>> --- a/tools/gputop.c
>> +++ b/tools/gputop.c
>> @@ -137,6 +137,9 @@ engines_identical(const struct igt_drm_client *c,
>> {
>> unsigned int i;
>>
>> + if (!c->engines->num_engines && !pc->engines->num_engines)
>> + return true;
>> +
>> if (c->engines->num_engines != pc->engines->num_engines ||
>> c->engines->max_engine_id != pc->engines->max_engine_id)
>> return false;
>> @@ -188,27 +191,20 @@ print_client(struct igt_drm_client *c, struct
>> igt_drm_client **prevc,
>> uint64_t sz;
>> int len;
>>
>> + if (c->samples < 2)
>> + return 0;
>> +
>> if (c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_TOTAL_CYCLES &&
>> - c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_CYCLES)
>> + c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_CYCLES) {
>> utilization_type = UTILIZATION_TYPE_TOTAL_CYCLES;
>> - else if (c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_ENGINE_TIME)
>> + /* Filter out idle clients. */
>> + if (c->engines->num_engines && !c->total_total_cycles)
>> + return 0;
>> + } else if (c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_ENGINE_TIME) {
>> utilization_type = UTILIZATION_TYPE_ENGINE_TIME;
>> - else
>> - return 0;
>> -
>> - if (c->samples < 2)
>> - return 0;
>> -
>> - /* Filter out idle clients. */
>> - switch (utilization_type) {
>> - case UTILIZATION_TYPE_ENGINE_TIME:
>> - if (!c->total_engine_time)
>> - return 0;
>> - break;
>> - case UTILIZATION_TYPE_TOTAL_CYCLES:
>> - if (!c->total_total_cycles)
>> - return 0;
>> - break;
>> + /* Filter out idle clients. */
>> + if (c->engines->num_engines && !c->total_engine_time)
>> + return 0;
>> }
>>
>> /* Print header when moving to a different DRM card. */
>> @@ -234,7 +230,9 @@ print_client(struct igt_drm_client *c, struct
>> igt_drm_client **prevc,
>>
>> lines++;
>>
>> - for (i = 0; c->samples > 1 && i <= c->engines->max_engine_id; i++) {
>> + for (i = 0;
>> + c->engines->num_engines && i <= c->engines->max_engine_id;
>> + i++) {
>> double pct;
>>
>> if (!c->engines->capacity[i])
>>
>
> With your patch I get:
>
> DRM minor 128
> PID MEM RSS NAME
> 1308 16M 16M kmscube
> 1308 0B 0B kmscube
>
>
> I think we should filter out the 0B MEM's one too - or?
Yeah it makes sense to be consistent.
> diff --git a/tools/gputop.c b/tools/gputop.c
> index 43b01f566..459cf213f 100644
> --- a/tools/gputop.c
> +++ b/tools/gputop.c
> @@ -137,6 +137,9 @@ engines_identical(const struct igt_drm_client *c,
> {
> unsigned int i;
>
> + if (!c->engines->num_engines && !pc->engines->num_engines)
> + return true;
> +
> if (c->engines->num_engines != pc->engines->num_engines ||
> c->engines->max_engine_id != pc->engines->max_engine_id)
> return false;
> @@ -188,27 +191,28 @@ print_client(struct igt_drm_client *c, struct
> igt_drm_client **prevc,
> uint64_t sz;
> int len;
>
> + if (c->samples < 2)
> + return 0;
> +
> if (c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_TOTAL_CYCLES &&
> - c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_CYCLES)
> + c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_CYCLES) {
> utilization_type = UTILIZATION_TYPE_TOTAL_CYCLES;
> - else if (c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_ENGINE_TIME)
> + /* Filter out idle clients. */
> + if (c->engines->num_engines && !c->total_total_cycles)
> + return 0;
> + } else if (c->utilization_mask & IGT_DRM_CLIENT_UTILIZATION_ENGINE_TIME) {
> utilization_type = UTILIZATION_TYPE_ENGINE_TIME;
> - else
> - return 0;
> + /* Filter out idle clients. */
> + if (c->engines->num_engines && !c->total_engine_time)
> + return 0;
> + }
>
> - if (c->samples < 2)
> - return 0;
> + if (c->regions->num_regions) {
> + for (sz = 0, i = 0; i <= c->regions->max_region_id; i++)
> + sz += c->memory[i].total;
Looks like this should work just fine. I could suggest how the loop
could be consolidated with the one a bit lower in the function and maybe
even "idle client" check consolidated to a helper but it is probably not
worth the effort.
Regards,
Tvrtko
>
> - /* Filter out idle clients. */
> - switch (utilization_type) {
> - case UTILIZATION_TYPE_ENGINE_TIME:
> - if (!c->total_engine_time)
> - return 0;
> - break;
> - case UTILIZATION_TYPE_TOTAL_CYCLES:
> - if (!c->total_total_cycles)
> - return 0;
> - break;
> + if (sz == 0)
> + return 0;
> }
>
> /* Print header when moving to a different DRM card. */
> @@ -234,7 +238,9 @@ print_client(struct igt_drm_client *c, struct
> igt_drm_client **prevc,
>
> lines++;
>
> - for (i = 0; c->samples > 1 && i <= c->engines->max_engine_id; i++) {
> + for (i = 0;
> + c->engines->num_engines && i <= c->engines->max_engine_id;
> + i++) {
> double pct;
>
> if (!c->engines->capacity[i])
>
>
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2024-11-25 9:03 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-21 9:38 [PATCH i-g-t] gputop: Add memory only utilization type Christian Gmeiner
2024-11-21 10:03 ` Tvrtko Ursulin
2024-11-21 18:35 ` Christian Gmeiner
2024-11-22 8:54 ` Tvrtko Ursulin
2024-11-22 20:19 ` Christian Gmeiner
2024-11-25 9:03 ` Tvrtko Ursulin
2024-11-22 11:20 ` ✗ GitLab.Pipeline: warning for " Patchwork
2024-11-22 11:35 ` ✓ Xe.CI.BAT: success " Patchwork
2024-11-22 12:01 ` ✗ i915.CI.BAT: failure " Patchwork
2024-11-22 21:24 ` ✗ Fi.CI.BUILD: failure for gputop: Add memory only utilization type (rev2) Patchwork
2024-11-23 9:03 ` ✗ Xe.CI.Full: failure for gputop: Add memory only utilization type Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox