* [PATCH i-g-t] tests/kms: correct index validation logic
@ 2026-04-20 7:49 Jing-Ping Jan
2026-04-20 18:16 ` Kamil Konieczny
` (4 more replies)
0 siblings, 5 replies; 17+ messages in thread
From: Jing-Ping Jan @ 2026-04-20 7:49 UTC (permalink / raw)
To: igt-dev; +Cc: Jing-Ping Jan
Based on the original implementation and the comment above the function,
it appears the expected behavior is for the plane indices to remain
consistent with those in crtc->planes. Therefore, after swapping the old
and new primary planes, we must update the index in igt_plane_t to
ensure it matches the corresponding index in crtc->planes.
Therefore, we should expect the indices of the old and new primary
planes to remain unchanged after swapping them.
Signed-off-by: Jing-Ping Jan <jingpingjan@google.com>
---
lib/igt_kms.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index bec96f267..405a04640 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -2982,8 +2982,8 @@ void igt_display_reset_outputs(igt_display_t *display)
igt_swap(*old_primary, *new_primary);
igt_swap(old_primary->index, new_primary->index);
- igt_assert_neq(old_primary->index, 0);
- igt_assert_eq(new_primary->index, 0);
+ igt_assert_eq(old_primary->index, 0);
+ igt_assert_neq(new_primary->index, 0);
} else {
igt_assert(old_primary == new_primary);
--
2.54.0.rc1.513.gad8abe7a5a-goog
^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t] tests/kms: correct index validation logic
2026-04-20 7:49 [PATCH i-g-t] tests/kms: correct index validation logic Jing-Ping Jan
@ 2026-04-20 18:16 ` Kamil Konieczny
2026-04-21 2:07 ` Jing-Ping Jan
2026-04-21 21:28 ` ✓ i915.CI.BAT: success for tests/kms: correct index validation logic (rev2) Patchwork
` (3 subsequent siblings)
4 siblings, 1 reply; 17+ messages in thread
From: Kamil Konieczny @ 2026-04-20 18:16 UTC (permalink / raw)
To: Jing-Ping Jan
Cc: igt-dev, Juha-Pekka Heikkila, Juha-Pekka Heikkila, Karthik B S,
Swati Sharma
Hi Jing-Ping,
On 2026-04-20 at 15:49:25 +0800, Jing-Ping Jan wrote:
> Based on the original implementation and the comment above the function,
> it appears the expected behavior is for the plane indices to remain
> consistent with those in crtc->planes. Therefore, after swapping the old
> and new primary planes, we must update the index in igt_plane_t to
> ensure it matches the corresponding index in crtc->planes.
>
> Therefore, we should expect the indices of the old and new primary
> planes to remain unchanged after swapping them.
>
> Signed-off-by: Jing-Ping Jan <jingpingjan@google.com>
> ---
> lib/igt_kms.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index bec96f267..405a04640 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -2982,8 +2982,8 @@ void igt_display_reset_outputs(igt_display_t *display)
> igt_swap(*old_primary, *new_primary);
> igt_swap(old_primary->index, new_primary->index);
>
> - igt_assert_neq(old_primary->index, 0);
> - igt_assert_eq(new_primary->index, 0);
> + igt_assert_eq(old_primary->index, 0);
> + igt_assert_neq(new_primary->index, 0);
Do you have an error report for this? This code is lib
and should also trigger in Intel CI, unless it is a dead
code.
+cc Karthik, Swati, and J-P
Regards,
Kamil
> } else {
> igt_assert(old_primary == new_primary);
>
> --
> 2.54.0.rc1.513.gad8abe7a5a-goog
>
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t] tests/kms: correct index validation logic
2026-04-20 18:16 ` Kamil Konieczny
@ 2026-04-21 2:07 ` Jing-Ping Jan
2026-04-21 6:13 ` Karthik B S
0 siblings, 1 reply; 17+ messages in thread
From: Jing-Ping Jan @ 2026-04-21 2:07 UTC (permalink / raw)
To: Kamil Konieczny, Jing-Ping Jan, igt-dev, Juha-Pekka Heikkila,
Juha-Pekka Heikkila, Karthik B S, Swati Sharma
Hi Kamil,
On Tue, Apr 21, 2026 at 2:16 AM Kamil Konieczny
<kamil.konieczny@linux.intel.com> wrote:
>
> Hi Jing-Ping,
> On 2026-04-20 at 15:49:25 +0800, Jing-Ping Jan wrote:
> > Based on the original implementation and the comment above the function,
> > it appears the expected behavior is for the plane indices to remain
> > consistent with those in crtc->planes. Therefore, after swapping the old
> > and new primary planes, we must update the index in igt_plane_t to
> > ensure it matches the corresponding index in crtc->planes.
> >
> > Therefore, we should expect the indices of the old and new primary
> > planes to remain unchanged after swapping them.
> >
> > Signed-off-by: Jing-Ping Jan <jingpingjan@google.com>
> > ---
> > lib/igt_kms.c | 4 ++--
> > 1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> > index bec96f267..405a04640 100644
> > --- a/lib/igt_kms.c
> > +++ b/lib/igt_kms.c
> > @@ -2982,8 +2982,8 @@ void igt_display_reset_outputs(igt_display_t *display)
> > igt_swap(*old_primary, *new_primary);
> > igt_swap(old_primary->index, new_primary->index);
> >
> > - igt_assert_neq(old_primary->index, 0);
> > - igt_assert_eq(new_primary->index, 0);
> > + igt_assert_eq(old_primary->index, 0);
> > + igt_assert_neq(new_primary->index, 0);
>
> Do you have an error report for this? This code is lib
> and should also trigger in Intel CI, unless it is a dead
> code.
>
> +cc Karthik, Swati, and J-P
>
> Regards,
> Kamil
>
> > } else {
> > igt_assert(old_primary == new_primary);
> >
> > --
> > 2.54.0.rc1.513.gad8abe7a5a-goog
> >
I do not have a specific error report available at this time. This
change is based on an issue we encountered and the existing comment in
the code, which indicates that plane indices should remain consistent
with those in crtc->planes after a swap.
Regarding the lack of Intel CI hits, I suspect the bug depends on the
primary plane not being the first plane in the driver's index. CI
likely hasn't encountered this because it doesn't test this specific
plane ordering.
Please see the following output from our testing:
(kms_getfb:20359) INFO: IGT-Version: IGT_VERSION-GIT (arm64) (Linux:
6.6.118-android15-8-g34da635f9b82-ab14801981-4k aarch64)
(kms_getfb:20359) INFO: Using IGT_SRANDOM=1771906178 for randomisation
(kms_getfb:20359) INFO: Opened device: /dev/dri/card0
(kms_getfb:20359) DEBUG: Test requirement passed: !(fd<0)
(kms_getfb:20359) DEBUG: Test requirement passed: has_getfb_iface(fd)
(kms_getfb:20359) DEBUG: display: init {
(kms_getfb:20359) DEBUG: Test requirement passed:
igt_has_drm_cap(drm_fd, DRM_CAP_VBLANK_HIGH_CRTC)
(kms_getfb:20359) DEBUG: Test requirement passed:
resources->count_crtcs <= IGT_MAX_PIPES
(kms_getfb:20359) DEBUG: display: DSI-1: Selecting pipe None
(kms_getfb:20359) DEBUG: display: DSI-2: Selecting pipe None
(kms_getfb:20359) DEBUG: display: DP-1: Selecting pipe None
(kms_getfb:20359) DEBUG: display: DP-1: Selecting pipe None
(kms_getfb:20359) DEBUG: Test requirement passed: !(pipe >=
igt_display_n_crtcs(display) || !igt_crtc_for_pipe(display,
pipe)->valid)
(kms_getfb:20359) DEBUG: Test requirement passed: !(pipe >=
igt_display_n_crtcs(display) || !igt_crtc_for_pipe(display,
pipe)->valid)
(kms_getfb:20359) DEBUG: igt_create_fb_with_bo_size(width=2152,
height=2076, format=XR24(0x34325258), modifier=0x0, size=0)
(kms_getfb:20359) DEBUG: igt_create_fb_with_bo_size(handle=1, pitch=8640)
(kms_getfb:20359) DEBUG: Test requirement passed: igt_has_fb_modifiers(fd)
(kms_getfb:20359) DEBUG: Test requirement passed:
cairo_surface_status(fb->cairo_surface) == CAIRO_STATUS_SUCCESS
(kms_getfb:20359) DEBUG: Test requirement passed: !(pipe >=
igt_display_n_crtcs(display) || !igt_crtc_for_pipe(display,
pipe)->valid)
(kms_getfb:20359) DEBUG: Test requirement passed: !(pipe >=
igt_display_n_crtcs(display) || !igt_crtc_for_pipe(display,
pipe)->valid)
(kms_getfb:20359) DEBUG: igt_create_fb_with_bo_size(width=1080,
height=2364, format=XR24(0x34325258), modifier=0x0, size=0)
(kms_getfb:20359) DEBUG: igt_create_fb_with_bo_size(handle=1, pitch=4352)
(kms_getfb:20359) DEBUG: Test requirement passed: igt_has_fb_modifiers(fd)
(kms_getfb:20359) DEBUG: Test requirement passed:
cairo_surface_status(fb->cairo_surface) == CAIRO_STATUS_SUCCESS
(kms_getfb:20359) CRITICAL: Test assertion failure function
igt_display_reset_outputs, file
external/igt-gpu-tools/lib/igt_kms.c:2985:
(kms_getfb:20359) CRITICAL: Failed assertion: old_primary->index != 0
(kms_getfb:20359) CRITICAL: error: 0 == 0
(kms_getfb:20359) INFO: Stack trace: not implemented
Regards,
Jing-Ping Jan
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t] tests/kms: correct index validation logic
2026-04-21 2:07 ` Jing-Ping Jan
@ 2026-04-21 6:13 ` Karthik B S
2026-04-21 6:43 ` [PATCH i-g-t v2] " Jing-Ping Jan
0 siblings, 1 reply; 17+ messages in thread
From: Karthik B S @ 2026-04-21 6:13 UTC (permalink / raw)
To: Jing-Ping Jan, Kamil Konieczny, igt-dev, Juha-Pekka Heikkila,
Juha-Pekka Heikkila, Swati Sharma
Hi Jing-Ping,
On 4/21/2026 7:37 AM, Jing-Ping Jan wrote:
> Hi Kamil,
> On Tue, Apr 21, 2026 at 2:16 AM Kamil Konieczny
> <kamil.konieczny@linux.intel.com> wrote:
>> Hi Jing-Ping,
>> On 2026-04-20 at 15:49:25 +0800, Jing-Ping Jan wrote:
>>> Based on the original implementation and the comment above the function,
>>> it appears the expected behavior is for the plane indices to remain
>>> consistent with those in crtc->planes. Therefore, after swapping the old
>>> and new primary planes, we must update the index in igt_plane_t to
>>> ensure it matches the corresponding index in crtc->planes.
>>>
>>> Therefore, we should expect the indices of the old and new primary
>>> planes to remain unchanged after swapping them.
>>>
>>> Signed-off-by: Jing-Ping Jan <jingpingjan@google.com>
>>> ---
>>> lib/igt_kms.c | 4 ++--
>>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>>
>>> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
>>> index bec96f267..405a04640 100644
>>> --- a/lib/igt_kms.c
>>> +++ b/lib/igt_kms.c
>>> @@ -2982,8 +2982,8 @@ void igt_display_reset_outputs(igt_display_t *display)
>>> igt_swap(*old_primary, *new_primary);
>>> igt_swap(old_primary->index, new_primary->index);
>>>
>>> - igt_assert_neq(old_primary->index, 0);
>>> - igt_assert_eq(new_primary->index, 0);
>>> + igt_assert_eq(old_primary->index, 0);
>>> + igt_assert_neq(new_primary->index, 0);
>> Do you have an error report for this? This code is lib
>> and should also trigger in Intel CI, unless it is a dead
>> code.
>>
>> +cc Karthik, Swati, and J-P
>>
>> Regards,
>> Kamil
>>
>>> } else {
>>> igt_assert(old_primary == new_primary);
>>>
>>> --
>>> 2.54.0.rc1.513.gad8abe7a5a-goog
>>>
> I do not have a specific error report available at this time. This
> change is based on an issue we encountered and the existing comment in
> the code, which indicates that plane indices should remain consistent
> with those in crtc->planes after a swap.
>
> Regarding the lack of Intel CI hits, I suspect the bug depends on the
> primary plane not being the first plane in the driver's index. CI
> likely hasn't encountered this because it doesn't test this specific
> plane ordering.
>
> Please see the following output from our testing:
>
> (kms_getfb:20359) INFO: IGT-Version: IGT_VERSION-GIT (arm64) (Linux:
> 6.6.118-android15-8-g34da635f9b82-ab14801981-4k aarch64)
> (kms_getfb:20359) INFO: Using IGT_SRANDOM=1771906178 for randomisation
> (kms_getfb:20359) INFO: Opened device: /dev/dri/card0
> (kms_getfb:20359) DEBUG: Test requirement passed: !(fd<0)
> (kms_getfb:20359) DEBUG: Test requirement passed: has_getfb_iface(fd)
> (kms_getfb:20359) DEBUG: display: init {
> (kms_getfb:20359) DEBUG: Test requirement passed:
> igt_has_drm_cap(drm_fd, DRM_CAP_VBLANK_HIGH_CRTC)
> (kms_getfb:20359) DEBUG: Test requirement passed:
> resources->count_crtcs <= IGT_MAX_PIPES
> (kms_getfb:20359) DEBUG: display: DSI-1: Selecting pipe None
> (kms_getfb:20359) DEBUG: display: DSI-2: Selecting pipe None
> (kms_getfb:20359) DEBUG: display: DP-1: Selecting pipe None
> (kms_getfb:20359) DEBUG: display: DP-1: Selecting pipe None
> (kms_getfb:20359) DEBUG: Test requirement passed: !(pipe >=
> igt_display_n_crtcs(display) || !igt_crtc_for_pipe(display,
> pipe)->valid)
> (kms_getfb:20359) DEBUG: Test requirement passed: !(pipe >=
> igt_display_n_crtcs(display) || !igt_crtc_for_pipe(display,
> pipe)->valid)
> (kms_getfb:20359) DEBUG: igt_create_fb_with_bo_size(width=2152,
> height=2076, format=XR24(0x34325258), modifier=0x0, size=0)
> (kms_getfb:20359) DEBUG: igt_create_fb_with_bo_size(handle=1, pitch=8640)
> (kms_getfb:20359) DEBUG: Test requirement passed: igt_has_fb_modifiers(fd)
> (kms_getfb:20359) DEBUG: Test requirement passed:
> cairo_surface_status(fb->cairo_surface) == CAIRO_STATUS_SUCCESS
> (kms_getfb:20359) DEBUG: Test requirement passed: !(pipe >=
> igt_display_n_crtcs(display) || !igt_crtc_for_pipe(display,
> pipe)->valid)
> (kms_getfb:20359) DEBUG: Test requirement passed: !(pipe >=
> igt_display_n_crtcs(display) || !igt_crtc_for_pipe(display,
> pipe)->valid)
> (kms_getfb:20359) DEBUG: igt_create_fb_with_bo_size(width=1080,
> height=2364, format=XR24(0x34325258), modifier=0x0, size=0)
> (kms_getfb:20359) DEBUG: igt_create_fb_with_bo_size(handle=1, pitch=4352)
> (kms_getfb:20359) DEBUG: Test requirement passed: igt_has_fb_modifiers(fd)
> (kms_getfb:20359) DEBUG: Test requirement passed:
> cairo_surface_status(fb->cairo_surface) == CAIRO_STATUS_SUCCESS
> (kms_getfb:20359) CRITICAL: Test assertion failure function
> igt_display_reset_outputs, file
> external/igt-gpu-tools/lib/igt_kms.c:2985:
> (kms_getfb:20359) CRITICAL: Failed assertion: old_primary->index != 0
> (kms_getfb:20359) CRITICAL: error: 0 == 0
> (kms_getfb:20359) INFO: Stack trace: not implemented
This change LGTM, thanks for the fix. Looks to be a miss in the
previous update. Please add fixes tag.
Fixes: ac37e1174cc4 ("lib/kms: Pimp the primary plane swapping")
With this,
Reviewed-by: Karthik B S <karthik.b.s@intel.com>
>
> Regards,
> Jing-Ping Jan
^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH i-g-t v2] tests/kms: correct index validation logic
2026-04-21 6:13 ` Karthik B S
@ 2026-04-21 6:43 ` Jing-Ping Jan
2026-04-21 9:28 ` Karthik B S
2026-04-21 12:02 ` Jani Nikula
0 siblings, 2 replies; 17+ messages in thread
From: Jing-Ping Jan @ 2026-04-21 6:43 UTC (permalink / raw)
To: igt-dev; +Cc: Jing-Ping Jan
Based on the original implementation and the comment above the function,
it appears the expected behavior is for the plane indices to remain
consistent with those in crtc->planes. Therefore, after swapping the old
and new primary planes, we must update the index in igt_plane_t to
ensure it matches the corresponding index in crtc->planes.
Therefore, we should expect the indices of the old and new primary
planes to remain unchanged after swapping them.
Fixes: ac37e1174cc4 ("lib/kms: Pimp the primary plane swapping")
Signed-off-by: Jing-Ping Jan <jingpingjan@google.com>
---
v2:
- Add Fixes tag to the commit message.
lib/igt_kms.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index bec96f267..405a04640 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -2982,8 +2982,8 @@ void igt_display_reset_outputs(igt_display_t *display)
igt_swap(*old_primary, *new_primary);
igt_swap(old_primary->index, new_primary->index);
- igt_assert_neq(old_primary->index, 0);
- igt_assert_eq(new_primary->index, 0);
+ igt_assert_eq(old_primary->index, 0);
+ igt_assert_neq(new_primary->index, 0);
} else {
igt_assert(old_primary == new_primary);
--
2.54.0.rc1.555.g9c883467ad-goog
^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t v2] tests/kms: correct index validation logic
2026-04-21 6:43 ` [PATCH i-g-t v2] " Jing-Ping Jan
@ 2026-04-21 9:28 ` Karthik B S
2026-04-21 12:02 ` Jani Nikula
1 sibling, 0 replies; 17+ messages in thread
From: Karthik B S @ 2026-04-21 9:28 UTC (permalink / raw)
To: Jing-Ping Jan, igt-dev
On 4/21/2026 12:13 PM, Jing-Ping Jan wrote:
> Based on the original implementation and the comment above the function,
> it appears the expected behavior is for the plane indices to remain
> consistent with those in crtc->planes. Therefore, after swapping the old
> and new primary planes, we must update the index in igt_plane_t to
> ensure it matches the corresponding index in crtc->planes.
>
> Therefore, we should expect the indices of the old and new primary
> planes to remain unchanged after swapping them.
>
> Fixes: ac37e1174cc4 ("lib/kms: Pimp the primary plane swapping")
> Signed-off-by: Jing-Ping Jan <jingpingjan@google.com>
Reviewed-by: Karthik B S <karthik.b.s@intel.com>
> ---
> v2:
> - Add Fixes tag to the commit message.
> lib/igt_kms.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index bec96f267..405a04640 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -2982,8 +2982,8 @@ void igt_display_reset_outputs(igt_display_t *display)
> igt_swap(*old_primary, *new_primary);
> igt_swap(old_primary->index, new_primary->index);
>
> - igt_assert_neq(old_primary->index, 0);
> - igt_assert_eq(new_primary->index, 0);
> + igt_assert_eq(old_primary->index, 0);
> + igt_assert_neq(new_primary->index, 0);
> } else {
> igt_assert(old_primary == new_primary);
>
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t v2] tests/kms: correct index validation logic
2026-04-21 6:43 ` [PATCH i-g-t v2] " Jing-Ping Jan
2026-04-21 9:28 ` Karthik B S
@ 2026-04-21 12:02 ` Jani Nikula
2026-04-22 17:05 ` Kamil Konieczny
1 sibling, 1 reply; 17+ messages in thread
From: Jani Nikula @ 2026-04-21 12:02 UTC (permalink / raw)
To: Jing-Ping Jan, igt-dev, Ville Syrjälä; +Cc: Jing-Ping Jan
On Tue, 21 Apr 2026, Jing-Ping Jan <jingpingjan@google.com> wrote:
> Based on the original implementation and the comment above the function,
> it appears the expected behavior is for the plane indices to remain
> consistent with those in crtc->planes. Therefore, after swapping the old
> and new primary planes, we must update the index in igt_plane_t to
> ensure it matches the corresponding index in crtc->planes.
>
> Therefore, we should expect the indices of the old and new primary
> planes to remain unchanged after swapping them.
>
> Fixes: ac37e1174cc4 ("lib/kms: Pimp the primary plane swapping")
With Fixes: it's customary to Cc the author and reviewer(s).
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Signed-off-by: Jing-Ping Jan <jingpingjan@google.com>
> ---
> v2:
> - Add Fixes tag to the commit message.
> lib/igt_kms.c | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> index bec96f267..405a04640 100644
> --- a/lib/igt_kms.c
> +++ b/lib/igt_kms.c
> @@ -2982,8 +2982,8 @@ void igt_display_reset_outputs(igt_display_t *display)
The whole context here is:
if (new_primary->index != 0) {
igt_assert(old_primary != new_primary);
igt_assert_eq(old_primary->index, 0);
igt_assert_neq(new_primary->index, 0);
> igt_swap(*old_primary, *new_primary);
> igt_swap(old_primary->index, new_primary->index);
>
> - igt_assert_neq(old_primary->index, 0);
> - igt_assert_eq(new_primary->index, 0);
> + igt_assert_eq(old_primary->index, 0);
> + igt_assert_neq(new_primary->index, 0);
Why do you expect these to remain the same as before the swapping?
That's why we are swapping.
> } else {
> igt_assert(old_primary == new_primary);
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 17+ messages in thread
* ✓ i915.CI.BAT: success for tests/kms: correct index validation logic (rev2)
2026-04-20 7:49 [PATCH i-g-t] tests/kms: correct index validation logic Jing-Ping Jan
2026-04-20 18:16 ` Kamil Konieczny
@ 2026-04-21 21:28 ` Patchwork
2026-04-21 22:20 ` ✓ Xe.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2026-04-21 21:28 UTC (permalink / raw)
To: Jing-Ping Jan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6199 bytes --]
== Series Details ==
Series: tests/kms: correct index validation logic (rev2)
URL : https://patchwork.freedesktop.org/series/165136/
State : success
== Summary ==
CI Bug Log - changes from IGT_8865 -> IGTPW_15025
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/index.html
Participating hosts (40 -> 40)
------------------------------
Additional (1): bat-adls-6
Missing (1): bat-dg2-13
Known issues
------------
Here are the changes found in IGTPW_15025 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- bat-adls-6: NOTRUN -> [SKIP][1] ([i915#15931])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/bat-adls-6/igt@dmabuf@all-tests.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic@basic:
- bat-adls-6: NOTRUN -> [SKIP][3] ([i915#15656])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/bat-adls-6/igt@gem_tiled_pread_basic@basic.html
* igt@i915_selftest@live:
- bat-dg2-8: [PASS][4] -> [DMESG-FAIL][5] ([i915#12061]) +1 other test dmesg-fail
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/bat-dg2-8/igt@i915_selftest@live.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/bat-dg2-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-14: [PASS][6] -> [DMESG-FAIL][7] ([i915#12061]) +1 other test dmesg-fail
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/bat-dg2-14/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [PASS][8] -> [DMESG-FAIL][9] ([i915#12061]) +1 other test dmesg-fail
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/bat-arls-6/igt@i915_selftest@live@workarounds.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/bat-arls-6/igt@i915_selftest@live@workarounds.html
* igt@intel_hwmon@hwmon-read:
- bat-adls-6: NOTRUN -> [SKIP][10] ([i915#7707]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/bat-adls-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adls-6: NOTRUN -> [SKIP][11] ([i915#4103]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-adls-6: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#3840])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/bat-adls-6/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-adls-6: NOTRUN -> [SKIP][13]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-adls-6: NOTRUN -> [SKIP][14] ([i915#5354])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-adls-6: NOTRUN -> [SKIP][15] ([i915#1072] / [i915#9732]) +3 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-adls-6: NOTRUN -> [SKIP][16] ([i915#3555])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][17] ([i915#3291]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/bat-adls-6/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@i915_selftest@live:
- fi-bsw-n3050: [DMESG-FAIL][18] ([i915#14808]) -> [PASS][19] +1 other test pass
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/fi-bsw-n3050/igt@i915_selftest@live.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/fi-bsw-n3050/igt@i915_selftest@live.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#14808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14808
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8865 -> IGTPW_15025
* Linux: CI_DRM_18350 -> CI_DRM_18352
CI-20190529: 20190529
CI_DRM_18350: 898b5aa235c5b269d6c745fd84270b296aa75469 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18352: 33d3b65ec51f2bddafa26a80249e26c78435f169 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15025: 3c7419a38fa01085c8446b72be5818bc411fc1c1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8865: 1c23bc1bdf01bf0ded2344cb217d7fe88de3b726 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/index.html
[-- Attachment #2: Type: text/html, Size: 7386 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread
* ✓ Xe.CI.BAT: success for tests/kms: correct index validation logic (rev2)
2026-04-20 7:49 [PATCH i-g-t] tests/kms: correct index validation logic Jing-Ping Jan
2026-04-20 18:16 ` Kamil Konieczny
2026-04-21 21:28 ` ✓ i915.CI.BAT: success for tests/kms: correct index validation logic (rev2) Patchwork
@ 2026-04-21 22:20 ` Patchwork
2026-04-22 2:36 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-22 5:16 ` ✓ i915.CI.Full: success " Patchwork
4 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2026-04-21 22:20 UTC (permalink / raw)
To: Jing-Ping Jan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3954 bytes --]
== Series Details ==
Series: tests/kms: correct index validation logic (rev2)
URL : https://patchwork.freedesktop.org/series/165136/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8865_BAT -> XEIGTPW_15025_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 13)
------------------------------
Additional (1): bat-ptl-vm
Known issues
------------
Here are the changes found in XEIGTPW_15025_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- bat-bmg-2: [PASS][1] -> [ABORT][2] ([Intel XE#7249] / [Intel XE#7578])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/bat-bmg-2/igt@core_hotunplug@unbind-rebind.html
* igt@xe_evict@evict-beng-small-cm:
- bat-ptl-vm: NOTRUN -> [SKIP][3] ([Intel XE#5764]) +10 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/bat-ptl-vm/igt@xe_evict@evict-beng-small-cm.html
* igt@xe_exec_balancer@twice-parallel-basic:
- bat-ptl-vm: NOTRUN -> [SKIP][4] ([Intel XE#7482]) +17 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/bat-ptl-vm/igt@xe_exec_balancer@twice-parallel-basic.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-ptl-vm: NOTRUN -> [SKIP][5] ([Intel XE#5775])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/bat-ptl-vm/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@vram:
- bat-ptl-vm: NOTRUN -> [SKIP][6] ([Intel XE#5776])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/bat-ptl-vm/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xehpc:
- bat-ptl-vm: NOTRUN -> [SKIP][7] ([Intel XE#5777] / [Intel XE#7590])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/bat-ptl-vm/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-ptl-vm: NOTRUN -> [SKIP][8] ([Intel XE#5771] / [Intel XE#7590])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/bat-ptl-vm/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-ptl-vm: NOTRUN -> [SKIP][9] ([Intel XE#5780] / [Intel XE#7590])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/bat-ptl-vm/igt@xe_pat@pat-index-xelpg.html
[Intel XE#5764]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5764
[Intel XE#5771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5771
[Intel XE#5775]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5775
[Intel XE#5776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5776
[Intel XE#5777]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5777
[Intel XE#5780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5780
[Intel XE#7249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7249
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
Build changes
-------------
* IGT: IGT_8865 -> IGTPW_15025
* Linux: xe-4921-898b5aa235c5b269d6c745fd84270b296aa75469 -> xe-4923-33d3b65ec51f2bddafa26a80249e26c78435f169
IGTPW_15025: 3c7419a38fa01085c8446b72be5818bc411fc1c1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8865: 1c23bc1bdf01bf0ded2344cb217d7fe88de3b726 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4921-898b5aa235c5b269d6c745fd84270b296aa75469: 898b5aa235c5b269d6c745fd84270b296aa75469
xe-4923-33d3b65ec51f2bddafa26a80249e26c78435f169: 33d3b65ec51f2bddafa26a80249e26c78435f169
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/index.html
[-- Attachment #2: Type: text/html, Size: 4831 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/kms: correct index validation logic (rev2)
2026-04-20 7:49 [PATCH i-g-t] tests/kms: correct index validation logic Jing-Ping Jan
` (2 preceding siblings ...)
2026-04-21 22:20 ` ✓ Xe.CI.BAT: " Patchwork
@ 2026-04-22 2:36 ` Patchwork
2026-04-22 5:16 ` ✓ i915.CI.Full: success " Patchwork
4 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2026-04-22 2:36 UTC (permalink / raw)
To: Jing-Ping Jan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 29750 bytes --]
== Series Details ==
Series: tests/kms: correct index validation logic (rev2)
URL : https://patchwork.freedesktop.org/series/165136/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8865_FULL -> XEIGTPW_15025_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15025_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15025_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 (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_15025_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_lowres@tiling-4@pipe-c-dp-2:
- shard-bmg: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-9/igt@kms_plane_lowres@tiling-4@pipe-c-dp-2.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-5/igt@kms_plane_lowres@tiling-4@pipe-c-dp-2.html
* igt@xe_page_reclaim@pat-index-xd:
- shard-bmg: NOTRUN -> [SKIP][3] +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-10/igt@xe_page_reclaim@pat-index-xd.html
Known issues
------------
Here are the changes found in XEIGTPW_15025_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#2327]) +5 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#607] / [Intel XE#7361])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +5 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#7679])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#367] / [Intel XE#7354])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-7/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2887]) +8 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-10/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2252]) +3 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-8/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_content_protection@atomic@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][11] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-9/igt@kms_content_protection@atomic@pipe-a-dp-2.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#6974])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-2/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#7642])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-10/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-bmg: NOTRUN -> [FAIL][14] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-8/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2320])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-10/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2321] / [Intel XE#7355])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#1340] / [Intel XE#7435])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#4331] / [Intel XE#7227])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2244]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-5/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#6126] / [Intel XE#776]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-7/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@plain-flip-fb-recreate@a-edp1:
- shard-lnl: [PASS][21] -> [FAIL][22] ([Intel XE#3098]) +1 other test fail
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-lnl-8/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#7178] / [Intel XE#7351]) +3 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#7178] / [Intel XE#7349])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#7179])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-5/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#4141]) +13 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2311]) +17 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2350] / [Intel XE#7503])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-8/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2313]) +16 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#6911] / [Intel XE#7466])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-bmg: NOTRUN -> [INCOMPLETE][32] ([Intel XE#6652] / [Intel XE#6819])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-2/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7283]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-8/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2938] / [Intel XE#7376])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-9/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][35] -> [FAIL][36] ([Intel XE#7340] / [Intel XE#7504])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2499])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-5/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#1489]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-9/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-7/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#3904] / [Intel XE#7342])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-10/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#1435])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-9/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_sharpness_filter@filter-tap:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#6503])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-7/igt@kms_sharpness_filter@filter-tap.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [FAIL][43] ([Intel XE#1729] / [Intel XE#7424])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#1499])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-1/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@xe_eudebug@vma-ufence:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#7636]) +7 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-5/igt@xe_eudebug@vma-ufence.html
* igt@xe_evict@evict-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#7140])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-1/igt@xe_evict@evict-small-multi-queue.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2322] / [Intel XE#7372]) +6 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-rebind.html
* igt@xe_exec_fault_mode@once-multi-queue-rebind-imm:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7136]) +6 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-8/igt@xe_exec_fault_mode@once-multi-queue-rebind-imm.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority-smem:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#6874]) +15 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-8/igt@xe_exec_multi_queue@few-execs-preempt-mode-dyn-priority-smem.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [PASS][50] -> [FAIL][51] ([Intel XE#5625])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-lnl-3/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#7138]) +4 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind.html
* igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#6281] / [Intel XE#7426])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-10/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70], [PASS][71], [PASS][72], [PASS][73], [PASS][74]) -> ([SKIP][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [PASS][87], [PASS][88], [DMESG-WARN][89], [DMESG-WARN][90], [DMESG-WARN][91], [DMESG-WARN][92], [DMESG-WARN][93], [DMESG-WARN][94], [DMESG-WARN][95], [PASS][96]) ([Intel XE#2457] / [Intel XE#7405] / [Intel XE#7725])
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-9/igt@xe_module_load@load.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-8/igt@xe_module_load@load.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-3/igt@xe_module_load@load.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-1/igt@xe_module_load@load.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-3/igt@xe_module_load@load.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-1/igt@xe_module_load@load.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-1/igt@xe_module_load@load.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-5/igt@xe_module_load@load.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-10/igt@xe_module_load@load.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-10/igt@xe_module_load@load.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-10/igt@xe_module_load@load.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-2/igt@xe_module_load@load.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-8/igt@xe_module_load@load.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-7/igt@xe_module_load@load.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-2/igt@xe_module_load@load.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-5/igt@xe_module_load@load.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-5/igt@xe_module_load@load.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-6/igt@xe_module_load@load.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-6/igt@xe_module_load@load.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-7/igt@xe_module_load@load.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-9/igt@xe_module_load@load.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-7/igt@xe_module_load@load.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-7/igt@xe_module_load@load.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-9/igt@xe_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-9/igt@xe_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-1/igt@xe_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-7/igt@xe_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-10/igt@xe_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-5/igt@xe_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-5/igt@xe_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-8/igt@xe_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-8/igt@xe_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-2/igt@xe_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-2/igt@xe_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-1/igt@xe_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-6/igt@xe_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-6/igt@xe_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-6/igt@xe_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-6/igt@xe_module_load@load.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-6/igt@xe_module_load@load.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-6/igt@xe_module_load@load.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-6/igt@xe_module_load@load.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-10/igt@xe_module_load@load.html
* igt@xe_multigpu_svm@mgpu-atomic-op-prefetch:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#6964])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-10/igt@xe_multigpu_svm@mgpu-atomic-op-prefetch.html
* igt@xe_non_msix@walker-interrupt-notification-non-msix:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#7622])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-5/igt@xe_non_msix@walker-interrupt-notification-non-msix.html
* igt@xe_pat@pat-sw-hw-suspend:
- shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#7590])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-1/igt@xe_pat@pat-sw-hw-suspend.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#4733] / [Intel XE#7417]) +3 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-10/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: NOTRUN -> [DMESG-WARN][101] ([Intel XE#5545])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-8/igt@xe_wedged@wedged-at-any-timeout.html
#### Possible fixes ####
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][102] ([Intel XE#7571]) -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [SKIP][104] ([Intel XE#7308]) -> [PASS][105]
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-1/igt@kms_hdmi_inject@inject-audio.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-1/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][106] ([Intel XE#4459]) -> [PASS][107] +1 other test pass
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-lnl-6/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][108] ([Intel XE#6321]) -> [PASS][109]
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-5/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-10/igt@xe_evict@evict-beng-mixed-many-threads-small.html
#### Warnings ####
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [FAIL][110] ([Intel XE#6569]) -> [FAIL][111] ([Intel XE#5937])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-10/igt@xe_sriov_flr@flr-vfs-parallel.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/shard-bmg-7/igt@xe_sriov_flr@flr-vfs-parallel.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[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#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[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#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
[Intel XE#6281]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6281
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7426
[Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
[Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503
[Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7622]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7622
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7725
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
Build changes
-------------
* IGT: IGT_8865 -> IGTPW_15025
* Linux: xe-4921-898b5aa235c5b269d6c745fd84270b296aa75469 -> xe-4923-33d3b65ec51f2bddafa26a80249e26c78435f169
IGTPW_15025: 3c7419a38fa01085c8446b72be5818bc411fc1c1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8865: 1c23bc1bdf01bf0ded2344cb217d7fe88de3b726 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4921-898b5aa235c5b269d6c745fd84270b296aa75469: 898b5aa235c5b269d6c745fd84270b296aa75469
xe-4923-33d3b65ec51f2bddafa26a80249e26c78435f169: 33d3b65ec51f2bddafa26a80249e26c78435f169
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15025/index.html
[-- Attachment #2: Type: text/html, Size: 31927 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread
* ✓ i915.CI.Full: success for tests/kms: correct index validation logic (rev2)
2026-04-20 7:49 [PATCH i-g-t] tests/kms: correct index validation logic Jing-Ping Jan
` (3 preceding siblings ...)
2026-04-22 2:36 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-04-22 5:16 ` Patchwork
4 siblings, 0 replies; 17+ messages in thread
From: Patchwork @ 2026-04-22 5:16 UTC (permalink / raw)
To: Jing-Ping Jan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 141079 bytes --]
== Series Details ==
Series: tests/kms: correct index validation logic (rev2)
URL : https://patchwork.freedesktop.org/series/165136/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_18352_full -> IGTPW_15025_full
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with IGTPW_15025_full need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15025_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.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_15025_full:
### IGT changes ###
#### Warnings ####
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: [SKIP][1] ([i915#14544]) -> [SKIP][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-4/igt@kms_pm_dc@dc3co-vpb-simulation.html
New tests
---------
New tests have been introduced between CI_DRM_18352_full and IGTPW_15025_full:
### New IGT tests (21) ###
* igt@gem_softpin@2x-tiling-none:
- Statuses :
- Exec time: [None] s
* igt@gem_softpin@basic-with_one_bo_two_files:
- Statuses :
- Exec time: [None] s
* igt@gem_softpin@create-valid-dumb:
- Statuses :
- Exec time: [None] s
* igt@gem_softpin@cursor-size-hints:
- Statuses :
- Exec time: [None] s
* igt@gem_softpin@dp-mst-type-0:
- Statuses :
- Exec time: [None] s
* igt@gem_softpin@fbc-1p-pri-indfb-multidraw:
- Statuses :
- Exec time: [None] s
* igt@gem_softpin@fbc-1p-primscrn-cur-indfb-draw-render:
- Statuses :
- Exec time: [None] s
* igt@gem_softpin@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt:
- Statuses :
- Exec time: [None] s
* igt@gem_softpin@fbcpsr-1p-offscreen-pri-indfb-draw-render:
- Statuses :
- Exec time: [None] s
* igt@gem_softpin@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- Statuses :
- Exec time: [None] s
* igt@gem_softpin@file:
- Statuses :
- Exec time: [None] s
* igt@gem_softpin@flip-vs-panning-vs-hang:
- Statuses :
- Exec time: [None] s
* igt@gem_softpin@get-forked:
- Statuses :
- Exec time: [None] s
* igt@gem_softpin@in-flight-contexts-10ms:
- Statuses :
- Exec time: [None] s
* igt@gem_softpin@mixed:
- Statuses :
- Exec time: [None] s
* igt@gem_softpin@multi-wait-all-for-submit-signaled:
- Statuses :
- Exec time: [None] s
* igt@gem_softpin@primary-y-tiled-reflect-x-0:
- Statuses :
- Exec time: [None] s
* igt@gem_softpin@psr-2p-scndscrn-indfb-msflip-blt:
- Statuses :
- Exec time: [None] s
* igt@gem_softpin@sprite-rotation-270:
- Statuses :
- Exec time: [None] s
* igt@gem_softpin@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- Statuses :
- Exec time: [None] s
* igt@gem_softpin@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- Statuses :
- Exec time: [None] s
Known issues
------------
Here are the changes found in IGTPW_15025_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][3] ([i915#6230])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-7/igt@api_intel_bb@crc32.html
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#6230])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-18/igt@api_intel_bb@crc32.html
- shard-tglu: NOTRUN -> [SKIP][5] ([i915#6230])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-10/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-3/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#11078])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-19/igt@device_reset@cold-reset-bound.html
- shard-tglu: NOTRUN -> [SKIP][8] ([i915#11078])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-4/igt@device_reset@cold-reset-bound.html
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#11078])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-5/igt@device_reset@cold-reset-bound.html
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#11078])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-7/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#11078]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-8/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-8/igt@gem_ccs@block-multicopy-compressed.html
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-17/igt@gem_ccs@block-multicopy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-8/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-6/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#13008])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-8/igt@gem_ccs@large-ctrl-surf-copy.html
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#13008])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-19/igt@gem_ccs@large-ctrl-surf-copy.html
- shard-tglu: NOTRUN -> [SKIP][19] ([i915#13008])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-3/igt@gem_ccs@large-ctrl-surf-copy.html
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#13008])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-5/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: [PASS][21] -> [INCOMPLETE][22] ([i915#13356])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-dg2-8/igt@gem_ccs@suspend-resume.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-5/igt@gem_ccs@suspend-resume.html
- shard-tglu: NOTRUN -> [SKIP][23] ([i915#9323]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-3/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][24] -> [INCOMPLETE][25] ([i915#12392] / [i915#13356])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-dg2-8/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-5/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#6335])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-3/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: [PASS][27] -> [INCOMPLETE][28] ([i915#13356]) +3 other tests incomplete
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][29] ([i915#1099]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-snb4/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#5882]) +7 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-4/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#5882]) +6 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-4/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html
* igt@gem_ctx_sseu@engines:
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#280])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-6/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu: NOTRUN -> [SKIP][33] ([i915#280])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-4/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-tglu-1: NOTRUN -> [SKIP][34] ([i915#4525])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-glk10: NOTRUN -> [SKIP][35] +19 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk10/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-14/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_flush@basic-wb-rw-default:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-1/igt@gem_exec_flush@basic-wb-rw-default.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3281]) +4 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-gtt.html
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#3281]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-16/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-cpu-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3281]) +3 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#3281]) +6 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_suspend@basic-s3:
- shard-glk11: NOTRUN -> [INCOMPLETE][42] ([i915#13196] / [i915#13356]) +1 other test incomplete
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk11/igt@gem_exec_suspend@basic-s3.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#4860])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-4/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#4860]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4860]) +3 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-1/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][46] ([i915#2190])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-1/igt@gem_huc_copy@huc-copy.html
- shard-tglu: NOTRUN -> [SKIP][47] ([i915#2190])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-2/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#4613])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-5/igt@gem_lmem_swapping@heavy-multi.html
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4613]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-6/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@massive-random:
- shard-glk: NOTRUN -> [SKIP][50] ([i915#4613]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk3/igt@gem_lmem_swapping@massive-random.html
- shard-tglu: NOTRUN -> [SKIP][51] ([i915#4613]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-8/igt@gem_lmem_swapping@massive-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglu-1: NOTRUN -> [SKIP][52] ([i915#4613]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_media_vme:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#284])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-8/igt@gem_media_vme.html
* igt@gem_mmap@basic-small-bo:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4083])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-7/igt@gem_mmap@basic-small-bo.html
* igt@gem_mmap@short-mmap:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4083])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-18/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@close-race:
- shard-dg1: NOTRUN -> [SKIP][56] ([i915#4077]) +5 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-13/igt@gem_mmap_gtt@close-race.html
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4077]) +6 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-2/igt@gem_mmap_gtt@close-race.html
* igt@gem_mmap_wc@read-write-distinct:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4083])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-3/igt@gem_mmap_wc@read-write-distinct.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#3282])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-8/igt@gem_partial_pwrite_pread@reads.html
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#3282])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-14/igt@gem_partial_pwrite_pread@reads.html
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#3282])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-8/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#3282]) +6 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][63] ([i915#2658])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk8/igt@gem_pread@exhaustion.html
* igt@gem_pxp@create-regular-context-1:
- shard-rkl: NOTRUN -> [SKIP][64] ([i915#4270])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-7/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu: NOTRUN -> [SKIP][65] ([i915#13398])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-8/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#13717])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-context.html
- shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#13398])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#13398])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-6/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#4270]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-4/igt@gem_pxp@protected-raw-src-copy-not-readible.html
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#4270]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-17/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_render_copy@linear-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#8428]) +4 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-2/igt@gem_render_copy@linear-to-vebox-y-tiled.html
* igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#5190] / [i915#8428]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-4/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4079])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-8/igt@gem_render_tiled_blits@basic.html
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4079])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-14/igt@gem_render_tiled_blits@basic.html
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4079])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-8/igt@gem_render_tiled_blits@basic.html
* igt@gem_softpin@32b-excludes-last-page:
- shard-dg2: [PASS][76] -> [ABORT][77] ([i915#13562])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-dg2-5/igt@gem_softpin@32b-excludes-last-page.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-3/igt@gem_softpin@32b-excludes-last-page.html
* igt@gem_softpin@evict-snoop:
- shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4885]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-5/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4885])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-8/igt@gem_softpin@evict-snoop-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][80] ([i915#4885])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-14/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_swapping@non-threaded:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#4077]) +9 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-3/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4880])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#3297]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-7/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-3/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#3297])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_workarounds@suspend-resume-context:
- shard-glk: NOTRUN -> [INCOMPLETE][86] ([i915#13356]) +2 other tests incomplete
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk9/igt@gem_workarounds@suspend-resume-context.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#2527] / [i915#2856]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-2/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-chained:
- shard-tglu-1: NOTRUN -> [SKIP][88] ([i915#2527] / [i915#2856])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@gen9_exec_parse@bb-chained.html
* igt@gen9_exec_parse@bb-large:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#2856])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-4/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#2527])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-8/igt@gen9_exec_parse@bb-oversize.html
* igt@i915_drm_fdinfo@busy-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#11527]) +6 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-4/igt@i915_drm_fdinfo@busy-check-all@ccs0.html
* igt@i915_drm_fdinfo@busy@rcs0:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#14073]) +11 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-12/igt@i915_drm_fdinfo@busy@rcs0.html
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#14073]) +13 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-3/igt@i915_drm_fdinfo@busy@rcs0.html
* igt@i915_drm_fdinfo@busy@vecs1:
- shard-dg2: NOTRUN -> [SKIP][94] ([i915#14073]) +15 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-1/igt@i915_drm_fdinfo@busy@vecs1.html
* igt@i915_drm_fdinfo@virtual-busy-idle-all:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#14118])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-8/igt@i915_drm_fdinfo@virtual-busy-idle-all.html
* igt@i915_module_load@reload-no-display:
- shard-dg2: NOTRUN -> [DMESG-WARN][96] ([i915#13029] / [i915#14545])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-3/igt@i915_module_load@reload-no-display.html
- shard-dg1: NOTRUN -> [DMESG-WARN][97] ([i915#13029] / [i915#14545])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-12/igt@i915_module_load@reload-no-display.html
- shard-tglu: NOTRUN -> [DMESG-WARN][98] ([i915#13029] / [i915#14545])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-6/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_rps@reset:
- shard-snb: [PASS][99] -> [INCOMPLETE][100] ([i915#13729] / [i915#13821])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-snb6/igt@i915_pm_rps@reset.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-snb4/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#11681])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-4/igt@i915_pm_rps@thresholds.html
- shard-dg1: NOTRUN -> [SKIP][102] ([i915#11681])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-17/igt@i915_pm_rps@thresholds.html
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#11681])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-3/igt@i915_pm_rps@thresholds.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#4387])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-3/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu: NOTRUN -> [SKIP][105] ([i915#5723])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-2/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][106] ([i915#4817])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk4/igt@i915_suspend@forcewake.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#7707])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-7/igt@intel_hwmon@hwmon-read.html
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#7707])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-8/igt@intel_hwmon@hwmon-read.html
* igt@kms_3d@basic:
- shard-mtlp: [PASS][109] -> [SKIP][110] ([i915#15726])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-mtlp-7/igt@kms_3d@basic.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-1/igt@kms_3d@basic.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#12454] / [i915#12712])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
- shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#12454] / [i915#12712])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-tglu-1: NOTRUN -> [SKIP][113] ([i915#1769] / [i915#3555])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#5286]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/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-tglu: NOTRUN -> [SKIP][115] ([i915#5286]) +5 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#5286]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5286])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#14544] / [i915#5286])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-mtlp: NOTRUN -> [SKIP][119] ([i915#3828])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#3638]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#3638])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-19/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5190]) +6 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
- shard-mtlp: NOTRUN -> [SKIP][123] +16 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#4538]) +2 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-16/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#12313])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#12313])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-17/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#6095]) +55 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-8/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6095]) +24 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-8/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#12313]) +2 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#6095]) +63 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#4423] / [i915#6095])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-19/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc:
- shard-glk11: NOTRUN -> [SKIP][133] +174 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk11/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#12805])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#6095]) +39 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: [PASS][136] -> [INCOMPLETE][137] ([i915#15582])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-glk6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#14098] / [i915#6095]) +40 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#12313]) +1 other test skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#6095]) +49 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-2/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#6095]) +223 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-14/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#10307] / [i915#6095]) +88 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#14544] / [i915#6095]) +5 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs:
- shard-snb: NOTRUN -> [SKIP][145] +127 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-snb5/igt@kms_ccs@random-ccs-data-y-tiled-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-glk: NOTRUN -> [SKIP][146] +409 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk6/igt@kms_cdclk@mode-transition.html
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#14544] / [i915#3742])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#13781]) +3 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-rkl: NOTRUN -> [SKIP][149] +9 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-7/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-19/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-7/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +4 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-5/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +6 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-fast.html
- shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-without-ddc:
- shard-tglu: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828]) +6 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-9/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#15330]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#15330])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-18/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#15330]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-2/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#15330])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#15330] / [i915#3299])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#15330] / [i915#3116])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#15330] / [i915#3299])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-12/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-tglu: NOTRUN -> [SKIP][163] ([i915#15330] / [i915#3116] / [i915#3299])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-5/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-mtlp: NOTRUN -> [SKIP][164] ([i915#15330] / [i915#3299])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-1/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#15330]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-1/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@mei-interface:
- shard-tglu-1: NOTRUN -> [SKIP][166] ([i915#15865]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#15865])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-8/igt@kms_content_protection@type1.html
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#15865])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-14/igt@kms_content_protection@type1.html
- shard-tglu: NOTRUN -> [SKIP][169] ([i915#15865])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-7/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#15865])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-8/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][171] ([i915#13049]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#13049]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#13049]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-rkl: NOTRUN -> [SKIP][174] ([i915#13049]) +2 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#13049]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-15/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#8814])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][177] ([i915#13566]) +3 other tests fail
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
- shard-tglu-1: NOTRUN -> [FAIL][178] ([i915#13566]) +1 other test fail
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-rkl: [PASS][179] -> [FAIL][180] ([i915#13566])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-7/igt@kms_cursor_crc@cursor-random-256x85.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-8/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][181] ([i915#3555])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#3555]) +4 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-5/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#3555]) +6 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#3555]) +5 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3555] / [i915#8814])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][186] -> [FAIL][187] ([i915#13566]) +5 other tests fail
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#4103])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#14544]) +2 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][190] ([i915#9809]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#13046] / [i915#5354]) +2 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: NOTRUN -> [FAIL][192] ([i915#15804])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#9067])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#9067])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#4213])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#9723])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#9723])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#13749])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-4/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#13749])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-17/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-tglu: NOTRUN -> [SKIP][200] ([i915#13749])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-4/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#13748] / [i915#14544])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#13748])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-13/igt@kms_dp_link_training@uhbr-sst.html
- shard-tglu: NOTRUN -> [SKIP][203] ([i915#13748])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-2/igt@kms_dp_link_training@uhbr-sst.html
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#13749]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-2/igt@kms_dp_link_training@uhbr-sst.html
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#13748])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-7/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#3840])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#3840])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-4/igt@kms_dsc@dsc-with-formats.html
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#3840])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-3/igt@kms_dsc@dsc-with-formats.html
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#3840])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-4/igt@kms_dsc@dsc-with-formats.html
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#3840])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-17/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#3469])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-8/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#2065] / [i915#4854])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-8/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#1839])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-1/igt@kms_feature_discovery@display-2x.html
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#1839])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-9/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#658])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-8/igt@kms_feature_discovery@psr1.html
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#658])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@kms_feature_discovery@psr1.html
- shard-tglu-1: NOTRUN -> [SKIP][217] ([i915#658])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#658])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-19/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#9934]) +5 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-4/igt@kms_flip@2x-absolute-wf_vblank.html
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#9934]) +7 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-3/igt@kms_flip@2x-absolute-wf_vblank.html
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#9934]) +3 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-14/igt@kms_flip@2x-absolute-wf_vblank.html
- shard-tglu: NOTRUN -> [SKIP][222] ([i915#3637] / [i915#9934]) +8 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-5/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#14544] / [i915#9934]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#3637] / [i915#9934]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#3637] / [i915#9934]) +3 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#8381])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-7/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][227] ([i915#12745] / [i915#4839] / [i915#6113])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk3/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][228] ([i915#12745] / [i915#6113])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk3/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#15643])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#15643])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#8810] / [i915#8813])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][232] ([i915#15643]) +2 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#15643]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][234] ([i915#15643]) +2 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#8810] / [i915#8813]) +4 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#15643] / [i915#5190]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#15104]) +2 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][238] ([i915#15104]) +1 other test skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#8708]) +11 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][240] +29 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#5354]) +21 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
- shard-rkl: NOTRUN -> [SKIP][242] ([i915#1825]) +27 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#1825]) +24 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][244] ([i915#10056])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk10/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#5439])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#15104]) +2 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#15102]) +3 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#15102])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][249] ([i915#15102]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][250] ([i915#15102]) +18 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][251] ([i915#15102] / [i915#3458]) +3 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#15102] / [i915#3458]) +4 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#10433] / [i915#15102] / [i915#3458])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#14544] / [i915#1825]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-tglu: NOTRUN -> [SKIP][255] +64 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#15102] / [i915#3023]) +14 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
- shard-tglu-1: NOTRUN -> [SKIP][257] ([i915#15102]) +6 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#5439])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#10055])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#10055])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][261] ([i915#8708]) +8 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#8708]) +6 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8228])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#12713])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-swap:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8228])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-7/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle:
- shard-rkl: [PASS][266] -> [SKIP][267] ([i915#3555] / [i915#8228])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-1/igt@kms_hdr@static-toggle.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-3/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-mtlp: NOTRUN -> [SKIP][268] ([i915#15459])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-4/igt@kms_joiner@basic-force-big-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#15459])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#15458])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu: NOTRUN -> [SKIP][271] ([i915#6301])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-3/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][272] ([i915#6301])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-4/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-tglu-1: NOTRUN -> [SKIP][273] +27 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][274] +10 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-8/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-glk: NOTRUN -> [INCOMPLETE][275] ([i915#12756] / [i915#13409] / [i915#13476])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk6/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][276] ([i915#13409] / [i915#13476])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#15709])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#15709]) +2 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-4/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#15709]) +2 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-3/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
- shard-dg1: NOTRUN -> [SKIP][280] ([i915#15709]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-14/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#15709]) +2 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-5/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7:
- shard-tglu: NOTRUN -> [SKIP][282] ([i915#15608]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-6/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#15709]) +2 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-4/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][284] ([i915#10647] / [i915#12177])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk6/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][285] ([i915#10647]) +1 other test fail
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk6/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8821])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-5/igt@kms_plane_lowres@tiling-yf.html
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#3555] / [i915#8821])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-7/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#13958])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#14259])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-3/igt@kms_plane_multiple@tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#14259])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-14/igt@kms_plane_multiple@tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][291] ([i915#14259])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-9/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#6953] / [i915#9423])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-7/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][293] ([i915#15329] / [i915#6953])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#15329]) +5 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#5354]) +1 other test skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@kms_pm_backlight@bad-brightness.html
- shard-dg1: NOTRUN -> [SKIP][296] ([i915#5354]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-13/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][297] ([i915#12343])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-4/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][298] ([i915#9812]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-8/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-tglu-1: NOTRUN -> [SKIP][299] ([i915#3828])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: NOTRUN -> [FAIL][300] ([i915#15752])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][301] ([i915#15739])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html
- shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#15739])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [PASS][303] -> [SKIP][304] ([i915#15073]) +2 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-3/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: [PASS][305] -> [SKIP][306] ([i915#15073])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg1: [PASS][307] -> [SKIP][308] ([i915#15073])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-dg1-16/igt@kms_pm_rpm@modeset-non-lpsp.html
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#15073])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu: NOTRUN -> [SKIP][310] ([i915#15073]) +1 other test skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg1: [PASS][311] -> [DMESG-WARN][312] ([i915#4423])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-dg1-15/igt@kms_pm_rpm@system-suspend-idle.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-12/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][313] ([i915#6524] / [i915#6805])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-1/igt@kms_prime@basic-modeset-hybrid.html
- shard-tglu: NOTRUN -> [SKIP][314] ([i915#6524])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-2/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][315] ([i915#11520]) +6 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][316] ([i915#11520]) +13 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk2/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][317] ([i915#11520] / [i915#14544]) +1 other test skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-dg2: NOTRUN -> [SKIP][318] ([i915#11520]) +3 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
- shard-rkl: NOTRUN -> [SKIP][319] ([i915#11520]) +2 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#11520])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-17/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
- shard-snb: NOTRUN -> [SKIP][321] ([i915#11520])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-snb7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][322] ([i915#9808]) +3 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][323] ([i915#12316]) +2 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-4/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-glk11: NOTRUN -> [SKIP][324] ([i915#11520]) +4 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk11/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#11520]) +2 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][326] ([i915#9683])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-3/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-basic:
- shard-mtlp: NOTRUN -> [SKIP][327] ([i915#9688]) +19 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-1/igt@kms_psr@fbc-pr-basic.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][328] ([i915#9732]) +17 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-4/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-rkl: NOTRUN -> [SKIP][329] ([i915#1072] / [i915#9732]) +13 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-3/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][330] ([i915#1072] / [i915#9732]) +14 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-6/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][331] ([i915#4077] / [i915#9688]) +1 other test skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-4/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_psr@psr2-cursor-blt:
- shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#9732]) +10 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-1/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][333] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_psr@psr2-cursor-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][334] ([i915#1072] / [i915#9732]) +13 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-13/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][335] ([i915#14544] / [i915#5289])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][336] ([i915#5289])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-mtlp: NOTRUN -> [SKIP][337] ([i915#12755] / [i915#15867])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-2/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][338] ([i915#3555]) +7 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-8/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@basic:
- shard-snb: NOTRUN -> [FAIL][339] ([i915#15106]) +6 other tests fail
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-snb4/igt@kms_setmode@basic.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-rkl: NOTRUN -> [SKIP][340] ([i915#14544] / [i915#3555])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html
- shard-mtlp: NOTRUN -> [SKIP][341] ([i915#3555] / [i915#8809] / [i915#8823])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-2/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-mtlp: NOTRUN -> [SKIP][342] ([i915#3555] / [i915#8809])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-8/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-rkl: NOTRUN -> [SKIP][343] ([i915#8623])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][344] ([i915#12276]) +1 other test incomplete
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk9/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-rkl: [PASS][345] -> [ABORT][346] ([i915#15132])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-8/igt@kms_vblank@ts-continuation-suspend.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-1/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1:
- shard-glk: [PASS][347] -> [INCOMPLETE][348] ([i915#12276])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-glk5/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk4/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html
* igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [ABORT][349] ([i915#15132])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-1/igt@kms_vblank@ts-continuation-suspend@pipe-c-hdmi-a-2.html
* igt@kms_vrr@flip-dpms:
- shard-dg2: NOTRUN -> [SKIP][350] ([i915#15243] / [i915#3555])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-1/igt@kms_vrr@flip-dpms.html
- shard-rkl: NOTRUN -> [SKIP][351] ([i915#15243] / [i915#3555])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-5/igt@kms_vrr@flip-dpms.html
- shard-mtlp: NOTRUN -> [SKIP][352] ([i915#3555] / [i915#8808])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-6/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][353] ([i915#9906])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-1/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-rkl: NOTRUN -> [SKIP][354] ([i915#9906])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-dg1: NOTRUN -> [SKIP][355] ([i915#9906])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-15/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-tglu: NOTRUN -> [SKIP][356] ([i915#9906])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-9/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-mtlp: NOTRUN -> [SKIP][357] ([i915#8808] / [i915#9906])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-6/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][358] ([i915#7387])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-7/igt@perf@global-sseu-config-invalid.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-dg2: [PASS][359] -> [FAIL][360] ([i915#4349])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-dg2-8/igt@perf_pmu@busy-double-start@ccs0.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-7/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@busy-double-start@vcs0:
- shard-mtlp: [PASS][361] -> [FAIL][362] ([i915#4349])
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-mtlp-7/igt@perf_pmu@busy-double-start@vcs0.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-1/igt@perf_pmu@busy-double-start@vcs0.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-dg1: [PASS][363] -> [FAIL][364] ([i915#4349]) +3 other tests fail
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-dg1-16/igt@perf_pmu@busy-double-start@vcs1.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-13/igt@perf_pmu@busy-double-start@vcs1.html
* igt@perf_pmu@rc6-suspend:
- shard-rkl: [PASS][365] -> [INCOMPLETE][366] ([i915#13520])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-3/igt@perf_pmu@rc6-suspend.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@perf_pmu@rc6-suspend.html
* igt@perf_pmu@render-node-busy@rcs0:
- shard-snb: [PASS][367] -> [FAIL][368] ([i915#4349]) +2 other tests fail
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-snb6/igt@perf_pmu@render-node-busy@rcs0.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-snb6/igt@perf_pmu@render-node-busy@rcs0.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][369] ([i915#9917])
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-tglu: NOTRUN -> [FAIL][370] ([i915#12910]) +9 other tests fail
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-6/igt@sriov_basic@enable-vfs-autoprobe-on.html
- shard-dg2: NOTRUN -> [SKIP][371] ([i915#9917])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-3/igt@sriov_basic@enable-vfs-autoprobe-on.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random:
- shard-mtlp: NOTRUN -> [FAIL][372] ([i915#12910]) +8 other tests fail
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-7/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html
#### Possible fixes ####
* igt@gem_exec_big@single:
- shard-mtlp: [FAIL][373] ([i915#15871]) -> [PASS][374]
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-mtlp-4/igt@gem_exec_big@single.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-6/igt@gem_exec_big@single.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [INCOMPLETE][375] ([i915#13356]) -> [PASS][376] +1 other test pass
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-8/igt@gem_exec_suspend@basic-s0.html
* igt@i915_selftest@live:
- shard-mtlp: [DMESG-FAIL][377] ([i915#12061] / [i915#15560]) -> [PASS][378]
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-mtlp-5/igt@i915_selftest@live.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [DMESG-FAIL][379] ([i915#12061]) -> [PASS][380]
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-mtlp-5/igt@i915_selftest@live@workarounds.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-3/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@debugfs-reader:
- shard-glk: [INCOMPLETE][381] ([i915#4817]) -> [PASS][382] +1 other test pass
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-glk5/igt@i915_suspend@debugfs-reader.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk3/igt@i915_suspend@debugfs-reader.html
- shard-rkl: [INCOMPLETE][383] ([i915#4817]) -> [PASS][384]
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@i915_suspend@debugfs-reader.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-7/igt@i915_suspend@debugfs-reader.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-dg1: [FAIL][385] ([i915#14888]) -> [PASS][386]
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-dg1-14/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-19/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: [FAIL][387] ([i915#5956]) -> [PASS][388] +1 other test pass
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][389] ([i915#15733] / [i915#5138]) -> [PASS][390]
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-rkl: [ABORT][391] ([i915#15132]) -> [PASS][392]
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [FAIL][393] ([i915#13566]) -> [PASS][394] +5 other tests pass
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-rkl: [FAIL][395] ([i915#13566]) -> [PASS][396] +4 other tests pass
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-128x42.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: [SKIP][397] ([i915#3555] / [i915#8228]) -> [PASS][398]
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-2/igt@kms_hdr@bpc-switch.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-1/igt@kms_hdr@bpc-switch.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: [SKIP][399] ([i915#15073]) -> [PASS][400]
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-dg1-12/igt@kms_pm_rpm@modeset-lpsp.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][401] ([i915#15073]) -> [PASS][402]
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
#### Warnings ####
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: [SKIP][403] ([i915#14544] / [i915#9323]) -> [SKIP][404] ([i915#9323])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-rkl: [SKIP][405] ([i915#14544] / [i915#7697]) -> [SKIP][406] ([i915#7697])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@gem_close_race@multigpu-basic-threads.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-4/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-rkl: [SKIP][407] ([i915#14544] / [i915#4525]) -> [SKIP][408] ([i915#4525])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-7/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_reloc@basic-wc-gtt-active:
- shard-rkl: [SKIP][409] ([i915#3281]) -> [SKIP][410] ([i915#14544] / [i915#3281]) +3 other tests skip
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-4/igt@gem_exec_reloc@basic-wc-gtt-active.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@gem_exec_reloc@basic-wc-gtt-active.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: [SKIP][411] ([i915#14544] / [i915#3281]) -> [SKIP][412] ([i915#3281]) +8 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-3/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: [SKIP][413] ([i915#4613]) -> [SKIP][414] ([i915#14544] / [i915#4613])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-rkl: [SKIP][415] ([i915#14544] / [i915#4613]) -> [SKIP][416] ([i915#4613]) +2 other tests skip
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-rkl: [SKIP][417] ([i915#14544] / [i915#3282]) -> [SKIP][418] ([i915#3282]) +1 other test skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@gem_partial_pwrite_pread@write-display.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_readwrite@read-write:
- shard-rkl: [SKIP][419] ([i915#3282]) -> [SKIP][420] ([i915#14544] / [i915#3282]) +2 other tests skip
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-4/igt@gem_readwrite@read-write.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@gem_readwrite@read-write.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-rkl: [SKIP][421] ([i915#14544] / [i915#3297]) -> [SKIP][422] ([i915#3297])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gen9_exec_parse@bb-chained:
- shard-rkl: [SKIP][423] ([i915#14544] / [i915#2527]) -> [SKIP][424] ([i915#2527]) +1 other test skip
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@gen9_exec_parse@bb-chained.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@gen9_exec_parse@bb-chained.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: [SKIP][425] ([i915#14544] / [i915#8399]) -> [SKIP][426] ([i915#8399])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-rkl: [SKIP][427] ([i915#14498] / [i915#14544]) -> [SKIP][428] ([i915#14498])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_query@hwconfig_table:
- shard-rkl: [SKIP][429] ([i915#14544] / [i915#6245]) -> [SKIP][430] ([i915#6245])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@i915_query@hwconfig_table.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-8/igt@i915_query@hwconfig_table.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: [SKIP][431] ([i915#5723]) -> [SKIP][432] ([i915#14544] / [i915#5723])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-2/igt@i915_query@test-query-geometry-subslices.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: [SKIP][433] ([i915#14544] / [i915#9531]) -> [SKIP][434] ([i915#9531])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-rkl: [SKIP][435] ([i915#14544] / [i915#5286]) -> [SKIP][436] ([i915#5286]) +2 other tests skip
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][437] ([i915#5286]) -> [SKIP][438] ([i915#14544] / [i915#5286]) +3 other tests skip
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: [SKIP][439] ([i915#3828]) -> [SKIP][440] ([i915#14544] / [i915#3828])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-rkl: [SKIP][441] ([i915#14544] / [i915#3638]) -> [SKIP][442] ([i915#3638]) +3 other tests skip
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-rkl: [SKIP][443] ([i915#3638]) -> [SKIP][444] ([i915#14544] / [i915#3638])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-5/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: [SKIP][445] -> [SKIP][446] ([i915#14544]) +4 other tests skip
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-rkl: [SKIP][447] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][448] ([i915#14098] / [i915#6095]) +14 other tests skip
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs:
- shard-dg1: [SKIP][449] ([i915#6095]) -> [SKIP][450] ([i915#4423] / [i915#6095])
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-dg1-15/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-19/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][451] ([i915#12805] / [i915#14544]) -> [SKIP][452] ([i915#12805])
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][453] ([i915#6095]) -> [SKIP][454] ([i915#14544] / [i915#6095]) +1 other test skip
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][455] ([i915#14544] / [i915#6095]) -> [SKIP][456] ([i915#6095]) +11 other tests skip
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs:
- shard-rkl: [SKIP][457] ([i915#14098] / [i915#6095]) -> [SKIP][458] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-5/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][459] ([i915#12313]) -> [SKIP][460] ([i915#12313] / [i915#14544]) +1 other test skip
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-2/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-rkl: [SKIP][461] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][462] ([i915#11151] / [i915#7828]) +4 other tests skip
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-5/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: [SKIP][463] ([i915#11151] / [i915#7828]) -> [SKIP][464] ([i915#11151] / [i915#14544] / [i915#7828]) +4 other tests skip
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-mtlp: [ABORT][465] ([i915#13562]) -> [SKIP][466] ([i915#15865])
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-mtlp-7/igt@kms_content_protection@atomic-hdcp14.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-mtlp-4/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: [SKIP][467] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][468] ([i915#15330] / [i915#3116])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-4/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-rkl: [SKIP][469] ([i915#15865]) -> [SKIP][470] ([i915#14544] / [i915#15865])
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-5/igt@kms_content_protection@legacy-hdcp14.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: [SKIP][471] ([i915#14544] / [i915#15865]) -> [SKIP][472] ([i915#15865])
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_content_protection@mei-interface.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: [SKIP][473] ([i915#3555]) -> [SKIP][474] ([i915#14544] / [i915#3555]) +1 other test skip
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: [SKIP][475] ([i915#14544] / [i915#3555]) -> [SKIP][476] ([i915#3555]) +1 other test skip
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-rkl: [SKIP][477] ([i915#13049] / [i915#14544]) -> [SKIP][478] ([i915#13049]) +1 other test skip
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][479] ([i915#14544]) -> [SKIP][480] +9 other tests skip
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-rkl: [SKIP][481] ([i915#13748] / [i915#14544]) -> [SKIP][482] ([i915#13748])
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_dp_link_training@uhbr-mst.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: [SKIP][483] ([i915#13707] / [i915#14544]) -> [SKIP][484] ([i915#13707])
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: [SKIP][485] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][486] ([i915#3555] / [i915#3840])
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-8/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: [SKIP][487] ([i915#14544] / [i915#3840] / [i915#9053]) -> [SKIP][488] ([i915#3840] / [i915#9053])
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: [SKIP][489] ([i915#14544] / [i915#1839]) -> [SKIP][490] ([i915#1839])
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_feature_discovery@display-3x.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-4/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-rkl: [SKIP][491] ([i915#9934]) -> [SKIP][492] ([i915#14544] / [i915#9934]) +1 other test skip
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-2/igt@kms_flip@2x-dpms-vs-vblank-race.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: [SKIP][493] ([i915#14544] / [i915#9934]) -> [SKIP][494] ([i915#9934]) +6 other tests skip
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: [INCOMPLETE][495] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][496] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113])
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-glk3/igt@kms_flip@2x-flip-vs-suspend.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk5/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2:
- shard-glk: [INCOMPLETE][497] ([i915#12745]) -> [INCOMPLETE][498] ([i915#12314] / [i915#12745])
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-glk3/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-glk5/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-rkl: [SKIP][499] ([i915#14544] / [i915#15643]) -> [SKIP][500] ([i915#15643]) +2 other tests skip
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: [SKIP][501] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][502] ([i915#15102] / [i915#3023]) +14 other tests skip
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-rkl: [SKIP][503] ([i915#14544] / [i915#1825]) -> [SKIP][504] ([i915#1825]) +17 other tests skip
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-dg2: [SKIP][505] ([i915#15102] / [i915#3458]) -> [SKIP][506] ([i915#10433] / [i915#15102] / [i915#3458]) +3 other tests skip
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-rkl: [SKIP][507] ([i915#14544] / [i915#15102]) -> [SKIP][508] ([i915#15102]) +1 other test skip
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-rkl: [SKIP][509] ([i915#15102] / [i915#3023]) -> [SKIP][510] ([i915#14544] / [i915#15102] / [i915#3023]) +7 other tests skip
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][511] ([i915#1825]) -> [SKIP][512] ([i915#14544] / [i915#1825]) +14 other tests skip
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][513] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][514] ([i915#15102] / [i915#3458]) +4 other tests skip
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: [SKIP][515] ([i915#13331]) -> [SKIP][516] ([i915#12713])
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-1/igt@kms_hdr@brightness-with-hdr.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-8/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg1: [SKIP][517] ([i915#15459]) -> [SKIP][518] ([i915#15459] / [i915#4423])
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-dg1-16/igt@kms_joiner@basic-force-big-joiner.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-19/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: [SKIP][519] ([i915#14544] / [i915#15458]) -> [SKIP][520] ([i915#15458])
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-3/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-rkl: [SKIP][521] ([i915#13688] / [i915#14544]) -> [SKIP][522] ([i915#13688])
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-2/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: [SKIP][523] ([i915#14544] / [i915#15638] / [i915#15722]) -> [SKIP][524] ([i915#15638] / [i915#15722])
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: [SKIP][525] ([i915#14544] / [i915#14712]) -> [SKIP][526] ([i915#14712])
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-3/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
- shard-rkl: [SKIP][527] ([i915#15709]) -> [SKIP][528] ([i915#14544] / [i915#15709]) +1 other test skip
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-rkl: [SKIP][529] ([i915#14544] / [i915#15709]) -> [SKIP][530] ([i915#15709]) +2 other tests skip
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-7/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: [SKIP][531] ([i915#14544] / [i915#15329]) -> [SKIP][532] ([i915#15329]) +3 other tests skip
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: [SKIP][533] ([i915#14544] / [i915#5354]) -> [SKIP][534] ([i915#5354])
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-7/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][535] ([i915#9340]) -> [SKIP][536] ([i915#14544] / [i915#9340])
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][537] ([i915#11520]) -> [SKIP][538] ([i915#11520] / [i915#14544]) +3 other tests skip
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][539] ([i915#11520] / [i915#14544]) -> [SKIP][540] ([i915#11520]) +6 other tests skip
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-3/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-dg1: [SKIP][541] ([i915#11520] / [i915#4423]) -> [SKIP][542] ([i915#11520])
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-dg1-18/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-18/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-rkl: [SKIP][543] ([i915#1072] / [i915#9732]) -> [SKIP][544] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-5/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@pr-primary-mmap-cpu:
- shard-dg1: [SKIP][545] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][546] ([i915#1072] / [i915#9732])
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-dg1-16/igt@kms_psr@pr-primary-mmap-cpu.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-14/igt@kms_psr@pr-primary-mmap-cpu.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-rkl: [SKIP][547] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][548] ([i915#1072] / [i915#9732]) +14 other tests skip
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_psr@psr2-sprite-mmap-cpu.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-8/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_vrr@flipline:
- shard-rkl: [SKIP][549] ([i915#14544] / [i915#15243] / [i915#3555]) -> [SKIP][550] ([i915#15243] / [i915#3555])
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-6/igt@kms_vrr@flipline.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-3/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-rkl: [SKIP][551] ([i915#11920]) -> [SKIP][552] ([i915#11920] / [i915#14544])
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-4/igt@kms_vrr@lobf.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@kms_vrr@lobf.html
* igt@perf_pmu@module-unload:
- shard-dg2: [ABORT][553] ([i915#15778]) -> [ABORT][554] ([i915#13029] / [i915#15778])
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-dg2-4/igt@perf_pmu@module-unload.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg2-6/igt@perf_pmu@module-unload.html
- shard-dg1: [ABORT][555] ([i915#15778]) -> [ABORT][556] ([i915#13029] / [i915#15778])
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-dg1-17/igt@perf_pmu@module-unload.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-dg1-17/igt@perf_pmu@module-unload.html
* igt@prime_vgem@basic-write:
- shard-rkl: [SKIP][557] ([i915#3291] / [i915#3708]) -> [SKIP][558] ([i915#14544] / [i915#3291] / [i915#3708])
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-4/igt@prime_vgem@basic-write.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: [SKIP][559] ([i915#3708]) -> [SKIP][560] ([i915#14544] / [i915#3708])
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18352/shard-rkl-2/igt@prime_vgem@coherency-gtt.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/shard-rkl-6/igt@prime_vgem@coherency-gtt.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196
[i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
[i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13729
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15726
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8865 -> IGTPW_15025
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18352: 33d3b65ec51f2bddafa26a80249e26c78435f169 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15025: 3c7419a38fa01085c8446b72be5818bc411fc1c1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8865: 1c23bc1bdf01bf0ded2344cb217d7fe88de3b726 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15025/index.html
[-- Attachment #2: Type: text/html, Size: 190453 bytes --]
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t v2] tests/kms: correct index validation logic
2026-04-21 12:02 ` Jani Nikula
@ 2026-04-22 17:05 ` Kamil Konieczny
2026-04-22 17:23 ` Ville Syrjälä
0 siblings, 1 reply; 17+ messages in thread
From: Kamil Konieczny @ 2026-04-22 17:05 UTC (permalink / raw)
To: Jani Nikula; +Cc: Jing-Ping Jan, igt-dev, Ville Syrjälä
Hi Jani,
On 2026-04-21 at 15:02:01 +0300, Jani Nikula wrote:
> On Tue, 21 Apr 2026, Jing-Ping Jan <jingpingjan@google.com> wrote:
> > Based on the original implementation and the comment above the function,
> > it appears the expected behavior is for the plane indices to remain
> > consistent with those in crtc->planes. Therefore, after swapping the old
> > and new primary planes, we must update the index in igt_plane_t to
> > ensure it matches the corresponding index in crtc->planes.
> >
> > Therefore, we should expect the indices of the old and new primary
> > planes to remain unchanged after swapping them.
> >
> > Fixes: ac37e1174cc4 ("lib/kms: Pimp the primary plane swapping")
>
> With Fixes: it's customary to Cc the author and reviewer(s).
>
> Cc: Jani Nikula <jani.nikula@intel.com>
> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
>
> > Signed-off-by: Jing-Ping Jan <jingpingjan@google.com>
> > ---
> > v2:
> > - Add Fixes tag to the commit message.
> > lib/igt_kms.c | 4 ++--
> > 1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> > index bec96f267..405a04640 100644
> > --- a/lib/igt_kms.c
> > +++ b/lib/igt_kms.c
> > @@ -2982,8 +2982,8 @@ void igt_display_reset_outputs(igt_display_t *display)
>
Lets have for simplicity simple struct { char name; int index; }
and old -> { A, 0 }, new -> { F, 7 }
> The whole context here is:
>
> if (new_primary->index != 0) {
> igt_assert(old_primary != new_primary);
>
> igt_assert_eq(old_primary->index, 0);
> igt_assert_neq(new_primary->index, 0);
>
> > igt_swap(*old_primary, *new_primary);
Now old -> { F, 7 }, new -> { A, 0 }
> > igt_swap(old_primary->index, new_primary->index);
Now old -> { F, 0 }, new -> { A, 7 }
Or do I miss something?
Regards,
Kamil
> >
> > - igt_assert_neq(old_primary->index, 0);
> > - igt_assert_eq(new_primary->index, 0);
> > + igt_assert_eq(old_primary->index, 0);
> > + igt_assert_neq(new_primary->index, 0);
>
> Why do you expect these to remain the same as before the swapping?
> That's why we are swapping.
>
> > } else {
> > igt_assert(old_primary == new_primary);
>
> --
> Jani Nikula, Intel
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t v2] tests/kms: correct index validation logic
2026-04-22 17:05 ` Kamil Konieczny
@ 2026-04-22 17:23 ` Ville Syrjälä
2026-04-23 9:21 ` Jing-Ping Jan
0 siblings, 1 reply; 17+ messages in thread
From: Ville Syrjälä @ 2026-04-22 17:23 UTC (permalink / raw)
To: Kamil Konieczny, Jani Nikula, Jing-Ping Jan, igt-dev
On Wed, Apr 22, 2026 at 07:05:57PM +0200, Kamil Konieczny wrote:
> Hi Jani,
> On 2026-04-21 at 15:02:01 +0300, Jani Nikula wrote:
> > On Tue, 21 Apr 2026, Jing-Ping Jan <jingpingjan@google.com> wrote:
> > > Based on the original implementation and the comment above the function,
> > > it appears the expected behavior is for the plane indices to remain
> > > consistent with those in crtc->planes. Therefore, after swapping the old
> > > and new primary planes, we must update the index in igt_plane_t to
> > > ensure it matches the corresponding index in crtc->planes.
> > >
> > > Therefore, we should expect the indices of the old and new primary
> > > planes to remain unchanged after swapping them.
> > >
> > > Fixes: ac37e1174cc4 ("lib/kms: Pimp the primary plane swapping")
> >
> > With Fixes: it's customary to Cc the author and reviewer(s).
> >
> > Cc: Jani Nikula <jani.nikula@intel.com>
> > Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> >
> > > Signed-off-by: Jing-Ping Jan <jingpingjan@google.com>
> > > ---
> > > v2:
> > > - Add Fixes tag to the commit message.
> > > lib/igt_kms.c | 4 ++--
> > > 1 file changed, 2 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> > > index bec96f267..405a04640 100644
> > > --- a/lib/igt_kms.c
> > > +++ b/lib/igt_kms.c
> > > @@ -2982,8 +2982,8 @@ void igt_display_reset_outputs(igt_display_t *display)
> >
>
> Lets have for simplicity simple struct { char name; int index; }
> and old -> { A, 0 }, new -> { F, 7 }
>
> > The whole context here is:
> >
> > if (new_primary->index != 0) {
> > igt_assert(old_primary != new_primary);
> >
> > igt_assert_eq(old_primary->index, 0);
> > igt_assert_neq(new_primary->index, 0);
> >
> > > igt_swap(*old_primary, *new_primary);
>
> Now old -> { F, 7 }, new -> { A, 0 }
>
> > > igt_swap(old_primary->index, new_primary->index);
>
> Now old -> { F, 0 }, new -> { A, 7 }
>
> Or do I miss something?
The problem is the pointers weren't swapped.
[0] = { 0, A } <- old
[1] = { 1, B } <- new
step1: full swap
[0] = { 1, B } <- old
[1] = { 0, A } <- new
step2: index swap
[0] = { 0, B } <- old
[1] = { 1, A } <- new
So after this I think the proper fix is to also swap the pointers.
Then the asserts after the swap start to make actual sense.
step3: pointer swap
[0] = { 0, B } <- new
[1] = { 1, A } <- old
>
> > >
> > > - igt_assert_neq(old_primary->index, 0);
> > > - igt_assert_eq(new_primary->index, 0);
> > > + igt_assert_eq(old_primary->index, 0);
> > > + igt_assert_neq(new_primary->index, 0);
> >
> > Why do you expect these to remain the same as before the swapping?
> > That's why we are swapping.
> >
> > > } else {
> > > igt_assert(old_primary == new_primary);
> >
> > --
> > Jani Nikula, Intel
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t v2] tests/kms: correct index validation logic
2026-04-22 17:23 ` Ville Syrjälä
@ 2026-04-23 9:21 ` Jing-Ping Jan
2026-04-23 9:28 ` [PATCH i-g-t v3] " Jing-Ping Jan
` (2 more replies)
0 siblings, 3 replies; 17+ messages in thread
From: Jing-Ping Jan @ 2026-04-23 9:21 UTC (permalink / raw)
To: Ville Syrjälä; +Cc: Kamil Konieczny, Jani Nikula, igt-dev
On Thu, Apr 23, 2026 at 1:23 AM Ville Syrjälä
<ville.syrjala@linux.intel.com> wrote:
>
> On Wed, Apr 22, 2026 at 07:05:57PM +0200, Kamil Konieczny wrote:
> > Hi Jani,
> > On 2026-04-21 at 15:02:01 +0300, Jani Nikula wrote:
> > > On Tue, 21 Apr 2026, Jing-Ping Jan <jingpingjan@google.com> wrote:
> > > > Based on the original implementation and the comment above the function,
> > > > it appears the expected behavior is for the plane indices to remain
> > > > consistent with those in crtc->planes. Therefore, after swapping the old
> > > > and new primary planes, we must update the index in igt_plane_t to
> > > > ensure it matches the corresponding index in crtc->planes.
> > > >
> > > > Therefore, we should expect the indices of the old and new primary
> > > > planes to remain unchanged after swapping them.
> > > >
> > > > Fixes: ac37e1174cc4 ("lib/kms: Pimp the primary plane swapping")
> > >
> > > With Fixes: it's customary to Cc the author and reviewer(s).
> > >
> > > Cc: Jani Nikula <jani.nikula@intel.com>
> > > Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > >
> > > > Signed-off-by: Jing-Ping Jan <jingpingjan@google.com>
> > > > ---
> > > > v2:
> > > > - Add Fixes tag to the commit message.
> > > > lib/igt_kms.c | 4 ++--
> > > > 1 file changed, 2 insertions(+), 2 deletions(-)
> > > >
> > > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> > > > index bec96f267..405a04640 100644
> > > > --- a/lib/igt_kms.c
> > > > +++ b/lib/igt_kms.c
> > > > @@ -2982,8 +2982,8 @@ void igt_display_reset_outputs(igt_display_t *display)
> > >
> >
> > Lets have for simplicity simple struct { char name; int index; }
> > and old -> { A, 0 }, new -> { F, 7 }
> >
> > > The whole context here is:
> > >
> > > if (new_primary->index != 0) {
> > > igt_assert(old_primary != new_primary);
> > >
> > > igt_assert_eq(old_primary->index, 0);
> > > igt_assert_neq(new_primary->index, 0);
> > >
> > > > igt_swap(*old_primary, *new_primary);
> >
> > Now old -> { F, 7 }, new -> { A, 0 }
> >
> > > > igt_swap(old_primary->index, new_primary->index);
> >
> > Now old -> { F, 0 }, new -> { A, 7 }
> >
> > Or do I miss something?
>
> The problem is the pointers weren't swapped.
>
> [0] = { 0, A } <- old
> [1] = { 1, B } <- new
>
> step1: full swap
> [0] = { 1, B } <- old
> [1] = { 0, A } <- new
>
> step2: index swap
> [0] = { 0, B } <- old
> [1] = { 1, A } <- new
>
> So after this I think the proper fix is to also swap the pointers.
> Then the asserts after the swap start to make actual sense.
>
> step3: pointer swap
> [0] = { 0, B } <- new
> [1] = { 1, A } <- old
>
> >
> > > >
> > > > - igt_assert_neq(old_primary->index, 0);
> > > > - igt_assert_eq(new_primary->index, 0);
> > > > + igt_assert_eq(old_primary->index, 0);
> > > > + igt_assert_neq(new_primary->index, 0);
> > >
> > > Why do you expect these to remain the same as before the swapping?
> > > That's why we are swapping.
> > >
> > > > } else {
> > > > igt_assert(old_primary == new_primary);
> > >
> > > --
> > > Jani Nikula, Intel
>
> --
> Ville Syrjälä
> Intel
I don’t believe swapping the pointers is the right approach.
Currently, old_primary and new_primary point to the first element and
the original primary plane in crtc->planes, respectively. Swapping the
pointers merely redirects them without addressing the underlying data
structure.
According to the original design(Commit 58a5a2d5), the logic should
swap the plane indices first and then swap the entire plane objects
between the two pointers. This ensures that the first element in the
pipe->planes array remains the primary plane. Therefore, it makes more
sense to validate that the index of the first element is 0 while the
other index is non-zero.
Alternatively, we could rename old_primary to first_plane and
new_primary to primary_plane to make the logic more transparent.
Regards,
Jing-Ping Jan
^ permalink raw reply [flat|nested] 17+ messages in thread
* [PATCH i-g-t v3] tests/kms: correct index validation logic
2026-04-23 9:21 ` Jing-Ping Jan
@ 2026-04-23 9:28 ` Jing-Ping Jan
2026-04-23 10:27 ` [PATCH i-g-t v2] " Kamil Konieczny
2026-04-23 10:40 ` Ville Syrjälä
2 siblings, 0 replies; 17+ messages in thread
From: Jing-Ping Jan @ 2026-04-23 9:28 UTC (permalink / raw)
To: igt-dev, Kamil Konieczny, Jani Nikula, Ville Syrjälä
Cc: Jing-Ping Jan
Based on the original implementation and the comment above the function,
it appears the expected behavior is for the plane indices to remain
consistent with those in crtc->planes. Therefore, after swapping the old
and new primary planes, we must update the index in igt_plane_t to
ensure it matches the corresponding index in crtc->planes.
Therefore, we should expect the indices of the old and new primary
planes to remain unchanged after swapping them.
Fixes: ac37e1174cc4 ("lib/kms: Pimp the primary plane swapping")
Cc: Jani Nikula <jani.nikula@intel.com>
Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Jing-Ping Jan <jingpingjan@google.com>
---
v2:
- Add Fixes tag to the commit message.
v3:
- Add Cc tag to the commit message.
lib/igt_kms.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/lib/igt_kms.c b/lib/igt_kms.c
index bec96f267..405a04640 100644
--- a/lib/igt_kms.c
+++ b/lib/igt_kms.c
@@ -2982,8 +2982,8 @@ void igt_display_reset_outputs(igt_display_t *display)
igt_swap(*old_primary, *new_primary);
igt_swap(old_primary->index, new_primary->index);
- igt_assert_neq(old_primary->index, 0);
- igt_assert_eq(new_primary->index, 0);
+ igt_assert_eq(old_primary->index, 0);
+ igt_assert_neq(new_primary->index, 0);
} else {
igt_assert(old_primary == new_primary);
--
2.54.0.rc2.533.g4f5dca5207-goog
^ permalink raw reply related [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t v2] tests/kms: correct index validation logic
2026-04-23 9:21 ` Jing-Ping Jan
2026-04-23 9:28 ` [PATCH i-g-t v3] " Jing-Ping Jan
@ 2026-04-23 10:27 ` Kamil Konieczny
2026-04-23 10:40 ` Ville Syrjälä
2 siblings, 0 replies; 17+ messages in thread
From: Kamil Konieczny @ 2026-04-23 10:27 UTC (permalink / raw)
To: Jing-Ping Jan; +Cc: Ville Syrjälä, Jani Nikula, igt-dev
Hi Jing-Ping,
On 2026-04-23 at 17:21:02 +0800, Jing-Ping Jan wrote:
> On Thu, Apr 23, 2026 at 1:23 AM Ville Syrjälä
> <ville.syrjala@linux.intel.com> wrote:
> >
> > On Wed, Apr 22, 2026 at 07:05:57PM +0200, Kamil Konieczny wrote:
> > > Hi Jani,
> > > On 2026-04-21 at 15:02:01 +0300, Jani Nikula wrote:
> > > > On Tue, 21 Apr 2026, Jing-Ping Jan <jingpingjan@google.com> wrote:
> > > > > Based on the original implementation and the comment above the function,
> > > > > it appears the expected behavior is for the plane indices to remain
> > > > > consistent with those in crtc->planes. Therefore, after swapping the old
> > > > > and new primary planes, we must update the index in igt_plane_t to
> > > > > ensure it matches the corresponding index in crtc->planes.
> > > > >
> > > > > Therefore, we should expect the indices of the old and new primary
> > > > > planes to remain unchanged after swapping them.
> > > > >
> > > > > Fixes: ac37e1174cc4 ("lib/kms: Pimp the primary plane swapping")
> > > >
> > > > With Fixes: it's customary to Cc the author and reviewer(s).
> > > >
> > > > Cc: Jani Nikula <jani.nikula@intel.com>
> > > > Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
I am sorry, I went ahead and didn't noticed this thread and
I did a merge of v2. So now, based on discussion below,
if a fix should be
igt_swap(old_primary, new_primary);
or rename of vars and(or not?) the swap, first it needs a revert,
then a proper fix.
Regards,
Kamil
> > > >
> > > > > Signed-off-by: Jing-Ping Jan <jingpingjan@google.com>
> > > > > ---
> > > > > v2:
> > > > > - Add Fixes tag to the commit message.
> > > > > lib/igt_kms.c | 4 ++--
> > > > > 1 file changed, 2 insertions(+), 2 deletions(-)
> > > > >
> > > > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> > > > > index bec96f267..405a04640 100644
> > > > > --- a/lib/igt_kms.c
> > > > > +++ b/lib/igt_kms.c
> > > > > @@ -2982,8 +2982,8 @@ void igt_display_reset_outputs(igt_display_t *display)
> > > >
> > >
> > > Lets have for simplicity simple struct { char name; int index; }
> > > and old -> { A, 0 }, new -> { F, 7 }
> > >
> > > > The whole context here is:
> > > >
> > > > if (new_primary->index != 0) {
> > > > igt_assert(old_primary != new_primary);
> > > >
> > > > igt_assert_eq(old_primary->index, 0);
> > > > igt_assert_neq(new_primary->index, 0);
> > > >
> > > > > igt_swap(*old_primary, *new_primary);
> > >
> > > Now old -> { F, 7 }, new -> { A, 0 }
> > >
> > > > > igt_swap(old_primary->index, new_primary->index);
> > >
> > > Now old -> { F, 0 }, new -> { A, 7 }
> > >
> > > Or do I miss something?
> >
> > The problem is the pointers weren't swapped.
> >
> > [0] = { 0, A } <- old
> > [1] = { 1, B } <- new
> >
> > step1: full swap
> > [0] = { 1, B } <- old
> > [1] = { 0, A } <- new
> >
> > step2: index swap
> > [0] = { 0, B } <- old
> > [1] = { 1, A } <- new
> >
> > So after this I think the proper fix is to also swap the pointers.
> > Then the asserts after the swap start to make actual sense.
> >
> > step3: pointer swap
> > [0] = { 0, B } <- new
> > [1] = { 1, A } <- old
> >
> > >
> > > > >
> > > > > - igt_assert_neq(old_primary->index, 0);
> > > > > - igt_assert_eq(new_primary->index, 0);
> > > > > + igt_assert_eq(old_primary->index, 0);
> > > > > + igt_assert_neq(new_primary->index, 0);
> > > >
> > > > Why do you expect these to remain the same as before the swapping?
> > > > That's why we are swapping.
> > > >
> > > > > } else {
> > > > > igt_assert(old_primary == new_primary);
> > > >
> > > > --
> > > > Jani Nikula, Intel
> >
> > --
> > Ville Syrjälä
> > Intel
>
> I don’t believe swapping the pointers is the right approach.
> Currently, old_primary and new_primary point to the first element and
> the original primary plane in crtc->planes, respectively. Swapping the
> pointers merely redirects them without addressing the underlying data
> structure.
>
> According to the original design(Commit 58a5a2d5), the logic should
> swap the plane indices first and then swap the entire plane objects
> between the two pointers. This ensures that the first element in the
> pipe->planes array remains the primary plane. Therefore, it makes more
> sense to validate that the index of the first element is 0 while the
> other index is non-zero.
>
> Alternatively, we could rename old_primary to first_plane and
> new_primary to primary_plane to make the logic more transparent.
>
> Regards,
> Jing-Ping Jan
^ permalink raw reply [flat|nested] 17+ messages in thread
* Re: [PATCH i-g-t v2] tests/kms: correct index validation logic
2026-04-23 9:21 ` Jing-Ping Jan
2026-04-23 9:28 ` [PATCH i-g-t v3] " Jing-Ping Jan
2026-04-23 10:27 ` [PATCH i-g-t v2] " Kamil Konieczny
@ 2026-04-23 10:40 ` Ville Syrjälä
2 siblings, 0 replies; 17+ messages in thread
From: Ville Syrjälä @ 2026-04-23 10:40 UTC (permalink / raw)
To: Jing-Ping Jan; +Cc: Kamil Konieczny, Jani Nikula, igt-dev
On Thu, Apr 23, 2026 at 05:21:02PM +0800, Jing-Ping Jan wrote:
> On Thu, Apr 23, 2026 at 1:23 AM Ville Syrjälä
> <ville.syrjala@linux.intel.com> wrote:
> >
> > On Wed, Apr 22, 2026 at 07:05:57PM +0200, Kamil Konieczny wrote:
> > > Hi Jani,
> > > On 2026-04-21 at 15:02:01 +0300, Jani Nikula wrote:
> > > > On Tue, 21 Apr 2026, Jing-Ping Jan <jingpingjan@google.com> wrote:
> > > > > Based on the original implementation and the comment above the function,
> > > > > it appears the expected behavior is for the plane indices to remain
> > > > > consistent with those in crtc->planes. Therefore, after swapping the old
> > > > > and new primary planes, we must update the index in igt_plane_t to
> > > > > ensure it matches the corresponding index in crtc->planes.
> > > > >
> > > > > Therefore, we should expect the indices of the old and new primary
> > > > > planes to remain unchanged after swapping them.
> > > > >
> > > > > Fixes: ac37e1174cc4 ("lib/kms: Pimp the primary plane swapping")
> > > >
> > > > With Fixes: it's customary to Cc the author and reviewer(s).
> > > >
> > > > Cc: Jani Nikula <jani.nikula@intel.com>
> > > > Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> > > >
> > > > > Signed-off-by: Jing-Ping Jan <jingpingjan@google.com>
> > > > > ---
> > > > > v2:
> > > > > - Add Fixes tag to the commit message.
> > > > > lib/igt_kms.c | 4 ++--
> > > > > 1 file changed, 2 insertions(+), 2 deletions(-)
> > > > >
> > > > > diff --git a/lib/igt_kms.c b/lib/igt_kms.c
> > > > > index bec96f267..405a04640 100644
> > > > > --- a/lib/igt_kms.c
> > > > > +++ b/lib/igt_kms.c
> > > > > @@ -2982,8 +2982,8 @@ void igt_display_reset_outputs(igt_display_t *display)
> > > >
> > >
> > > Lets have for simplicity simple struct { char name; int index; }
> > > and old -> { A, 0 }, new -> { F, 7 }
> > >
> > > > The whole context here is:
> > > >
> > > > if (new_primary->index != 0) {
> > > > igt_assert(old_primary != new_primary);
> > > >
> > > > igt_assert_eq(old_primary->index, 0);
> > > > igt_assert_neq(new_primary->index, 0);
> > > >
> > > > > igt_swap(*old_primary, *new_primary);
> > >
> > > Now old -> { F, 7 }, new -> { A, 0 }
> > >
> > > > > igt_swap(old_primary->index, new_primary->index);
> > >
> > > Now old -> { F, 0 }, new -> { A, 7 }
> > >
> > > Or do I miss something?
> >
> > The problem is the pointers weren't swapped.
> >
> > [0] = { 0, A } <- old
> > [1] = { 1, B } <- new
> >
> > step1: full swap
> > [0] = { 1, B } <- old
> > [1] = { 0, A } <- new
> >
> > step2: index swap
> > [0] = { 0, B } <- old
> > [1] = { 1, A } <- new
> >
> > So after this I think the proper fix is to also swap the pointers.
> > Then the asserts after the swap start to make actual sense.
> >
> > step3: pointer swap
> > [0] = { 0, B } <- new
> > [1] = { 1, A } <- old
> >
> > >
> > > > >
> > > > > - igt_assert_neq(old_primary->index, 0);
> > > > > - igt_assert_eq(new_primary->index, 0);
> > > > > + igt_assert_eq(old_primary->index, 0);
> > > > > + igt_assert_neq(new_primary->index, 0);
> > > >
> > > > Why do you expect these to remain the same as before the swapping?
> > > > That's why we are swapping.
> > > >
> > > > > } else {
> > > > > igt_assert(old_primary == new_primary);
> > > >
> > > > --
> > > > Jani Nikula, Intel
> >
> > --
> > Ville Syrjälä
> > Intel
>
> I don’t believe swapping the pointers is the right approach.
> Currently, old_primary and new_primary point to the first element and
> the original primary plane in crtc->planes, respectively. Swapping the
> pointers merely redirects them without addressing the underlying data
> structure.
We already swap the data. Just need to *also* swap the pointers
so that they track their data correctly. Then the asserts will
make sense.
--
Ville Syrjälä
Intel
^ permalink raw reply [flat|nested] 17+ messages in thread
end of thread, other threads:[~2026-04-23 10:40 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-20 7:49 [PATCH i-g-t] tests/kms: correct index validation logic Jing-Ping Jan
2026-04-20 18:16 ` Kamil Konieczny
2026-04-21 2:07 ` Jing-Ping Jan
2026-04-21 6:13 ` Karthik B S
2026-04-21 6:43 ` [PATCH i-g-t v2] " Jing-Ping Jan
2026-04-21 9:28 ` Karthik B S
2026-04-21 12:02 ` Jani Nikula
2026-04-22 17:05 ` Kamil Konieczny
2026-04-22 17:23 ` Ville Syrjälä
2026-04-23 9:21 ` Jing-Ping Jan
2026-04-23 9:28 ` [PATCH i-g-t v3] " Jing-Ping Jan
2026-04-23 10:27 ` [PATCH i-g-t v2] " Kamil Konieczny
2026-04-23 10:40 ` Ville Syrjälä
2026-04-21 21:28 ` ✓ i915.CI.BAT: success for tests/kms: correct index validation logic (rev2) Patchwork
2026-04-21 22:20 ` ✓ Xe.CI.BAT: " Patchwork
2026-04-22 2:36 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-22 5:16 ` ✓ i915.CI.Full: success " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox