* [Intel-gfx] [PATCH] i915: Limit the length of an sg list to the requested length
@ 2023-09-19 19:48 Matthew Wilcox (Oracle)
2023-09-19 23:49 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
` (5 more replies)
0 siblings, 6 replies; 8+ messages in thread
From: Matthew Wilcox (Oracle) @ 2023-09-19 19:48 UTC (permalink / raw)
To: Andrew Morton
Cc: Matthew Wilcox (Oracle), intel-gfx, linux-kernel,
Oleksandr Natalenko, dri-devel, Rodrigo Vivi, stable
The folio conversion changed the behaviour of shmem_sg_alloc_table() to
put the entire length of the last folio into the sg list, even if the sg
list should have been shorter. gen8_ggtt_insert_entries() relied on the
list being the right langth and would overrun the end of the page tables.
Other functions may also have been affected.
Clamp the length of the last entry in the sg list to be the expected
length.
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Fixes: 0b62af28f249 ("i915: convert shmem_sg_free_table() to use a folio_batch")
Cc: stable@vger.kernel.org # 6.5.x
Link: https://gitlab.freedesktop.org/drm/intel/-/issues/9256
Link: https://lore.kernel.org/lkml/6287208.lOV4Wx5bFT@natalenko.name/
Reported-by: Oleksandr Natalenko <oleksandr@natalenko.name>
Tested-by: Oleksandr Natalenko <oleksandr@natalenko.name>
---
drivers/gpu/drm/i915/gem/i915_gem_shmem.c | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_shmem.c b/drivers/gpu/drm/i915/gem/i915_gem_shmem.c
index 8f1633c3fb93..73a4a4eb29e0 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_shmem.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_shmem.c
@@ -100,6 +100,7 @@ int shmem_sg_alloc_table(struct drm_i915_private *i915, struct sg_table *st,
st->nents = 0;
for (i = 0; i < page_count; i++) {
struct folio *folio;
+ unsigned long nr_pages;
const unsigned int shrink[] = {
I915_SHRINK_BOUND | I915_SHRINK_UNBOUND,
0,
@@ -150,6 +151,8 @@ int shmem_sg_alloc_table(struct drm_i915_private *i915, struct sg_table *st,
}
} while (1);
+ nr_pages = min_t(unsigned long,
+ folio_nr_pages(folio), page_count - i);
if (!i ||
sg->length >= max_segment ||
folio_pfn(folio) != next_pfn) {
@@ -157,13 +160,13 @@ int shmem_sg_alloc_table(struct drm_i915_private *i915, struct sg_table *st,
sg = sg_next(sg);
st->nents++;
- sg_set_folio(sg, folio, folio_size(folio), 0);
+ sg_set_folio(sg, folio, nr_pages * PAGE_SIZE, 0);
} else {
/* XXX: could overflow? */
- sg->length += folio_size(folio);
+ sg->length += nr_pages * PAGE_SIZE;
}
- next_pfn = folio_pfn(folio) + folio_nr_pages(folio);
- i += folio_nr_pages(folio) - 1;
+ next_pfn = folio_pfn(folio) + nr_pages;
+ i += nr_pages - 1;
/* Check that the i965g/gm workaround works. */
GEM_BUG_ON(gfp & __GFP_DMA32 && next_pfn >= 0x00100000UL);
--
2.40.1
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for i915: Limit the length of an sg list to the requested length
2023-09-19 19:48 [Intel-gfx] [PATCH] i915: Limit the length of an sg list to the requested length Matthew Wilcox (Oracle)
@ 2023-09-19 23:49 ` Patchwork
2023-09-19 23:49 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
` (4 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2023-09-19 23:49 UTC (permalink / raw)
To: Matthew Wilcox (Oracle); +Cc: intel-gfx
== Series Details ==
Series: i915: Limit the length of an sg list to the requested length
URL : https://patchwork.freedesktop.org/series/123940/
State : warning
== Summary ==
Error: dim checkpatch failed
2d1f0e6ceb63 i915: Limit the length of an sg list to the requested length
-:20: WARNING:BAD_REPORTED_BY_LINK: Reported-by: should be immediately followed by Closes: with a URL to the report
#20:
Reported-by: Oleksandr Natalenko <oleksandr@natalenko.name>
Tested-by: Oleksandr Natalenko <oleksandr@natalenko.name>
-:40: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#40: FILE: drivers/gpu/drm/i915/gem/i915_gem_shmem.c:155:
+ nr_pages = min_t(unsigned long,
+ folio_nr_pages(folio), page_count - i);
total: 0 errors, 1 warnings, 1 checks, 32 lines checked
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✗ Fi.CI.SPARSE: warning for i915: Limit the length of an sg list to the requested length
2023-09-19 19:48 [Intel-gfx] [PATCH] i915: Limit the length of an sg list to the requested length Matthew Wilcox (Oracle)
2023-09-19 23:49 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
@ 2023-09-19 23:49 ` Patchwork
2023-09-19 23:49 ` [Intel-gfx] ✗ Fi.CI.DOCS: " Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2023-09-19 23:49 UTC (permalink / raw)
To: Matthew Wilcox (Oracle); +Cc: intel-gfx
== Series Details ==
Series: i915: Limit the length of an sg list to the requested length
URL : https://patchwork.freedesktop.org/series/123940/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✗ Fi.CI.DOCS: warning for i915: Limit the length of an sg list to the requested length
2023-09-19 19:48 [Intel-gfx] [PATCH] i915: Limit the length of an sg list to the requested length Matthew Wilcox (Oracle)
2023-09-19 23:49 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
2023-09-19 23:49 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
@ 2023-09-19 23:49 ` Patchwork
2023-09-20 0:07 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2023-09-19 23:49 UTC (permalink / raw)
To: Matthew Wilcox (Oracle); +Cc: intel-gfx
== Series Details ==
Series: i915: Limit the length of an sg list to the requested length
URL : https://patchwork.freedesktop.org/series/123940/
State : warning
== Summary ==
Error: patch https://patchwork.freedesktop.org/api/1.0/series/123940/revisions/1/mbox/ not found
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for i915: Limit the length of an sg list to the requested length
2023-09-19 19:48 [Intel-gfx] [PATCH] i915: Limit the length of an sg list to the requested length Matthew Wilcox (Oracle)
` (2 preceding siblings ...)
2023-09-19 23:49 ` [Intel-gfx] ✗ Fi.CI.DOCS: " Patchwork
@ 2023-09-20 0:07 ` Patchwork
2023-09-20 6:08 ` [Intel-gfx] [PATCH] " Andrzej Hajda
2023-09-20 12:00 ` [Intel-gfx] ✗ Fi.CI.IGT: failure for " Patchwork
5 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2023-09-20 0:07 UTC (permalink / raw)
To: Matthew Wilcox (Oracle); +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 4761 bytes --]
== Series Details ==
Series: i915: Limit the length of an sg list to the requested length
URL : https://patchwork.freedesktop.org/series/123940/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13653 -> Patchwork_123940v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/index.html
Participating hosts (38 -> 37)
------------------------------
Additional (1): fi-hsw-4770
Missing (2): fi-kbl-soraka fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_123940v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_suspend@basic-s0@smem:
- bat-dg2-9: [PASS][1] -> [INCOMPLETE][2] ([i915#8797] / [i915#9275])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html
- bat-mtlp-8: NOTRUN -> [ABORT][3] ([i915#9262])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/bat-mtlp-8/igt@gem_exec_suspend@basic-s0@smem.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-mtlp-8: NOTRUN -> [SKIP][4] ([i915#6645])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- fi-hsw-4770: NOTRUN -> [SKIP][5] ([fdo#109271]) +13 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1:
- fi-hsw-4770: NOTRUN -> [DMESG-WARN][6] ([i915#8841]) +6 other tests dmesg-warn
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/fi-hsw-4770/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-vga-1.html
* igt@kms_psr@sprite_plane_onoff:
- fi-hsw-4770: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#1072]) +3 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/fi-hsw-4770/igt@kms_psr@sprite_plane_onoff.html
#### Possible fixes ####
* igt@i915_selftest@live@requests:
- bat-mtlp-8: [ABORT][8] ([i915#9262]) -> [PASS][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/bat-mtlp-8/igt@i915_selftest@live@requests.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/bat-mtlp-8/igt@i915_selftest@live@requests.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- {bat-dg2-13}: [DMESG-WARN][10] ([i915#7952]) -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_frames@dp-crc-fast:
- {bat-dg2-13}: [DMESG-WARN][12] ([Intel XE#485]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#485]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/485
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952
[i915#8797]: https://gitlab.freedesktop.org/drm/intel/issues/8797
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262
[i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
Build changes
-------------
* Linux: CI_DRM_13653 -> Patchwork_123940v1
CI-20190529: 20190529
CI_DRM_13653: 56d487b04d902a227f8bc5cc93b73a71f7c06a12 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7493: 2517e42d612e0c1ca096acf8b5f6177f7ef4bce7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_123940v1: 56d487b04d902a227f8bc5cc93b73a71f7c06a12 @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
960da5004d98 i915: Limit the length of an sg list to the requested length
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/index.html
[-- Attachment #2: Type: text/html, Size: 5725 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] [PATCH] i915: Limit the length of an sg list to the requested length
2023-09-19 19:48 [Intel-gfx] [PATCH] i915: Limit the length of an sg list to the requested length Matthew Wilcox (Oracle)
` (3 preceding siblings ...)
2023-09-20 0:07 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-09-20 6:08 ` Andrzej Hajda
2023-09-20 12:00 ` [Intel-gfx] ✗ Fi.CI.IGT: failure for " Patchwork
5 siblings, 0 replies; 8+ messages in thread
From: Andrzej Hajda @ 2023-09-20 6:08 UTC (permalink / raw)
To: Matthew Wilcox (Oracle), Andrew Morton
Cc: intel-gfx, linux-kernel, stable, Oleksandr Natalenko, dri-devel,
Rodrigo Vivi
On 19.09.2023 21:48, Matthew Wilcox (Oracle) wrote:
> The folio conversion changed the behaviour of shmem_sg_alloc_table() to
> put the entire length of the last folio into the sg list, even if the sg
> list should have been shorter. gen8_ggtt_insert_entries() relied on the
> list being the right langth and would overrun the end of the page tables.
s/langth/length/, I can fix it on applying.
> Other functions may also have been affected.
>
> Clamp the length of the last entry in the sg list to be the expected
> length.
>
> Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
> Fixes: 0b62af28f249 ("i915: convert shmem_sg_free_table() to use a folio_batch")
> Cc: stable@vger.kernel.org # 6.5.x
> Link: https://gitlab.freedesktop.org/drm/intel/-/issues/9256
> Link: https://lore.kernel.org/lkml/6287208.lOV4Wx5bFT@natalenko.name/
> Reported-by: Oleksandr Natalenko <oleksandr@natalenko.name>
> Tested-by: Oleksandr Natalenko <oleksandr@natalenko.name>
Reviewed-by: Andrzej Hajda <andrzej.hajda@intel.com>
Regards
Andrzej
> ---
> drivers/gpu/drm/i915/gem/i915_gem_shmem.c | 11 +++++++----
> 1 file changed, 7 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/gem/i915_gem_shmem.c b/drivers/gpu/drm/i915/gem/i915_gem_shmem.c
> index 8f1633c3fb93..73a4a4eb29e0 100644
> --- a/drivers/gpu/drm/i915/gem/i915_gem_shmem.c
> +++ b/drivers/gpu/drm/i915/gem/i915_gem_shmem.c
> @@ -100,6 +100,7 @@ int shmem_sg_alloc_table(struct drm_i915_private *i915, struct sg_table *st,
> st->nents = 0;
> for (i = 0; i < page_count; i++) {
> struct folio *folio;
> + unsigned long nr_pages;
> const unsigned int shrink[] = {
> I915_SHRINK_BOUND | I915_SHRINK_UNBOUND,
> 0,
> @@ -150,6 +151,8 @@ int shmem_sg_alloc_table(struct drm_i915_private *i915, struct sg_table *st,
> }
> } while (1);
>
> + nr_pages = min_t(unsigned long,
> + folio_nr_pages(folio), page_count - i);
> if (!i ||
> sg->length >= max_segment ||
> folio_pfn(folio) != next_pfn) {
> @@ -157,13 +160,13 @@ int shmem_sg_alloc_table(struct drm_i915_private *i915, struct sg_table *st,
> sg = sg_next(sg);
>
> st->nents++;
> - sg_set_folio(sg, folio, folio_size(folio), 0);
> + sg_set_folio(sg, folio, nr_pages * PAGE_SIZE, 0);
> } else {
> /* XXX: could overflow? */
> - sg->length += folio_size(folio);
> + sg->length += nr_pages * PAGE_SIZE;
> }
> - next_pfn = folio_pfn(folio) + folio_nr_pages(folio);
> - i += folio_nr_pages(folio) - 1;
> + next_pfn = folio_pfn(folio) + nr_pages;
> + i += nr_pages - 1;
>
> /* Check that the i965g/gm workaround works. */
> GEM_BUG_ON(gfp & __GFP_DMA32 && next_pfn >= 0x00100000UL);
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for i915: Limit the length of an sg list to the requested length
2023-09-19 19:48 [Intel-gfx] [PATCH] i915: Limit the length of an sg list to the requested length Matthew Wilcox (Oracle)
` (4 preceding siblings ...)
2023-09-20 6:08 ` [Intel-gfx] [PATCH] " Andrzej Hajda
@ 2023-09-20 12:00 ` Patchwork
2023-09-20 20:59 ` Andrzej Hajda
5 siblings, 1 reply; 8+ messages in thread
From: Patchwork @ 2023-09-20 12:00 UTC (permalink / raw)
To: Matthew Wilcox (Oracle); +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 72053 bytes --]
== Series Details ==
Series: i915: Limit the length of an sg list to the requested length
URL : https://patchwork.freedesktop.org/series/123940/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13653_full -> Patchwork_123940v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_123940v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_123940v1_full, please notify your bug team (lgci.bug.filing@intel.com) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_123940v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@drm_mm@drm_mm_test:
- shard-rkl: NOTRUN -> [TIMEOUT][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@drm_mm@drm_mm_test.html
* igt@kms_lease@page_flip_implicit_plane@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_lease@page_flip_implicit_plane@pipe-d-edp-1.html
* igt@kms_selftest@drm_damage:
- shard-dg2: NOTRUN -> [TIMEOUT][3] +2 other tests timeout
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_selftest@drm_damage.html
* igt@kms_selftest@drm_plane:
- shard-snb: NOTRUN -> [TIMEOUT][4] +1 other test timeout
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-snb1/igt@kms_selftest@drm_plane.html
- shard-mtlp: NOTRUN -> [TIMEOUT][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_selftest@drm_plane.html
* igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend:
- shard-dg2: [PASS][6] -> [INCOMPLETE][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg2-6/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-2/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
#### Warnings ####
* igt@drm_buddy@drm_buddy_test:
- shard-apl: [ABORT][8] -> [TIMEOUT][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-apl7/igt@drm_buddy@drm_buddy_test.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-apl4/igt@drm_buddy@drm_buddy_test.html
Known issues
------------
Here are the changes found in Patchwork_123940v1_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- shard-snb: NOTRUN -> [INCOMPLETE][10] ([i915#4528] / [i915#9372])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-snb1/igt@core_hotunplug@unbind-rebind.html
* igt@drm_fdinfo@busy-hang@bcs0:
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#8414]) +9 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@drm_fdinfo@busy-hang@bcs0.html
* igt@drm_fdinfo@virtual-busy-idle:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8414])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@drm_fdinfo@virtual-busy-idle.html
* igt@gem_bad_reloc@negative-reloc-lut:
- shard-rkl: NOTRUN -> [SKIP][13] ([i915#3281]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@gem_bad_reloc@negative-reloc-lut.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-tglu: NOTRUN -> [SKIP][14] ([i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#7697])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [ABORT][16] ([i915#7461])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_isolation@preservation-s3@vcs0:
- shard-mtlp: [PASS][17] -> [DMESG-WARN][18] ([i915#9262]) +2 other tests dmesg-warn
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-mtlp-7/igt@gem_ctx_isolation@preservation-s3@vcs0.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@gem_ctx_isolation@preservation-s3@vcs0.html
* igt@gem_ctx_persistence@engines-mixed-process:
- shard-snb: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#1099])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-snb2/igt@gem_ctx_persistence@engines-mixed-process.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][20] -> [FAIL][21] ([i915#5784])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg1-17/igt@gem_eio@unwedge-stress.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-17/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@hang:
- shard-mtlp: NOTRUN -> [ABORT][22] ([i915#8104] / [i915#9262])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@gem_exec_balancer@hang.html
* igt@gem_exec_endless@dispatch@rcs0:
- shard-tglu: [PASS][23] -> [TIMEOUT][24] ([i915#3778] / [i915#7392])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-tglu-3/igt@gem_exec_endless@dispatch@rcs0.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-4/igt@gem_exec_endless@dispatch@rcs0.html
* igt@gem_exec_fair@basic-none@bcs0:
- shard-rkl: [PASS][25] -> [FAIL][26] ([i915#2842]) +1 other test fail
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html
* igt@gem_exec_fair@basic-pace:
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [PASS][28] -> [FAIL][29] ([i915#2842])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-throttle:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4473] / [i915#4771])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) +4 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][32] ([fdo#109283] / [i915#5107])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][33] ([i915#3281]) +7 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html
* igt@gem_exec_reloc@basic-wc-gtt-active:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#3281]) +7 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@gem_exec_reloc@basic-wc-gtt-active.html
* igt@gem_exec_schedule@preempt-queue:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4537] / [i915#4812])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4860])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4860]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@basic:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4613])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@gem_lmem_swapping@basic.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#8289])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-3/igt@gem_media_fill@media-fill.html
* igt@gem_mmap_gtt@basic-read-write-distinct:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#4077]) +9 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-6/igt@gem_mmap_gtt@basic-read-write-distinct.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4083]) +6 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@gem_mmap_wc@copy.html
* igt@gem_pread@bench:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3282]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@gem_pread@bench.html
* igt@gem_pread@snoop:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3282]) +5 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@gem_pread@snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-snb: NOTRUN -> [WARN][44] ([i915#2658])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-snb2/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-regular-buffer:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#4270])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4270]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4270]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_render_copy@x-tiled-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#8428]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@gem_render_copy@x-tiled-to-vebox-y-tiled.html
* igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
- shard-snb: NOTRUN -> [SKIP][49] ([fdo#109271]) +161 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-snb1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#8411])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_softpin@noreloc-s3:
- shard-mtlp: NOTRUN -> [ABORT][51] ([i915#9262]) +2 other tests abort
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-3/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_pread_pwrite:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4079]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@gem_tiled_pread_pwrite.html
* igt@gem_unfence_active_buffers:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4879])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@gem_unfence_active_buffers.html
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4879])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#3297]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#3323])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#3282])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@mmap-offset-banned@gtt:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#3297]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@gem_userptr_blits@mmap-offset-banned@gtt.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#3297]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@vma-merge:
- shard-dg2: NOTRUN -> [FAIL][60] ([i915#3318])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-6/igt@gem_userptr_blits@vma-merge.html
* igt@gen7_exec_parse@basic-offset:
- shard-dg2: NOTRUN -> [SKIP][61] ([fdo#109289]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@gen7_exec_parse@basic-offset.html
* igt@gen7_exec_parse@load-register-reg:
- shard-mtlp: NOTRUN -> [SKIP][62] ([fdo#109289]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@gen7_exec_parse@load-register-reg.html
* igt@gen9_exec_parse@bb-oversize:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#2856])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#2856]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@gen9_exec_parse@unaligned-jump.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: NOTRUN -> [SKIP][65] ([i915#2527]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@gen9_exec_parse@valid-registers.html
* igt@i915_hangman@engine-engine-error@vcs0:
- shard-mtlp: NOTRUN -> [FAIL][66] ([i915#7069])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-3/igt@i915_hangman@engine-engine-error@vcs0.html
* igt@i915_module_load@load:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#6227])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: NOTRUN -> [DMESG-WARN][68] ([i915#8617])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: NOTRUN -> [ABORT][69] ([i915#8489] / [i915#8668])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#6412])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#8399])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
- shard-dg1: [PASS][72] -> [FAIL][73] ([i915#3591])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-dg1: [PASS][74] -> [SKIP][75] ([i915#1397]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg1-18/igt@i915_pm_rpm@dpms-non-lpsp.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#1397])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@i915_pm_rpm@pm-caching:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4077]) +6 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@i915_pm_rpm@pm-caching.html
* igt@i915_pm_rpm@system-suspend-modeset:
- shard-dg2: [PASS][78] -> [FAIL][79] ([fdo#103375]) +1 other test fail
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg2-7/igt@i915_pm_rpm@system-suspend-modeset.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-5/igt@i915_pm_rpm@system-suspend-modeset.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#6621])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#5723])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-snb: NOTRUN -> [DMESG-WARN][82] ([i915#8841]) +4 other tests dmesg-warn
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-snb2/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#4212]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#4212])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#4215] / [i915#5190])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#4212] / [i915#5608])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_async_flips@crc@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [DMESG-FAIL][87] ([i915#8561]) +3 other tests dmesg-fail
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_async_flips@crc@pipe-d-edp-1.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#404])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#1769] / [i915#3555])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][90] ([fdo#111614]) +4 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][91] ([fdo#111614])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#5286])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-0:
- shard-mtlp: [PASS][93] -> [FAIL][94] ([i915#5138])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-mtlp-4/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#5190]) +12 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][96] ([fdo#111614] / [i915#3638]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][97] ([fdo#111615]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][98] ([fdo#110723])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-mtlp: NOTRUN -> [SKIP][99] ([i915#6187])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#4538] / [i915#5190]) +3 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-apl: NOTRUN -> [SKIP][101] ([fdo#109271]) +23 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-apl4/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@pipe-a-ccs-on-another-bo-4_tiled_mtl_rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#5354] / [i915#6095]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_ccs@pipe-a-ccs-on-another-bo-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#3886] / [i915#6095]) +4 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-3/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#3886] / [i915#5354] / [i915#6095])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][106] ([i915#6095]) +23 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc:
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#5354] / [i915#6095]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@kms_ccs@pipe-c-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#3689] / [i915#3886] / [i915#5354]) +8 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-6/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_ccs:
- shard-tglu: NOTRUN -> [SKIP][109] ([i915#3689] / [i915#5354] / [i915#6095])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_ccs.html
* igt@kms_ccs@pipe-d-bad-aux-stride-4_tiled_mtl_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#5354]) +6 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_ccs@pipe-d-bad-aux-stride-4_tiled_mtl_mc_ccs.html
* igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#5354]) +39 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#3689] / [i915#5354]) +17 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#4087] / [i915#7213])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#4087]) +3 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg2: NOTRUN -> [SKIP][115] ([fdo#111827]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-6/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@degamma:
- shard-mtlp: NOTRUN -> [SKIP][116] ([fdo#111827])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-mtlp: NOTRUN -> [SKIP][117] ([i915#7828]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#7828]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#7828])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#7828]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_content_protection@lic:
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6944])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_content_protection@lic.html
* igt@kms_content_protection@mei_interface:
- shard-mtlp: NOTRUN -> [SKIP][122] ([i915#8063])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@kms_content_protection@mei_interface.html
* igt@kms_content_protection@srm:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#7118]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#3359]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][125] ([i915#3359]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#3555])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][127] ([fdo#109274] / [fdo#111767] / [i915#5354])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#3546]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][129] ([fdo#111825]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-dg2: NOTRUN -> [SKIP][130] ([fdo#109274] / [i915#5354]) +5 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [PASS][131] -> [FAIL][132] ([i915#2346])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#4213])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#4103])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#3555]) +5 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#8381]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-6/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#3637]) +4 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-dg2: NOTRUN -> [SKIP][138] ([fdo#109274]) +5 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#2587] / [i915#2672])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#2672]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#2672]) +2 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#8810])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#3555] / [i915#8810])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][144] ([i915#2672] / [i915#3555]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#8708]) +12 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#1825]) +18 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][147] ([fdo#111825] / [i915#1825]) +6 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt:
- shard-tglu: NOTRUN -> [SKIP][148] ([fdo#110189]) +2 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-fullscreen:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#3023]) +2 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#8708]) +6 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][151] ([i915#3458]) +12 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][152] ([fdo#109280]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#6118])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@invalid-hdr:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#3555] / [i915#8228])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_hdr@invalid-hdr.html
- shard-tglu: NOTRUN -> [SKIP][155] ([i915#3555] / [i915#8228])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#3555] / [i915#8228]) +2 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-5/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-suspend:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3555] / [i915#8228])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_lease@page_flip_implicit_plane@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [ABORT][158] ([i915#8668])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_lease@page_flip_implicit_plane@pipe-a-edp-1.html
* igt@kms_lease@page_flip_implicit_plane@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [FAIL][159] ([i915#6955]) +1 other test fail
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_lease@page_flip_implicit_plane@pipe-c-edp-1.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#6301])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_lowres@tiling-yf:
- shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3555] / [i915#8821])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#8806])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-6/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-dg1: NOTRUN -> [FAIL][163] ([i915#8292])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][164] ([i915#8292])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#5176]) +11 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-dp-4.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#5176]) +3 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#5176]) +3 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#5176]) +15 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-3.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#5235]) +3 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#5235]) +11 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#5235]) +5 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#5235]) +7 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2: NOTRUN -> [SKIP][173] ([i915#6524] / [i915#6805])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#658])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: NOTRUN -> [SKIP][175] ([fdo#111068] / [i915#658])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#4348])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@no_drrs:
- shard-dg2: NOTRUN -> [SKIP][177] ([i915#1072]) +6 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_psr@no_drrs.html
* igt@kms_psr@psr2_sprite_mmap_cpu:
- shard-rkl: NOTRUN -> [SKIP][178] ([i915#1072])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_psr@psr2_sprite_mmap_cpu.html
* igt@kms_psr@psr2_suspend:
- shard-mtlp: [PASS][179] -> [ABORT][180] ([i915#9262])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-mtlp-7/igt@kms_psr@psr2_suspend.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-8/igt@kms_psr@psr2_suspend.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-rkl: [PASS][181] -> [INCOMPLETE][182] ([i915#8875]) +1 other test incomplete
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-rkl-1/igt@kms_rotation_crc@primary-rotation-90.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-6/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#4235])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#4235]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-a:
- shard-snb: [PASS][185] -> [FAIL][186] ([i915#9196])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-snb2/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-snb6/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-d:
- shard-tglu: [PASS][187] -> [FAIL][188] ([i915#9196]) +1 other test fail
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html
* igt@kms_vblank@pipe-c-ts-continuation-modeset:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#4070] / [i915#6768])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_vblank@pipe-c-ts-continuation-modeset.html
* igt@kms_vblank@pipe-d-wait-idle:
- shard-apl: NOTRUN -> [SKIP][190] ([fdo#109271] / [i915#533])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-apl4/igt@kms_vblank@pipe-d-wait-idle.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#2437])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#2436])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#7387])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@perf@global-sseu-config-invalid.html
* igt@perf_pmu@all-busy-check-all:
- shard-mtlp: NOTRUN -> [FAIL][194] ([i915#5234])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@perf_pmu@all-busy-check-all.html
* igt@perf_pmu@busy-idle-check-all@bcs0:
- shard-mtlp: NOTRUN -> [FAIL][195] ([i915#4521]) +2 other tests fail
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@perf_pmu@busy-idle-check-all@bcs0.html
* igt@perf_pmu@event-wait@rcs0:
- shard-dg2: NOTRUN -> [SKIP][196] ([fdo#112283])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@module-unload:
- shard-dg2: NOTRUN -> [FAIL][197] ([i915#5793] / [i915#6121])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-6/igt@perf_pmu@module-unload.html
* igt@perf_pmu@multi-client@ccs0:
- shard-mtlp: NOTRUN -> [FAIL][198] ([i915#4349]) +2 other tests fail
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@perf_pmu@multi-client@ccs0.html
* igt@prime_mmap_coherency@ioctl-errors:
- shard-mtlp: NOTRUN -> [FAIL][199] ([i915#9334])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@prime_mmap_coherency@ioctl-errors.html
* igt@prime_vgem@basic-write:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#3291] / [i915#3708])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][201] ([i915#3708]) +2 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@prime_vgem@fence-read-hang.html
* igt@v3d/v3d_submit_cl@bad-multisync-out-sync:
- shard-dg2: NOTRUN -> [SKIP][202] ([i915#2575]) +8 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-6/igt@v3d/v3d_submit_cl@bad-multisync-out-sync.html
* igt@v3d/v3d_submit_csd@bad-bo:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#2575]) +7 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@v3d/v3d_submit_csd@bad-bo.html
* igt@v3d/v3d_submit_csd@bad-multisync-extension:
- shard-rkl: NOTRUN -> [SKIP][204] ([fdo#109315]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@v3d/v3d_submit_csd@bad-multisync-extension.html
* igt@vc4/vc4_mmap@mmap-bad-handle:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#7711])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@vc4/vc4_mmap@mmap-bad-handle.html
* igt@vc4/vc4_mmap@mmap-bo:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#7711]) +5 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-6/igt@vc4/vc4_mmap@mmap-bo.html
* igt@vc4/vc4_perfmon@create-perfmon-exceed:
- shard-mtlp: NOTRUN -> [SKIP][207] ([i915#7711]) +3 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@vc4/vc4_perfmon@create-perfmon-exceed.html
* igt@vc4/vc4_tiling@get-after-free:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#2575])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@vc4/vc4_tiling@get-after-free.html
#### Possible fixes ####
* igt@gem_ctx_isolation@preservation-s3@vecs0:
- shard-mtlp: [DMESG-WARN][209] ([i915#9262]) -> [PASS][210]
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-mtlp-7/igt@gem_ctx_isolation@preservation-s3@vecs0.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@gem_ctx_isolation@preservation-s3@vecs0.html
* igt@gem_eio@in-flight-suspend:
- shard-dg2: [FAIL][211] ([fdo#103375]) -> [PASS][212]
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg2-5/igt@gem_eio@in-flight-suspend.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-11/igt@gem_eio@in-flight-suspend.html
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- shard-dg1: [FAIL][213] ([i915#3591]) -> [PASS][214]
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@i915_pm_rpm@dpms-lpsp:
- shard-dg1: [SKIP][215] ([i915#1397]) -> [PASS][216] +1 other test pass
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg1-13/igt@i915_pm_rpm@dpms-lpsp.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html
* igt@i915_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [SKIP][217] ([i915#1397]) -> [PASS][218]
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp-stress.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp-stress.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [FAIL][219] ([i915#5138]) -> [PASS][220]
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-mtlp-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_busy@extended-modeset-hang-oldfb-with-reset@pipe-a:
- shard-mtlp: [ABORT][221] ([i915#9262]) -> [PASS][222] +2 other tests pass
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-mtlp-2/igt@kms_busy@extended-modeset-hang-oldfb-with-reset@pipe-a.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@kms_busy@extended-modeset-hang-oldfb-with-reset@pipe-a.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: [FAIL][223] ([i915#2346]) -> [PASS][224]
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: [FAIL][225] ([i915#6880]) -> [PASS][226]
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
* {igt@kms_pm_dc@dc6-dpms}:
- shard-tglu: [FAIL][227] ([i915#9295]) -> [PASS][228]
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
* {igt@kms_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a}:
- shard-rkl: [SKIP][229] ([i915#1937]) -> [PASS][230]
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
* igt@kms_properties@plane-properties-legacy:
- shard-mtlp: [ABORT][231] ([i915#8668]) -> [PASS][232]
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-mtlp-5/igt@kms_properties@plane-properties-legacy.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@kms_properties@plane-properties-legacy.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-a:
- shard-apl: [FAIL][233] ([i915#9196]) -> [PASS][234]
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-apl3/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-apl1/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html
* igt@perf@enable-disable@0-rcs0:
- shard-dg2: [FAIL][235] ([i915#8724]) -> [PASS][236]
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@perf@enable-disable@0-rcs0.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-dg1: [FAIL][237] ([i915#4349]) -> [PASS][238]
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg1-16/igt@perf_pmu@busy-double-start@vcs1.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-17/igt@perf_pmu@busy-double-start@vcs1.html
#### Warnings ####
* igt@i915_pm_rc6_residency@rc6-idle@vcs0:
- shard-tglu: [WARN][239] ([i915#2681]) -> [FAIL][240] ([i915#2681] / [i915#3591])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
- shard-tglu: [FAIL][241] ([i915#2681] / [i915#3591]) -> [WARN][242] ([i915#2681])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
* igt@kms_content_protection@content_type_change:
- shard-dg2: [SKIP][243] ([i915#7118]) -> [SKIP][244] ([i915#7118] / [i915#7162])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg2-5/igt@kms_content_protection@content_type_change.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-11/igt@kms_content_protection@content_type_change.html
* igt@kms_content_protection@mei_interface:
- shard-dg1: [SKIP][245] ([fdo#109300]) -> [SKIP][246] ([i915#7116])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg1-13/igt@kms_content_protection@mei_interface.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-19/igt@kms_content_protection@mei_interface.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][247] ([i915#3955]) -> [SKIP][248] ([fdo#110189] / [i915#3955])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][249] ([i915#4816]) -> [SKIP][250] ([i915#4070] / [i915#4816])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@primary_mmap_gtt:
- shard-dg1: [SKIP][251] ([i915#1072]) -> [SKIP][252] ([i915#1072] / [i915#4078])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg1-14/igt@kms_psr@primary_mmap_gtt.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-13/igt@kms_psr@primary_mmap_gtt.html
* igt@kms_psr@sprite_plane_onoff:
- shard-dg1: [SKIP][253] ([i915#1072] / [i915#4078]) -> [SKIP][254] ([i915#1072])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg1-18/igt@kms_psr@sprite_plane_onoff.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-14/igt@kms_psr@sprite_plane_onoff.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118
[i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121
[i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#6955]: https://gitlab.freedesktop.org/drm/intel/issues/6955
[i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063
[i915#8104]: https://gitlab.freedesktop.org/drm/intel/issues/8104
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489
[i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561
[i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724
[i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806
[i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810
[i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261
[i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262
[i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295
[i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323
[i915#9334]: https://gitlab.freedesktop.org/drm/intel/issues/9334
[i915#9372]: https://gitlab.freedesktop.org/drm/intel/issues/9372
Build changes
-------------
* Linux: CI_DRM_13653 -> Patchwork_123940v1
CI-20190529: 20190529
CI_DRM_13653: 56d487b04d902a227f8bc5cc93b73a71f7c06a12 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7493: 2517e42d612e0c1ca096acf8b5f6177f7ef4bce7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_123940v1: 56d487b04d902a227f8bc5cc93b73a71f7c06a12 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/index.html
[-- Attachment #2: Type: text/html, Size: 85724 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.IGT: failure for i915: Limit the length of an sg list to the requested length
2023-09-20 12:00 ` [Intel-gfx] ✗ Fi.CI.IGT: failure for " Patchwork
@ 2023-09-20 20:59 ` Andrzej Hajda
0 siblings, 0 replies; 8+ messages in thread
From: Andrzej Hajda @ 2023-09-20 20:59 UTC (permalink / raw)
To: intel-gfx, Patchwork, Matthew Wilcox (Oracle)
On 20.09.2023 14:00, Patchwork wrote:
> *Patch Details*
> *Series:* i915: Limit the length of an sg list to the requested length
> *URL:* https://patchwork.freedesktop.org/series/123940/
> <https://patchwork.freedesktop.org/series/123940/>
> *State:* failure
> *Details:*
> https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/index.html
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/index.html>
>
>
> CI Bug Log - changes from CI_DRM_13653_full -> Patchwork_123940v1_full
>
>
> Summary
>
> *FAILURE*
>
> Serious unknown changes coming with Patchwork_123940v1_full absolutely
> need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in Patchwork_123940v1_full, please notify your bug team
> (lgci.bug.filing@intel.com) to allow them
> to document this new failure mode, which will reduce false positives in CI.
>
>
> Participating hosts (9 -> 9)
>
> No changes in participating hosts
>
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> Patchwork_123940v1_full:
>
>
> IGT changes
>
>
> Possible regressions
>
> *
>
> igt@drm_mm@drm_mm_test:
>
> o shard-rkl: NOTRUN -> TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@drm_mm@drm_mm_test.html>
This test always fails (notrun/timeout).
> *
>
> igt@kms_lease@page_flip_implicit_plane@pipe-d-edp-1:
>
> o shard-mtlp: NOTRUN -> DMESG-FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_lease@page_flip_implicit_plane@pipe-d-edp-1.html>
Re-appearing issue:
https://gitlab.freedesktop.org/drm/intel/-/issues/6955
> *
>
> igt@kms_selftest@drm_damage:
>
> o shard-dg2: NOTRUN -> TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_selftest@drm_damage.html> +2 other tests timeout
> *
>
> igt@kms_selftest@drm_plane:
>
> o
>
> shard-snb: NOTRUN -> TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-snb1/igt@kms_selftest@drm_plane.html> +1 other test timeout
>
> o
>
> shard-mtlp: NOTRUN -> TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_selftest@drm_plane.html>
https://gitlab.freedesktop.org/drm/intel/-/issues/8628
>
> *
>
> igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg2-6/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html> -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-2/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html>
>
Also seen on CI:
http://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13652/shard-dg2-6/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
>
> Warnings
>
> * igt@drm_buddy@drm_buddy_test:
> o shard-apl: ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-apl7/igt@drm_buddy@drm_buddy_test.html> -> TIMEOUT <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-apl4/igt@drm_buddy@drm_buddy_test.html>
>
>
It also usually timeouts, nothing new.
Summarizing all issues seems unrelated to the patch. If there are no
objections I will merge it tomorrow.
Regards
Andrzej
> Known issues
>
> Here are the changes found in Patchwork_123940v1_full that come from
> known issues:
>
>
> IGT changes
>
>
> Issues hit
>
> *
>
> igt@core_hotunplug@unbind-rebind:
>
> o shard-snb: NOTRUN -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-snb1/igt@core_hotunplug@unbind-rebind.html> (i915#4528 <https://gitlab.freedesktop.org/drm/intel/issues/4528> / i915#9372 <https://gitlab.freedesktop.org/drm/intel/issues/9372>)
> *
>
> igt@drm_fdinfo@busy-hang@bcs0:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@drm_fdinfo@busy-hang@bcs0.html> (i915#8414 <https://gitlab.freedesktop.org/drm/intel/issues/8414>) +9 other tests skip
> *
>
> igt@drm_fdinfo@virtual-busy-idle:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@drm_fdinfo@virtual-busy-idle.html> (i915#8414 <https://gitlab.freedesktop.org/drm/intel/issues/8414>)
> *
>
> igt@gem_bad_reloc@negative-reloc-lut:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@gem_bad_reloc@negative-reloc-lut.html> (i915#3281 <https://gitlab.freedesktop.org/drm/intel/issues/3281>) +1 other test skip
> *
>
> igt@gem_ccs@block-multicopy-compressed:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@gem_ccs@block-multicopy-compressed.html> (i915#9323 <https://gitlab.freedesktop.org/drm/intel/issues/9323>)
> *
>
> igt@gem_close_race@multigpu-basic-threads:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@gem_close_race@multigpu-basic-threads.html> (i915#7697 <https://gitlab.freedesktop.org/drm/intel/issues/7697>)
> *
>
> igt@gem_create@create-ext-cpu-access-big:
>
> o shard-dg2: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html> (i915#7461 <https://gitlab.freedesktop.org/drm/intel/issues/7461>)
> *
>
> igt@gem_ctx_isolation@preservation-s3@vcs0:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-mtlp-7/igt@gem_ctx_isolation@preservation-s3@vcs0.html> -> DMESG-WARN <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@gem_ctx_isolation@preservation-s3@vcs0.html> (i915#9262 <https://gitlab.freedesktop.org/drm/intel/issues/9262>) +2 other tests dmesg-warn
> *
>
> igt@gem_ctx_persistence@engines-mixed-process:
>
> o shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-snb2/igt@gem_ctx_persistence@engines-mixed-process.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#1099 <https://gitlab.freedesktop.org/drm/intel/issues/1099>)
> *
>
> igt@gem_eio@unwedge-stress:
>
> o shard-dg1: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg1-17/igt@gem_eio@unwedge-stress.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-17/igt@gem_eio@unwedge-stress.html> (i915#5784 <https://gitlab.freedesktop.org/drm/intel/issues/5784>)
> *
>
> igt@gem_exec_balancer@hang:
>
> o shard-mtlp: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@gem_exec_balancer@hang.html> (i915#8104 <https://gitlab.freedesktop.org/drm/intel/issues/8104> / i915#9262 <https://gitlab.freedesktop.org/drm/intel/issues/9262>)
> *
>
> igt@gem_exec_endless@dispatch@rcs0:
>
> o shard-tglu: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-tglu-3/igt@gem_exec_endless@dispatch@rcs0.html> -> TIMEOUT <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-4/igt@gem_exec_endless@dispatch@rcs0.html> (i915#3778 <https://gitlab.freedesktop.org/drm/intel/issues/3778> / i915#7392 <https://gitlab.freedesktop.org/drm/intel/issues/7392>)
> *
>
> igt@gem_exec_fair@basic-none@bcs0:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>) +1 other test fail
> *
>
> igt@gem_exec_fair@basic-pace:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@gem_exec_fair@basic-pace.html> (i915#3539 <https://gitlab.freedesktop.org/drm/intel/issues/3539>) +1 other test skip
> *
>
> igt@gem_exec_fair@basic-pace-share@rcs0:
>
> o shard-tglu: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
> *
>
> igt@gem_exec_fair@basic-throttle:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@gem_exec_fair@basic-throttle.html> (i915#4473 <https://gitlab.freedesktop.org/drm/intel/issues/4473> / i915#4771 <https://gitlab.freedesktop.org/drm/intel/issues/4771>)
> *
>
> igt@gem_exec_flush@basic-uc-ro-default:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@gem_exec_flush@basic-uc-ro-default.html> (i915#3539 <https://gitlab.freedesktop.org/drm/intel/issues/3539> / i915#4852 <https://gitlab.freedesktop.org/drm/intel/issues/4852>) +4 other tests skip
> *
>
> igt@gem_exec_params@rsvd2-dirt:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@gem_exec_params@rsvd2-dirt.html> (fdo#109283 <https://bugs.freedesktop.org/show_bug.cgi?id=109283> / i915#5107 <https://gitlab.freedesktop.org/drm/intel/issues/5107>)
> *
>
> igt@gem_exec_reloc@basic-gtt-cpu-noreloc:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html> (i915#3281 <https://gitlab.freedesktop.org/drm/intel/issues/3281>) +7 other tests skip
> *
>
> igt@gem_exec_reloc@basic-wc-gtt-active:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@gem_exec_reloc@basic-wc-gtt-active.html> (i915#3281 <https://gitlab.freedesktop.org/drm/intel/issues/3281>) +7 other tests skip
> *
>
> igt@gem_exec_schedule@preempt-queue:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@gem_exec_schedule@preempt-queue.html> (i915#4537 <https://gitlab.freedesktop.org/drm/intel/issues/4537> / i915#4812 <https://gitlab.freedesktop.org/drm/intel/issues/4812>)
> *
>
> igt@gem_fence_thrash@bo-write-verify-x:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@gem_fence_thrash@bo-write-verify-x.html> (i915#4860 <https://gitlab.freedesktop.org/drm/intel/issues/4860>)
> *
>
> igt@gem_fenced_exec_thrash@no-spare-fences:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences.html> (i915#4860 <https://gitlab.freedesktop.org/drm/intel/issues/4860>) +2 other tests skip
> *
>
> igt@gem_lmem_swapping@basic:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@gem_lmem_swapping@basic.html> (i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
> *
>
> igt@gem_media_fill@media-fill:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-3/igt@gem_media_fill@media-fill.html> (i915#8289 <https://gitlab.freedesktop.org/drm/intel/issues/8289>)
> *
>
> igt@gem_mmap_gtt@basic-read-write-distinct:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-6/igt@gem_mmap_gtt@basic-read-write-distinct.html> (i915#4077 <https://gitlab.freedesktop.org/drm/intel/issues/4077>) +9 other tests skip
> *
>
> igt@gem_mmap_wc@copy:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@gem_mmap_wc@copy.html> (i915#4083 <https://gitlab.freedesktop.org/drm/intel/issues/4083>) +6 other tests skip
> *
>
> igt@gem_pread@bench:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@gem_pread@bench.html> (i915#3282 <https://gitlab.freedesktop.org/drm/intel/issues/3282>) +3 other tests skip
> *
>
> igt@gem_pread@snoop:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@gem_pread@snoop.html> (i915#3282 <https://gitlab.freedesktop.org/drm/intel/issues/3282>) +5 other tests skip
> *
>
> igt@gem_pwrite@basic-exhaustion:
>
> o shard-snb: NOTRUN -> WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-snb2/igt@gem_pwrite@basic-exhaustion.html> (i915#2658 <https://gitlab.freedesktop.org/drm/intel/issues/2658>)
> *
>
> igt@gem_pxp@create-regular-buffer:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@gem_pxp@create-regular-buffer.html> (i915#4270 <https://gitlab.freedesktop.org/drm/intel/issues/4270>)
> *
>
> igt@gem_pxp@fail-invalid-protected-context:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@gem_pxp@fail-invalid-protected-context.html> (i915#4270 <https://gitlab.freedesktop.org/drm/intel/issues/4270>) +1 other test skip
> *
>
> igt@gem_pxp@protected-raw-src-copy-not-readible:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@gem_pxp@protected-raw-src-copy-not-readible.html> (i915#4270 <https://gitlab.freedesktop.org/drm/intel/issues/4270>) +2 other tests skip
> *
>
> igt@gem_render_copy@x-tiled-to-vebox-y-tiled:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@gem_render_copy@x-tiled-to-vebox-y-tiled.html> (i915#8428 <https://gitlab.freedesktop.org/drm/intel/issues/8428>) +2 other tests skip
> *
>
> igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
>
> o shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-snb1/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +161 other tests skip
> *
>
> igt@gem_set_tiling_vs_blt@untiled-to-tiled:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html> (i915#8411 <https://gitlab.freedesktop.org/drm/intel/issues/8411>)
> *
>
> igt@gem_softpin@noreloc-s3:
>
> o shard-mtlp: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-3/igt@gem_softpin@noreloc-s3.html> (i915#9262 <https://gitlab.freedesktop.org/drm/intel/issues/9262>) +2 other tests abort
> *
>
> igt@gem_tiled_pread_pwrite:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@gem_tiled_pread_pwrite.html> (i915#4079 <https://gitlab.freedesktop.org/drm/intel/issues/4079>) +2 other tests skip
> *
>
> igt@gem_unfence_active_buffers:
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@gem_unfence_active_buffers.html> (i915#4879 <https://gitlab.freedesktop.org/drm/intel/issues/4879>)
>
> o
>
> shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@gem_unfence_active_buffers.html> (i915#4879 <https://gitlab.freedesktop.org/drm/intel/issues/4879>)
>
> *
>
> igt@gem_userptr_blits@create-destroy-unsync:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@gem_userptr_blits@create-destroy-unsync.html> (i915#3297 <https://gitlab.freedesktop.org/drm/intel/issues/3297>) +2 other tests skip
> *
>
> igt@gem_userptr_blits@dmabuf-sync:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@gem_userptr_blits@dmabuf-sync.html> (i915#3323 <https://gitlab.freedesktop.org/drm/intel/issues/3323>)
> *
>
> igt@gem_userptr_blits@forbidden-operations:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@gem_userptr_blits@forbidden-operations.html> (i915#3282 <https://gitlab.freedesktop.org/drm/intel/issues/3282>)
> *
>
> igt@gem_userptr_blits@mmap-offset-banned@gtt:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@gem_userptr_blits@mmap-offset-banned@gtt.html> (i915#3297 <https://gitlab.freedesktop.org/drm/intel/issues/3297>) +2 other tests skip
> *
>
> igt@gem_userptr_blits@unsync-overlap:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@gem_userptr_blits@unsync-overlap.html> (i915#3297 <https://gitlab.freedesktop.org/drm/intel/issues/3297>) +1 other test skip
> *
>
> igt@gem_userptr_blits@vma-merge:
>
> o shard-dg2: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-6/igt@gem_userptr_blits@vma-merge.html> (i915#3318 <https://gitlab.freedesktop.org/drm/intel/issues/3318>)
> *
>
> igt@gen7_exec_parse@basic-offset:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@gen7_exec_parse@basic-offset.html> (fdo#109289 <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +3 other tests skip
> *
>
> igt@gen7_exec_parse@load-register-reg:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@gen7_exec_parse@load-register-reg.html> (fdo#109289 <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +3 other tests skip
> *
>
> igt@gen9_exec_parse@bb-oversize:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@gen9_exec_parse@bb-oversize.html> (i915#2856 <https://gitlab.freedesktop.org/drm/intel/issues/2856>)
> *
>
> igt@gen9_exec_parse@unaligned-jump:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@gen9_exec_parse@unaligned-jump.html> (i915#2856 <https://gitlab.freedesktop.org/drm/intel/issues/2856>) +2 other tests skip
> *
>
> igt@gen9_exec_parse@valid-registers:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@gen9_exec_parse@valid-registers.html> (i915#2527 <https://gitlab.freedesktop.org/drm/intel/issues/2527>) +1 other test skip
> *
>
> igt@i915_hangman@engine-engine-error@vcs0:
>
> o shard-mtlp: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-3/igt@i915_hangman@engine-engine-error@vcs0.html> (i915#7069 <https://gitlab.freedesktop.org/drm/intel/issues/7069>)
> *
>
> igt@i915_module_load@load:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@i915_module_load@load.html> (i915#6227 <https://gitlab.freedesktop.org/drm/intel/issues/6227>)
> *
>
> igt@i915_module_load@reload-with-fault-injection:
>
> o
>
> shard-dg2: NOTRUN -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html> (i915#8617 <https://gitlab.freedesktop.org/drm/intel/issues/8617>)
>
> o
>
> shard-mtlp: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@i915_module_load@reload-with-fault-injection.html> (i915#8489 <https://gitlab.freedesktop.org/drm/intel/issues/8489> / i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668>)
>
> *
>
> igt@i915_module_load@resize-bar:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@i915_module_load@resize-bar.html> (i915#6412 <https://gitlab.freedesktop.org/drm/intel/issues/6412>)
> *
>
> igt@i915_pm_freq_api@freq-reset:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@i915_pm_freq_api@freq-reset.html> (i915#8399 <https://gitlab.freedesktop.org/drm/intel/issues/8399>)
> *
>
> igt@i915_pm_rc6_residency@rc6-idle@vecs0:
>
> o shard-dg1: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html> (i915#3591 <https://gitlab.freedesktop.org/drm/intel/issues/3591>)
> *
>
> igt@i915_pm_rpm@dpms-non-lpsp:
>
> o shard-dg1: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg1-18/igt@i915_pm_rpm@dpms-non-lpsp.html> -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html> (i915#1397 <https://gitlab.freedesktop.org/drm/intel/issues/1397>) +1 other test skip
> *
>
> igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html> (i915#1397 <https://gitlab.freedesktop.org/drm/intel/issues/1397>)
> *
>
> igt@i915_pm_rpm@pm-caching:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@i915_pm_rpm@pm-caching.html> (i915#4077 <https://gitlab.freedesktop.org/drm/intel/issues/4077>) +6 other tests skip
> *
>
> igt@i915_pm_rpm@system-suspend-modeset:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg2-7/igt@i915_pm_rpm@system-suspend-modeset.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-5/igt@i915_pm_rpm@system-suspend-modeset.html> (fdo#103375 <https://bugs.freedesktop.org/show_bug.cgi?id=103375>) +1 other test fail
> *
>
> igt@i915_pm_rps@min-max-config-idle:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@i915_pm_rps@min-max-config-idle.html> (i915#6621 <https://gitlab.freedesktop.org/drm/intel/issues/6621>)
> *
>
> igt@i915_query@test-query-geometry-subslices:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@i915_query@test-query-geometry-subslices.html> (i915#5723 <https://gitlab.freedesktop.org/drm/intel/issues/5723>)
> *
>
> igt@i915_suspend@fence-restore-tiled2untiled:
>
> o shard-snb: NOTRUN -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-snb2/igt@i915_suspend@fence-restore-tiled2untiled.html> (i915#8841 <https://gitlab.freedesktop.org/drm/intel/issues/8841>) +4 other tests dmesg-warn
> *
>
> igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html> (i915#4212 <https://gitlab.freedesktop.org/drm/intel/issues/4212>) +1 other test skip
> *
>
> igt@kms_addfb_basic@addfb25-x-tiled-legacy:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html> (i915#4212 <https://gitlab.freedesktop.org/drm/intel/issues/4212>)
> *
>
> igt@kms_addfb_basic@basic-y-tiled-legacy:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@kms_addfb_basic@basic-y-tiled-legacy.html> (i915#4215 <https://gitlab.freedesktop.org/drm/intel/issues/4215> / i915#5190 <https://gitlab.freedesktop.org/drm/intel/issues/5190>)
> *
>
> igt@kms_addfb_basic@tile-pitch-mismatch:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_addfb_basic@tile-pitch-mismatch.html> (i915#4212 <https://gitlab.freedesktop.org/drm/intel/issues/4212> / i915#5608 <https://gitlab.freedesktop.org/drm/intel/issues/5608>)
> *
>
> igt@kms_async_flips@crc@pipe-d-edp-1:
>
> o shard-mtlp: NOTRUN -> DMESG-FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_async_flips@crc@pipe-d-edp-1.html> (i915#8561 <https://gitlab.freedesktop.org/drm/intel/issues/8561>) +3 other tests dmesg-fail
> *
>
> igt@kms_atomic@plane-primary-overlay-mutable-zpos:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> (i915#404 <https://gitlab.freedesktop.org/drm/intel/issues/404>)
> *
>
> igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html> (i915#1769 <https://gitlab.freedesktop.org/drm/intel/issues/1769> / i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555>)
> *
>
> igt@kms_big_fb@4-tiled-32bpp-rotate-270:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html> (fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614>) +4 other tests skip
> *
>
> igt@kms_big_fb@4-tiled-32bpp-rotate-90:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html> (fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614>)
> *
>
> igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html> (i915#5286 <https://gitlab.freedesktop.org/drm/intel/issues/5286>)
> *
>
> igt@kms_big_fb@x-tiled-64bpp-rotate-0:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-mtlp-4/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_big_fb@x-tiled-64bpp-rotate-0.html> (i915#5138 <https://gitlab.freedesktop.org/drm/intel/issues/5138>)
> *
>
> igt@kms_big_fb@y-tiled-8bpp-rotate-180:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html> (i915#5190 <https://gitlab.freedesktop.org/drm/intel/issues/5190>) +12 other tests skip
> *
>
> igt@kms_big_fb@y-tiled-8bpp-rotate-90:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html> (fdo#111614 <https://bugs.freedesktop.org/show_bug.cgi?id=111614> / i915#3638 <https://gitlab.freedesktop.org/drm/intel/issues/3638>) +2 other tests skip
> *
>
> igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html> (fdo#111615 <https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +1 other test skip
> *
>
> igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html> (fdo#110723 <https://bugs.freedesktop.org/show_bug.cgi?id=110723>)
> *
>
> igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-3/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html> (i915#6187 <https://gitlab.freedesktop.org/drm/intel/issues/6187>)
> *
>
> igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html> (i915#4538 <https://gitlab.freedesktop.org/drm/intel/issues/4538> / i915#5190 <https://gitlab.freedesktop.org/drm/intel/issues/5190>) +3 other tests skip
> *
>
> igt@kms_big_joiner@invalid-modeset:
>
> o shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-apl4/igt@kms_big_joiner@invalid-modeset.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +23 other tests skip
> *
>
> igt@kms_ccs@pipe-a-ccs-on-another-bo-4_tiled_mtl_rc_ccs:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_ccs@pipe-a-ccs-on-another-bo-4_tiled_mtl_rc_ccs.html> (i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1 other test skip
> *
>
> igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-3/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html> (i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +4 other tests skip
> *
>
> igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_mc_ccs.html> (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>)
> *
>
> igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_ccs@pipe-b-bad-rotation-90-y_tiled_gen12_mc_ccs.html> (i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>)
> *
>
> igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_rc_ccs.html> (i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +23 other tests skip
> *
>
> igt@kms_ccs@pipe-c-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@kms_ccs@pipe-c-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc.html> (i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +2 other tests skip
> *
>
> igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-6/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html> (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#3886 <https://gitlab.freedesktop.org/drm/intel/issues/3886> / i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +8 other tests skip
> *
>
> igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_ccs:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_ccs.html> (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354> / i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>)
> *
>
> igt@kms_ccs@pipe-d-bad-aux-stride-4_tiled_mtl_mc_ccs:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_ccs@pipe-d-bad-aux-stride-4_tiled_mtl_mc_ccs.html> (i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +6 other tests skip
> *
>
> igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_mtl_rc_ccs.html> (i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +39 other tests skip
> *
>
> igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-6/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html> (i915#3689 <https://gitlab.freedesktop.org/drm/intel/issues/3689> / i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +17 other tests skip
> *
>
> igt@kms_cdclk@mode-transition-all-outputs:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@kms_cdclk@mode-transition-all-outputs.html> (i915#4087 <https://gitlab.freedesktop.org/drm/intel/issues/4087> / i915#7213 <https://gitlab.freedesktop.org/drm/intel/issues/7213>)
> *
>
> igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html> (i915#4087 <https://gitlab.freedesktop.org/drm/intel/issues/4087>) +3 other tests skip
> *
>
> igt@kms_chamelium_color@ctm-0-50:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-6/igt@kms_chamelium_color@ctm-0-50.html> (fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1 other test skip
> *
>
> igt@kms_chamelium_color@degamma:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@kms_chamelium_color@degamma.html> (fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
> *
>
> igt@kms_chamelium_frames@hdmi-crc-fast:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@kms_chamelium_frames@hdmi-crc-fast.html> (i915#7828 <https://gitlab.freedesktop.org/drm/intel/issues/7828>) +4 other tests skip
> *
>
> igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html> (i915#7828 <https://gitlab.freedesktop.org/drm/intel/issues/7828>) +1 other test skip
> *
>
> igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html> (i915#7828 <https://gitlab.freedesktop.org/drm/intel/issues/7828>)
> *
>
> igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html> (i915#7828 <https://gitlab.freedesktop.org/drm/intel/issues/7828>) +3 other tests skip
> *
>
> igt@kms_content_protection@lic:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_content_protection@lic.html> (i915#6944 <https://gitlab.freedesktop.org/drm/intel/issues/6944>)
> *
>
> igt@kms_content_protection@mei_interface:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@kms_content_protection@mei_interface.html> (i915#8063 <https://gitlab.freedesktop.org/drm/intel/issues/8063>)
> *
>
> igt@kms_content_protection@srm:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@kms_content_protection@srm.html> (i915#7118 <https://gitlab.freedesktop.org/drm/intel/issues/7118>) +1 other test skip
> *
>
> igt@kms_cursor_crc@cursor-onscreen-512x170:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html> (i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 other test skip
> *
>
> igt@kms_cursor_crc@cursor-random-512x170:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-6/igt@kms_cursor_crc@cursor-random-512x170.html> (i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>) +1 other test skip
> *
>
> igt@kms_cursor_crc@cursor-rapid-movement-max-size:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555>)
> *
>
> igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html> (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274> / fdo#111767 <https://bugs.freedesktop.org/show_bug.cgi?id=111767> / i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354>)
> *
>
> igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html> (i915#3546 <https://gitlab.freedesktop.org/drm/intel/issues/3546>) +1 other test skip
> *
>
> igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html> (fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +1 other test skip
> *
>
> igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html> (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274> / i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +5 other tests skip
> *
>
> igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
>
> o shard-apl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html> (i915#2346 <https://gitlab.freedesktop.org/drm/intel/issues/2346>)
> *
>
> igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html> (i915#4213 <https://gitlab.freedesktop.org/drm/intel/issues/4213>)
> *
>
> igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html> (i915#4103 <https://gitlab.freedesktop.org/drm/intel/issues/4103>)
> *
>
> igt@kms_dither@fb-8bpc-vs-panel-8bpc:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +5 other tests skip
> *
>
> igt@kms_flip@2x-flip-vs-fences:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-6/igt@kms_flip@2x-flip-vs-fences.html> (i915#8381 <https://gitlab.freedesktop.org/drm/intel/issues/8381>) +1 other test skip
> *
>
> igt@kms_flip@2x-flip-vs-suspend-interruptible:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html> (i915#3637 <https://gitlab.freedesktop.org/drm/intel/issues/3637>) +4 other tests skip
> *
>
> igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html> (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274>) +5 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html> (i915#2587 <https://gitlab.freedesktop.org/drm/intel/issues/2587> / i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>)
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html> (i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +1 other test skip
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html> (i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +2 other tests skip
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html> (i915#8810 <https://gitlab.freedesktop.org/drm/intel/issues/8810>)
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#8810 <https://gitlab.freedesktop.org/drm/intel/issues/8810>)
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html> (i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672> / i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +1 other test skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html> (i915#8708 <https://gitlab.freedesktop.org/drm/intel/issues/8708>) +12 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-pwrite.html> (i915#1825 <https://gitlab.freedesktop.org/drm/intel/issues/1825>) +18 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html> (fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825> / i915#1825 <https://gitlab.freedesktop.org/drm/intel/issues/1825>) +6 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-pgflip-blt.html> (fdo#110189 <https://bugs.freedesktop.org/show_bug.cgi?id=110189>) +2 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-fullscreen:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-fullscreen.html> (i915#3023 <https://gitlab.freedesktop.org/drm/intel/issues/3023>) +2 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html> (i915#8708 <https://gitlab.freedesktop.org/drm/intel/issues/8708>) +6 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html> (i915#3458 <https://gitlab.freedesktop.org/drm/intel/issues/3458>) +12 other tests skip
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-render.html> (fdo#109280 <https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +2 other tests skip
> *
>
> igt@kms_getfb@getfb-reject-ccs:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_getfb@getfb-reject-ccs.html> (i915#6118 <https://gitlab.freedesktop.org/drm/intel/issues/6118>)
> *
>
> igt@kms_hdr@invalid-hdr:
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_hdr@invalid-hdr.html> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#8228 <https://gitlab.freedesktop.org/drm/intel/issues/8228>)
>
> o
>
> shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@kms_hdr@invalid-hdr.html> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#8228 <https://gitlab.freedesktop.org/drm/intel/issues/8228>)
>
> *
>
> igt@kms_hdr@invalid-metadata-sizes:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-5/igt@kms_hdr@invalid-metadata-sizes.html> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#8228 <https://gitlab.freedesktop.org/drm/intel/issues/8228>) +2 other tests skip
> *
>
> igt@kms_hdr@static-toggle-suspend:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@kms_hdr@static-toggle-suspend.html> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#8228 <https://gitlab.freedesktop.org/drm/intel/issues/8228>)
> *
>
> igt@kms_lease@page_flip_implicit_plane@pipe-a-edp-1:
>
> o shard-mtlp: NOTRUN -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_lease@page_flip_implicit_plane@pipe-a-edp-1.html> (i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668>)
> *
>
> igt@kms_lease@page_flip_implicit_plane@pipe-c-edp-1:
>
> o shard-mtlp: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_lease@page_flip_implicit_plane@pipe-c-edp-1.html> (i915#6955 <https://gitlab.freedesktop.org/drm/intel/issues/6955>) +1 other test fail
> *
>
> igt@kms_panel_fitting@atomic-fastset:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_panel_fitting@atomic-fastset.html> (i915#6301 <https://gitlab.freedesktop.org/drm/intel/issues/6301>)
> *
>
> igt@kms_plane_lowres@tiling-yf:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@kms_plane_lowres@tiling-yf.html> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555> / i915#8821 <https://gitlab.freedesktop.org/drm/intel/issues/8821>)
> *
>
> igt@kms_plane_multiple@tiling-y:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-6/igt@kms_plane_multiple@tiling-y.html> (i915#8806 <https://gitlab.freedesktop.org/drm/intel/issues/8806>)
> *
>
> igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
>
> o shard-dg1: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html> (i915#8292 <https://gitlab.freedesktop.org/drm/intel/issues/8292>)
> *
>
> igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
>
> o shard-rkl: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html> (i915#8292 <https://gitlab.freedesktop.org/drm/intel/issues/8292>)
> *
>
> igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-dp-4:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-dp-4.html> (i915#5176 <https://gitlab.freedesktop.org/drm/intel/issues/5176>) +11 other tests skip
> *
>
> igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1.html> (i915#5176 <https://gitlab.freedesktop.org/drm/intel/issues/5176>) +3 other tests skip
> *
>
> igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html> (i915#5176 <https://gitlab.freedesktop.org/drm/intel/issues/5176>) +3 other tests skip
> *
>
> igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-3:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-b-hdmi-a-3.html> (i915#5176 <https://gitlab.freedesktop.org/drm/intel/issues/5176>) +15 other tests skip
> *
>
> igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-edp-1:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-edp-1.html> (i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +3 other tests skip
> *
>
> igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c-hdmi-a-1.html> (i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +11 other tests skip
> *
>
> igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html> (i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +5 other tests skip
> *
>
> igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html> (i915#5235 <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +7 other tests skip
> *
>
> igt@kms_prime@basic-modeset-hybrid:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_prime@basic-modeset-hybrid.html> (i915#6524 <https://gitlab.freedesktop.org/drm/intel/issues/6524> / i915#6805 <https://gitlab.freedesktop.org/drm/intel/issues/6805>)
> *
>
> igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
> *
>
> igt@kms_psr2_su@page_flip-nv12:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_psr2_su@page_flip-nv12.html> (fdo#111068 <https://bugs.freedesktop.org/show_bug.cgi?id=111068> / i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
> *
>
> igt@kms_psr2_su@page_flip-p010:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_psr2_su@page_flip-p010.html> (i915#4348 <https://gitlab.freedesktop.org/drm/intel/issues/4348>)
> *
>
> igt@kms_psr@no_drrs:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_psr@no_drrs.html> (i915#1072 <https://gitlab.freedesktop.org/drm/intel/issues/1072>) +6 other tests skip
> *
>
> igt@kms_psr@psr2_sprite_mmap_cpu:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_psr@psr2_sprite_mmap_cpu.html> (i915#1072 <https://gitlab.freedesktop.org/drm/intel/issues/1072>)
> *
>
> igt@kms_psr@psr2_suspend:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-mtlp-7/igt@kms_psr@psr2_suspend.html> -> ABORT <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-8/igt@kms_psr@psr2_suspend.html> (i915#9262 <https://gitlab.freedesktop.org/drm/intel/issues/9262>)
> *
>
> igt@kms_rotation_crc@primary-rotation-90:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-rkl-1/igt@kms_rotation_crc@primary-rotation-90.html> -> INCOMPLETE <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-6/igt@kms_rotation_crc@primary-rotation-90.html> (i915#8875 <https://gitlab.freedesktop.org/drm/intel/issues/8875>) +1 other test incomplete
> *
>
> igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html> (i915#4235 <https://gitlab.freedesktop.org/drm/intel/issues/4235>)
> *
>
> igt@kms_rotation_crc@sprite-rotation-90:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-3/igt@kms_rotation_crc@sprite-rotation-90.html> (i915#4235 <https://gitlab.freedesktop.org/drm/intel/issues/4235>) +1 other test skip
> *
>
> igt@kms_universal_plane@cursor-fb-leak-pipe-a:
>
> o shard-snb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-snb2/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-snb6/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html> (i915#9196 <https://gitlab.freedesktop.org/drm/intel/issues/9196>)
> *
>
> igt@kms_universal_plane@cursor-fb-leak-pipe-d:
>
> o shard-tglu: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html> -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-7/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html> (i915#9196 <https://gitlab.freedesktop.org/drm/intel/issues/9196>) +1 other test fail
> *
>
> igt@kms_vblank@pipe-c-ts-continuation-modeset:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_vblank@pipe-c-ts-continuation-modeset.html> (i915#4070 <https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#6768 <https://gitlab.freedesktop.org/drm/intel/issues/6768>)
> *
>
> igt@kms_vblank@pipe-d-wait-idle:
>
> o shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-apl4/igt@kms_vblank@pipe-d-wait-idle.html> (fdo#109271 <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#533 <https://gitlab.freedesktop.org/drm/intel/issues/533>)
> *
>
> igt@kms_writeback@writeback-invalid-parameters:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@kms_writeback@writeback-invalid-parameters.html> (i915#2437 <https://gitlab.freedesktop.org/drm/intel/issues/2437>)
> *
>
> igt@perf@gen8-unprivileged-single-ctx-counters:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@perf@gen8-unprivileged-single-ctx-counters.html> (i915#2436 <https://gitlab.freedesktop.org/drm/intel/issues/2436>)
> *
>
> igt@perf@global-sseu-config-invalid:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@perf@global-sseu-config-invalid.html> (i915#7387 <https://gitlab.freedesktop.org/drm/intel/issues/7387>)
> *
>
> igt@perf_pmu@all-busy-check-all:
>
> o shard-mtlp: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@perf_pmu@all-busy-check-all.html> (i915#5234 <https://gitlab.freedesktop.org/drm/intel/issues/5234>)
> *
>
> igt@perf_pmu@busy-idle-check-all@bcs0:
>
> o shard-mtlp: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@perf_pmu@busy-idle-check-all@bcs0.html> (i915#4521 <https://gitlab.freedesktop.org/drm/intel/issues/4521>) +2 other tests fail
> *
>
> igt@perf_pmu@event-wait@rcs0:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@perf_pmu@event-wait@rcs0.html> (fdo#112283 <https://bugs.freedesktop.org/show_bug.cgi?id=112283>)
> *
>
> igt@perf_pmu@module-unload:
>
> o shard-dg2: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-6/igt@perf_pmu@module-unload.html> (i915#5793 <https://gitlab.freedesktop.org/drm/intel/issues/5793> / i915#6121 <https://gitlab.freedesktop.org/drm/intel/issues/6121>)
> *
>
> igt@perf_pmu@multi-client@ccs0:
>
> o shard-mtlp: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-2/igt@perf_pmu@multi-client@ccs0.html> (i915#4349 <https://gitlab.freedesktop.org/drm/intel/issues/4349>) +2 other tests fail
> *
>
> igt@prime_mmap_coherency@ioctl-errors:
>
> o shard-mtlp: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@prime_mmap_coherency@ioctl-errors.html> (i915#9334 <https://gitlab.freedesktop.org/drm/intel/issues/9334>)
> *
>
> igt@prime_vgem@basic-write:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@prime_vgem@basic-write.html> (i915#3291 <https://gitlab.freedesktop.org/drm/intel/issues/3291> / i915#3708 <https://gitlab.freedesktop.org/drm/intel/issues/3708>)
> *
>
> igt@prime_vgem@fence-read-hang:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@prime_vgem@fence-read-hang.html> (i915#3708 <https://gitlab.freedesktop.org/drm/intel/issues/3708>) +2 other tests skip
> *
>
> igt@v3d/v3d_submit_cl@bad-multisync-out-sync:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-6/igt@v3d/v3d_submit_cl@bad-multisync-out-sync.html> (i915#2575 <https://gitlab.freedesktop.org/drm/intel/issues/2575>) +8 other tests skip
> *
>
> igt@v3d/v3d_submit_csd@bad-bo:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@v3d/v3d_submit_csd@bad-bo.html> (i915#2575 <https://gitlab.freedesktop.org/drm/intel/issues/2575>) +7 other tests skip
> *
>
> igt@v3d/v3d_submit_csd@bad-multisync-extension:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@v3d/v3d_submit_csd@bad-multisync-extension.html> (fdo#109315 <https://bugs.freedesktop.org/show_bug.cgi?id=109315>) +2 other tests skip
> *
>
> igt@vc4/vc4_mmap@mmap-bad-handle:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@vc4/vc4_mmap@mmap-bad-handle.html> (i915#7711 <https://gitlab.freedesktop.org/drm/intel/issues/7711>)
> *
>
> igt@vc4/vc4_mmap@mmap-bo:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-6/igt@vc4/vc4_mmap@mmap-bo.html> (i915#7711 <https://gitlab.freedesktop.org/drm/intel/issues/7711>) +5 other tests skip
> *
>
> igt@vc4/vc4_perfmon@create-perfmon-exceed:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@vc4/vc4_perfmon@create-perfmon-exceed.html> (i915#7711 <https://gitlab.freedesktop.org/drm/intel/issues/7711>) +3 other tests skip
> *
>
> igt@vc4/vc4_tiling@get-after-free:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@vc4/vc4_tiling@get-after-free.html> (i915#2575 <https://gitlab.freedesktop.org/drm/intel/issues/2575>)
>
>
> Possible fixes
>
> *
>
> igt@gem_ctx_isolation@preservation-s3@vecs0:
>
> o shard-mtlp: DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-mtlp-7/igt@gem_ctx_isolation@preservation-s3@vecs0.html> (i915#9262 <https://gitlab.freedesktop.org/drm/intel/issues/9262>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@gem_ctx_isolation@preservation-s3@vecs0.html>
> *
>
> igt@gem_eio@in-flight-suspend:
>
> o shard-dg2: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg2-5/igt@gem_eio@in-flight-suspend.html> (fdo#103375 <https://bugs.freedesktop.org/show_bug.cgi?id=103375>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-11/igt@gem_eio@in-flight-suspend.html>
> *
>
> igt@i915_pm_rc6_residency@rc6-idle@rcs0:
>
> o shard-dg1: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html> (i915#3591 <https://gitlab.freedesktop.org/drm/intel/issues/3591>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html>
> *
>
> igt@i915_pm_rpm@dpms-lpsp:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg1-13/igt@i915_pm_rpm@dpms-lpsp.html> (i915#1397 <https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html> +1 other test pass
> *
>
> igt@i915_pm_rpm@modeset-lpsp-stress:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg2-11/igt@i915_pm_rpm@modeset-lpsp-stress.html> (i915#1397 <https://gitlab.freedesktop.org/drm/intel/issues/1397>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp-stress.html>
> *
>
> igt@kms_big_fb@4-tiled-64bpp-rotate-180:
>
> o shard-mtlp: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-mtlp-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html> (i915#5138 <https://gitlab.freedesktop.org/drm/intel/issues/5138>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html>
> *
>
> igt@kms_busy@extended-modeset-hang-oldfb-with-reset@pipe-a:
>
> o shard-mtlp: ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-mtlp-2/igt@kms_busy@extended-modeset-hang-oldfb-with-reset@pipe-a.html> (i915#9262 <https://gitlab.freedesktop.org/drm/intel/issues/9262>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-4/igt@kms_busy@extended-modeset-hang-oldfb-with-reset@pipe-a.html> +2 other tests pass
> *
>
> igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
>
> o shard-glk: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html> (i915#2346 <https://gitlab.freedesktop.org/drm/intel/issues/2346>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html>
> *
>
> igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
>
> o shard-dg2: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html> (i915#6880 <https://gitlab.freedesktop.org/drm/intel/issues/6880>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html>
> *
>
> {igt@kms_pm_dc@dc6-dpms}:
>
> o shard-tglu: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html> (i915#9295 <https://gitlab.freedesktop.org/drm/intel/issues/9295>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html>
> *
>
> {igt@kms_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a}:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html> (i915#1937 <https://gitlab.freedesktop.org/drm/intel/issues/1937>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html>
> *
>
> igt@kms_properties@plane-properties-legacy:
>
> o shard-mtlp: ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-mtlp-5/igt@kms_properties@plane-properties-legacy.html> (i915#8668 <https://gitlab.freedesktop.org/drm/intel/issues/8668>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-mtlp-1/igt@kms_properties@plane-properties-legacy.html>
> *
>
> igt@kms_universal_plane@cursor-fb-leak-pipe-a:
>
> o shard-apl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-apl3/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html> (i915#9196 <https://gitlab.freedesktop.org/drm/intel/issues/9196>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-apl1/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html>
> *
>
> igt@perf@enable-disable@0-rcs0:
>
> o shard-dg2: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html> (i915#8724 <https://gitlab.freedesktop.org/drm/intel/issues/8724>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-10/igt@perf@enable-disable@0-rcs0.html>
> *
>
> igt@perf_pmu@busy-double-start@vcs1:
>
> o shard-dg1: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg1-16/igt@perf_pmu@busy-double-start@vcs1.html> (i915#4349 <https://gitlab.freedesktop.org/drm/intel/issues/4349>) -> PASS <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-17/igt@perf_pmu@busy-double-start@vcs1.html>
>
>
> Warnings
>
> *
>
> igt@i915_pm_rc6_residency@rc6-idle@vcs0:
>
> o shard-tglu: WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html> (i915#2681 <https://gitlab.freedesktop.org/drm/intel/issues/2681>) -> FAIL <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html> (i915#2681 <https://gitlab.freedesktop.org/drm/intel/issues/2681> / i915#3591 <https://gitlab.freedesktop.org/drm/intel/issues/3591>)
> *
>
> igt@i915_pm_rc6_residency@rc6-idle@vecs0:
>
> o shard-tglu: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html> (i915#2681 <https://gitlab.freedesktop.org/drm/intel/issues/2681> / i915#3591 <https://gitlab.freedesktop.org/drm/intel/issues/3591>) -> WARN <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html> (i915#2681 <https://gitlab.freedesktop.org/drm/intel/issues/2681>)
> *
>
> igt@kms_content_protection@content_type_change:
>
> o shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg2-5/igt@kms_content_protection@content_type_change.html> (i915#7118 <https://gitlab.freedesktop.org/drm/intel/issues/7118>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg2-11/igt@kms_content_protection@content_type_change.html> (i915#7118 <https://gitlab.freedesktop.org/drm/intel/issues/7118> / i915#7162 <https://gitlab.freedesktop.org/drm/intel/issues/7162>)
> *
>
> igt@kms_content_protection@mei_interface:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg1-13/igt@kms_content_protection@mei_interface.html> (fdo#109300 <https://bugs.freedesktop.org/show_bug.cgi?id=109300>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-19/igt@kms_content_protection@mei_interface.html> (i915#7116 <https://gitlab.freedesktop.org/drm/intel/issues/7116>)
> *
>
> igt@kms_fbcon_fbt@psr-suspend:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html> (i915#3955 <https://gitlab.freedesktop.org/drm/intel/issues/3955>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html> (fdo#110189 <https://bugs.freedesktop.org/show_bug.cgi?id=110189> / i915#3955 <https://gitlab.freedesktop.org/drm/intel/issues/3955>)
> *
>
> igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (i915#4816 <https://gitlab.freedesktop.org/drm/intel/issues/4816>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> (i915#4070 <https://gitlab.freedesktop.org/drm/intel/issues/4070> / i915#4816 <https://gitlab.freedesktop.org/drm/intel/issues/4816>)
> *
>
> igt@kms_psr@primary_mmap_gtt:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg1-14/igt@kms_psr@primary_mmap_gtt.html> (i915#1072 <https://gitlab.freedesktop.org/drm/intel/issues/1072>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-13/igt@kms_psr@primary_mmap_gtt.html> (i915#1072 <https://gitlab.freedesktop.org/drm/intel/issues/1072> / i915#4078 <https://gitlab.freedesktop.org/drm/intel/issues/4078>)
> *
>
> igt@kms_psr@sprite_plane_onoff:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13653/shard-dg1-18/igt@kms_psr@sprite_plane_onoff.html> (i915#1072 <https://gitlab.freedesktop.org/drm/intel/issues/1072> / i915#4078 <https://gitlab.freedesktop.org/drm/intel/issues/4078>) -> SKIP <https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_123940v1/shard-dg1-14/igt@kms_psr@sprite_plane_onoff.html> (i915#1072 <https://gitlab.freedesktop.org/drm/intel/issues/1072>)
>
> {name}: This element is suppressed. This means it is ignored when computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
>
> Build changes
>
> * Linux: CI_DRM_13653 -> Patchwork_123940v1
>
> CI-20190529: 20190529
> CI_DRM_13653: 56d487b04d902a227f8bc5cc93b73a71f7c06a12 @
> git://anongit.freedesktop.org/gfx-ci/linux
> IGT_7493: 2517e42d612e0c1ca096acf8b5f6177f7ef4bce7 @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> Patchwork_123940v1: 56d487b04d902a227f8bc5cc93b73a71f7c06a12 @
> git://anongit.freedesktop.org/gfx-ci/linux
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
> git://anongit.freedesktop.org/piglit
>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2023-09-20 20:59 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-19 19:48 [Intel-gfx] [PATCH] i915: Limit the length of an sg list to the requested length Matthew Wilcox (Oracle)
2023-09-19 23:49 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for " Patchwork
2023-09-19 23:49 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2023-09-19 23:49 ` [Intel-gfx] ✗ Fi.CI.DOCS: " Patchwork
2023-09-20 0:07 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2023-09-20 6:08 ` [Intel-gfx] [PATCH] " Andrzej Hajda
2023-09-20 12:00 ` [Intel-gfx] ✗ Fi.CI.IGT: failure for " Patchwork
2023-09-20 20:59 ` Andrzej Hajda
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox