* [PATCH v2] lib/intel_pat: Handle platforms without compressed PAT index
@ 2026-03-16 6:58 Sanjay Yadav
2026-03-16 11:45 ` Matthew Auld
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Sanjay Yadav @ 2026-03-16 6:58 UTC (permalink / raw)
To: igt-dev; +Cc: matthew.auld
Previously intel_get_pat_idx_uc_comp() would silently return zero on
platforms where no compressed PAT index exists (e.g. CRI),
since uc_comp was zero-initialized by default. This could lead to
incorrect behavior when callers assume the returned index is valid.
Fix this by:
- Adding XE_PAT_IDX_INVALID sentinel to detect unsupported platforms
- Initializing uc_comp to XE_PAT_IDX_INVALID in xe_get_pat_sw_config()
before parsing debugfs; only platforms whose kernel exposes
IDX[XE_CACHE_NONE_COMPRESSION] in gt0/pat_sw_config will override it
with a valid index
- Adding igt_assert(HAS_FLATCCS()) and igt_assert_f() in
intel_get_pat_idx_uc_comp() to fail with a clear error instead of
returning an invalid index
Also update the bo-comp-disable-bind test to distinguish between "CCS
is disabled" and "CCS does not exist" using HAS_FLATCCS(). On platforms
without CCS, the compressed PAT bind check is skipped since there is no
valid compressed PAT index to test with.
v2:
- Rebase
- Update commit message accordingly
Suggested-by: Matthew Auld <matthew.auld@intel.com>
Signed-off-by: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
---
lib/intel_pat.c | 5 +++++
lib/intel_pat.h | 1 +
tests/intel/xe_pat.c | 30 ++++++++++++++++++++++--------
3 files changed, 28 insertions(+), 8 deletions(-)
diff --git a/lib/intel_pat.c b/lib/intel_pat.c
index 9feeeb39d..525d9ad24 100644
--- a/lib/intel_pat.c
+++ b/lib/intel_pat.c
@@ -37,6 +37,8 @@ int32_t xe_get_pat_sw_config(int drm_fd, struct intel_pat_cache *xe_pat_cache)
}
memset(xe_pat_cache, 0, sizeof(*xe_pat_cache));
+ xe_pat_cache->uc_comp = XE_PAT_IDX_INVALID;
+
while ((nread = getline(&line, &line_len, dbgfs_file)) != -1) {
uint32_t value = 0;
char *p = NULL;
@@ -159,8 +161,11 @@ uint8_t intel_get_pat_idx_uc_comp(int fd)
uint16_t dev_id = intel_get_drm_devid(fd);
igt_assert(intel_gen(dev_id) >= 20);
+ igt_assert(HAS_FLATCCS(dev_id));
intel_get_pat_idx(fd, &pat);
+ igt_assert_f(pat.uc_comp != XE_PAT_IDX_INVALID,
+ "No compressed PAT index available on this platform\n");
return pat.uc_comp;
}
diff --git a/lib/intel_pat.h b/lib/intel_pat.h
index e9ade2e2e..e5dd8a0af 100644
--- a/lib/intel_pat.h
+++ b/lib/intel_pat.h
@@ -10,6 +10,7 @@
#include <stdint.h>
#define DEFAULT_PAT_INDEX ((uint8_t)-1) /* igt-core can pick 1way or better */
+#define XE_PAT_IDX_INVALID ((uint8_t)-2) /* no such PAT index on this platform */
#define XE_PAT_MAX_ENTRIES 32
struct xe_pat_entry {
diff --git a/tests/intel/xe_pat.c b/tests/intel/xe_pat.c
index b92512164..e91b037a5 100644
--- a/tests/intel/xe_pat.c
+++ b/tests/intel/xe_pat.c
@@ -934,15 +934,18 @@ static bool has_no_compression_hint(int fd)
* Test category: functionality test
* Description: Validates that binding a BO created with
* the NO_COMPRESSION flag using a compressed PAT index fails
- * with -EINVAL on Xe2+ platforms.
+ * with -EINVAL on Xe2+ platforms. On platforms where CCS
+ * does not exist, the test verifies uncompressed access works.
*/
static void bo_comp_disable_bind(int fd)
{
size_t size = xe_get_default_alignment(fd);
- uint8_t comp_pat_index, uncomp_pat_index;
- bool supported;
+ uint16_t dev_id = intel_get_drm_devid(fd);
+ bool has_flatccs = HAS_FLATCCS(dev_id);
+ uint8_t uncomp_pat_index;
uint32_t vm, bo;
+ bool supported;
int ret;
supported = has_no_compression_hint(fd);
@@ -958,14 +961,25 @@ static void bo_comp_disable_bind(int fd)
igt_assert_eq(ret, 0);
vm = xe_vm_create(fd, 0, 0);
- comp_pat_index = intel_get_pat_idx_uc_comp(fd);
uncomp_pat_index = intel_get_pat_idx_uc(fd);
- igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x100000,
- size, 0, 0, NULL, 0,
- 0, comp_pat_index, 0),
- -EINVAL);
+ /*
+ * On platforms with CCS, binding a NO_COMPRESSION BO with a
+ * compressed PAT index must fail. On platforms without CCS,
+ * there is no valid compressed PAT index, so skip this check.
+ */
+ if (has_flatccs) {
+ uint8_t comp_pat_index = intel_get_pat_idx_uc_comp(fd);
+
+ igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x100000,
+ size, 0, 0, NULL, 0,
+ 0, comp_pat_index, 0),
+ -EINVAL);
+ } else {
+ igt_debug("Platform has no CCS, skipping compressed PAT bind check\n");
+ }
+ /* Uncompressed bind must always succeed */
igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x100000,
size, 0, 0, NULL, 0,
0, uncomp_pat_index, 0),
--
2.52.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v2] lib/intel_pat: Handle platforms without compressed PAT index
2026-03-16 6:58 [PATCH v2] lib/intel_pat: Handle platforms without compressed PAT index Sanjay Yadav
@ 2026-03-16 11:45 ` Matthew Auld
2026-03-16 22:18 ` ✓ Xe.CI.BAT: success for lib/intel_pat: Handle platforms without compressed PAT index (rev2) Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Matthew Auld @ 2026-03-16 11:45 UTC (permalink / raw)
To: Sanjay Yadav, igt-dev
On 16/03/2026 06:58, Sanjay Yadav wrote:
> Previously intel_get_pat_idx_uc_comp() would silently return zero on
> platforms where no compressed PAT index exists (e.g. CRI),
> since uc_comp was zero-initialized by default. This could lead to
> incorrect behavior when callers assume the returned index is valid.
>
> Fix this by:
> - Adding XE_PAT_IDX_INVALID sentinel to detect unsupported platforms
> - Initializing uc_comp to XE_PAT_IDX_INVALID in xe_get_pat_sw_config()
> before parsing debugfs; only platforms whose kernel exposes
> IDX[XE_CACHE_NONE_COMPRESSION] in gt0/pat_sw_config will override it
> with a valid index
> - Adding igt_assert(HAS_FLATCCS()) and igt_assert_f() in
> intel_get_pat_idx_uc_comp() to fail with a clear error instead of
> returning an invalid index
>
> Also update the bo-comp-disable-bind test to distinguish between "CCS
> is disabled" and "CCS does not exist" using HAS_FLATCCS(). On platforms
> without CCS, the compressed PAT bind check is skipped since there is no
> valid compressed PAT index to test with.
>
> v2:
> - Rebase
> - Update commit message accordingly
>
> Suggested-by: Matthew Auld <matthew.auld@intel.com>
> Signed-off-by: Sanjay Yadav <sanjay.kumar.yadav@intel.com>
Assuming CI is still happy,
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
> ---
> lib/intel_pat.c | 5 +++++
> lib/intel_pat.h | 1 +
> tests/intel/xe_pat.c | 30 ++++++++++++++++++++++--------
> 3 files changed, 28 insertions(+), 8 deletions(-)
>
> diff --git a/lib/intel_pat.c b/lib/intel_pat.c
> index 9feeeb39d..525d9ad24 100644
> --- a/lib/intel_pat.c
> +++ b/lib/intel_pat.c
> @@ -37,6 +37,8 @@ int32_t xe_get_pat_sw_config(int drm_fd, struct intel_pat_cache *xe_pat_cache)
> }
>
> memset(xe_pat_cache, 0, sizeof(*xe_pat_cache));
> + xe_pat_cache->uc_comp = XE_PAT_IDX_INVALID;
> +
> while ((nread = getline(&line, &line_len, dbgfs_file)) != -1) {
> uint32_t value = 0;
> char *p = NULL;
> @@ -159,8 +161,11 @@ uint8_t intel_get_pat_idx_uc_comp(int fd)
> uint16_t dev_id = intel_get_drm_devid(fd);
>
> igt_assert(intel_gen(dev_id) >= 20);
> + igt_assert(HAS_FLATCCS(dev_id));
>
> intel_get_pat_idx(fd, &pat);
> + igt_assert_f(pat.uc_comp != XE_PAT_IDX_INVALID,
> + "No compressed PAT index available on this platform\n");
> return pat.uc_comp;
> }
>
> diff --git a/lib/intel_pat.h b/lib/intel_pat.h
> index e9ade2e2e..e5dd8a0af 100644
> --- a/lib/intel_pat.h
> +++ b/lib/intel_pat.h
> @@ -10,6 +10,7 @@
> #include <stdint.h>
>
> #define DEFAULT_PAT_INDEX ((uint8_t)-1) /* igt-core can pick 1way or better */
> +#define XE_PAT_IDX_INVALID ((uint8_t)-2) /* no such PAT index on this platform */
> #define XE_PAT_MAX_ENTRIES 32
>
> struct xe_pat_entry {
> diff --git a/tests/intel/xe_pat.c b/tests/intel/xe_pat.c
> index b92512164..e91b037a5 100644
> --- a/tests/intel/xe_pat.c
> +++ b/tests/intel/xe_pat.c
> @@ -934,15 +934,18 @@ static bool has_no_compression_hint(int fd)
> * Test category: functionality test
> * Description: Validates that binding a BO created with
> * the NO_COMPRESSION flag using a compressed PAT index fails
> - * with -EINVAL on Xe2+ platforms.
> + * with -EINVAL on Xe2+ platforms. On platforms where CCS
> + * does not exist, the test verifies uncompressed access works.
> */
>
> static void bo_comp_disable_bind(int fd)
> {
> size_t size = xe_get_default_alignment(fd);
> - uint8_t comp_pat_index, uncomp_pat_index;
> - bool supported;
> + uint16_t dev_id = intel_get_drm_devid(fd);
> + bool has_flatccs = HAS_FLATCCS(dev_id);
> + uint8_t uncomp_pat_index;
> uint32_t vm, bo;
> + bool supported;
> int ret;
>
> supported = has_no_compression_hint(fd);
> @@ -958,14 +961,25 @@ static void bo_comp_disable_bind(int fd)
> igt_assert_eq(ret, 0);
> vm = xe_vm_create(fd, 0, 0);
>
> - comp_pat_index = intel_get_pat_idx_uc_comp(fd);
> uncomp_pat_index = intel_get_pat_idx_uc(fd);
>
> - igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x100000,
> - size, 0, 0, NULL, 0,
> - 0, comp_pat_index, 0),
> - -EINVAL);
> + /*
> + * On platforms with CCS, binding a NO_COMPRESSION BO with a
> + * compressed PAT index must fail. On platforms without CCS,
> + * there is no valid compressed PAT index, so skip this check.
> + */
> + if (has_flatccs) {
> + uint8_t comp_pat_index = intel_get_pat_idx_uc_comp(fd);
> +
> + igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x100000,
> + size, 0, 0, NULL, 0,
> + 0, comp_pat_index, 0),
> + -EINVAL);
> + } else {
> + igt_debug("Platform has no CCS, skipping compressed PAT bind check\n");
> + }
>
> + /* Uncompressed bind must always succeed */
> igt_assert_eq(__xe_vm_bind(fd, vm, 0, bo, 0, 0x100000,
> size, 0, 0, NULL, 0,
> 0, uncomp_pat_index, 0),
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Xe.CI.BAT: success for lib/intel_pat: Handle platforms without compressed PAT index (rev2)
2026-03-16 6:58 [PATCH v2] lib/intel_pat: Handle platforms without compressed PAT index Sanjay Yadav
2026-03-16 11:45 ` Matthew Auld
@ 2026-03-16 22:18 ` Patchwork
2026-03-17 9:59 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-03-16 22:18 UTC (permalink / raw)
To: Sanjay Yadav; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 797 bytes --]
== Series Details ==
Series: lib/intel_pat: Handle platforms without compressed PAT index (rev2)
URL : https://patchwork.freedesktop.org/series/161756/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8806_BAT -> XEIGTPW_14767_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8806 -> IGTPW_14767
IGTPW_14767: 14767
IGT_8806: 8806
xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820: a25d8c583e1e52bde77d371081a7c3fcd0a2e820
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/index.html
[-- Attachment #2: Type: text/html, Size: 1342 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for lib/intel_pat: Handle platforms without compressed PAT index (rev2)
2026-03-16 6:58 [PATCH v2] lib/intel_pat: Handle platforms without compressed PAT index Sanjay Yadav
2026-03-16 11:45 ` Matthew Auld
2026-03-16 22:18 ` ✓ Xe.CI.BAT: success for lib/intel_pat: Handle platforms without compressed PAT index (rev2) Patchwork
@ 2026-03-17 9:59 ` Patchwork
2026-03-17 21:26 ` ✓ i915.CI.Full: " Patchwork
2026-03-17 22:01 ` ✗ Xe.CI.FULL: failure " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-03-17 9:59 UTC (permalink / raw)
To: Sanjay Yadav; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3083 bytes --]
== Series Details ==
Series: lib/intel_pat: Handle platforms without compressed PAT index (rev2)
URL : https://patchwork.freedesktop.org/series/161756/
State : success
== Summary ==
CI Bug Log - changes from IGT_8806 -> IGTPW_14767
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/index.html
Participating hosts (42 -> 40)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14767 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/bat-dg2-9/igt@i915_selftest@live@workarounds.html
- bat-dg2-14: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/bat-dg2-14/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-8: [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/bat-mtlp-8/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/bat-mtlp-8/igt@i915_selftest@live.html
- bat-dg2-8: [DMESG-FAIL][7] ([i915#12061]) -> [PASS][8] +1 other test pass
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/bat-dg2-8/igt@i915_selftest@live.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/bat-dg2-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-9: [DMESG-FAIL][9] ([i915#12061]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [DMESG-FAIL][11] ([i915#12061]) -> [PASS][12] +1 other test pass
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/bat-arls-6/igt@i915_selftest@live@workarounds.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/bat-arls-6/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8806 -> IGTPW_14767
CI-20190529: 20190529
CI_DRM_18160: a25d8c583e1e52bde77d371081a7c3fcd0a2e820 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14767: 14767
IGT_8806: 8806
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/index.html
[-- Attachment #2: Type: text/html, Size: 4127 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.Full: success for lib/intel_pat: Handle platforms without compressed PAT index (rev2)
2026-03-16 6:58 [PATCH v2] lib/intel_pat: Handle platforms without compressed PAT index Sanjay Yadav
` (2 preceding siblings ...)
2026-03-17 9:59 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-03-17 21:26 ` Patchwork
2026-03-17 22:01 ` ✗ Xe.CI.FULL: failure " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-03-17 21:26 UTC (permalink / raw)
To: Sanjay Yadav; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 135467 bytes --]
== Series Details ==
Series: lib/intel_pat: Handle platforms without compressed PAT index (rev2)
URL : https://patchwork.freedesktop.org/series/161756/
State : success
== Summary ==
CI Bug Log - changes from IGT_8806_full -> IGTPW_14767_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_14767_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][1] ([i915#8411]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-7/igt@api_intel_bb@blit-reloc-keep-cache.html
- shard-rkl: NOTRUN -> [SKIP][2] ([i915#8411]) +2 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-3/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-7/igt@api_intel_bb@object-reloc-purge-cache.html
- shard-dg1: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-16/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@gem_ccs@block-copy-compressed:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#3555] / [i915#9323])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-8/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#9323])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@gem_ccs@block-multicopy-compressed.html
- shard-tglu: NOTRUN -> [SKIP][7] ([i915#9323])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-4/igt@gem_ccs@block-multicopy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#9323])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-4/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu-1: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][10] ([i915#12392] / [i915#13356])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-6/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#7697])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-8/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][12] ([i915#6335])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-2/igt@gem_create@create-ext-cpu-access-big.html
- shard-dg2: NOTRUN -> [FAIL][13] ([i915#15454])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_isolation@preservation-s3@bcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][14] ([i915#13356]) +1 other test incomplete
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk9/igt@gem_ctx_isolation@preservation-s3@bcs0.html
* igt@gem_ctx_persistence@heartbeat-hostile:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#8555])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-4/igt@gem_ctx_persistence@heartbeat-hostile.html
* igt@gem_ctx_persistence@legacy-engines-mixed-process:
- shard-snb: NOTRUN -> [SKIP][16] ([i915#1099]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-snb5/igt@gem_ctx_persistence@legacy-engines-mixed-process.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#280])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-5/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#280])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-1/igt@gem_ctx_sseu@mmap-args.html
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#14544] / [i915#280])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#280])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@gem_ctx_sseu@mmap-args.html
- shard-tglu: NOTRUN -> [SKIP][21] ([i915#280]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-8/igt@gem_ctx_sseu@mmap-args.html
- shard-mtlp: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-8/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#4812])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-4/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-tglu: NOTRUN -> [SKIP][24] ([i915#4525]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-8/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#4525]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-5/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_big@single:
- shard-tglu: [PASS][26] -> [DMESG-FAIL][27] ([i915#15478])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-tglu-8/igt@gem_exec_big@single.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-4/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible:
- shard-glk11: NOTRUN -> [SKIP][28] ([i915#6334]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk11/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-tglu-1: NOTRUN -> [SKIP][29] ([i915#6334]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-8/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#3281]) +8 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#3281]) +8 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-4/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#14544] / [i915#3281])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@gem_exec_reloc@basic-wc-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#3281]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-17/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_reloc@basic-write-wc:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#3281])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-2/igt@gem_exec_reloc@basic-write-wc.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#4812]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-17/igt@gem_exec_schedule@preempt-queue.html
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4537] / [i915#4812])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#4537] / [i915#4812]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg1: NOTRUN -> [SKIP][39] ([i915#4860])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-19/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4860])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-7/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4860])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-8/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#2190])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-3/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-random:
- shard-tglu-1: NOTRUN -> [SKIP][43] ([i915#4613]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#4613]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-3/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@random:
- shard-tglu: NOTRUN -> [SKIP][45] ([i915#4613])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-7/igt@gem_lmem_swapping@random.html
* igt@gem_lmem_swapping@verify:
- shard-glk: NOTRUN -> [SKIP][46] ([i915#4613]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk6/igt@gem_lmem_swapping@verify.html
* igt@gem_media_vme:
- shard-tglu: NOTRUN -> [SKIP][47] ([i915#284])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-9/igt@gem_media_vme.html
* igt@gem_mmap@bad-offset:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#4083]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-14/igt@gem_mmap@bad-offset.html
- shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4083]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-5/igt@gem_mmap@bad-offset.html
* igt@gem_mmap_gtt@coherency:
- shard-glk11: NOTRUN -> [SKIP][50] +118 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk11/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_gtt@cpuset-big-copy-odd:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#4077]) +8 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-4/igt@gem_mmap_gtt@cpuset-big-copy-odd.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4083]) +3 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-5/igt@gem_mmap_wc@copy.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#3282]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#3282]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-19/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#3282]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-7/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4270]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-3/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4270]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-14/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_readwrite@read-write:
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#3282]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-8/igt@gem_readwrite@read-write.html
* igt@gem_render_copy@y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#8428]) +2 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-3/igt@gem_render_copy@y-tiled.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-glk: NOTRUN -> [SKIP][60] +365 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk1/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@y-tiled-to-vebox-linear:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#5190] / [i915#8428]) +3 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-7/igt@gem_render_copy@y-tiled-to-vebox-linear.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4079])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-3/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#4885])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-6/igt@gem_softpin@evict-snoop.html
* igt@gem_tiling_max_stride:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4077]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-18/igt@gem_tiling_max_stride.html
- shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4077]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-8/igt@gem_tiling_max_stride.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#3297])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-1/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#14544] / [i915#3297])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-tglu: NOTRUN -> [SKIP][68] ([i915#3297]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-4/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: NOTRUN -> [SKIP][69] ([i915#3297] / [i915#3323])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-7/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#3297])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-5/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-tglu-1: NOTRUN -> [SKIP][71] ([i915#3297])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_workarounds@suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][72] ([i915#13356] / [i915#14586])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk3/igt@gem_workarounds@suspend-resume.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][73] ([i915#2527] / [i915#2856]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-5/igt@gen9_exec_parse@basic-rejected.html
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#2856]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-5/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-large:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#2527]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-14/igt@gen9_exec_parse@bb-large.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-tglu-1: NOTRUN -> [SKIP][76] ([i915#2527] / [i915#2856]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#2856]) +3 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-7/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#2527]) +7 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-4/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_drm_fdinfo@isolation@rcs0:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#14073]) +5 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-19/igt@i915_drm_fdinfo@isolation@rcs0.html
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#14073]) +6 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-8/igt@i915_drm_fdinfo@isolation@rcs0.html
* igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#14073]) +15 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-7/igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@i915_module_load@fault-injection:
- shard-dg2: NOTRUN -> [ABORT][82] ([i915#15342] / [i915#15481])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-5/igt@i915_module_load@fault-injection.html
- shard-dg1: NOTRUN -> [ABORT][83] ([i915#11815]) +1 other test abort
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-12/igt@i915_module_load@fault-injection.html
- shard-mtlp: NOTRUN -> [ABORT][84] ([i915#15342] / [i915#15481])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-3/igt@i915_module_load@fault-injection.html
* igt@i915_module_load@fault-injection@__uc_init:
- shard-dg2: NOTRUN -> [ABORT][85] ([i915#15481])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-5/igt@i915_module_load@fault-injection@__uc_init.html
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#15479]) +4 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-3/igt@i915_module_load@fault-injection@__uc_init.html
- shard-mtlp: NOTRUN -> [ABORT][87] ([i915#15481])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-3/igt@i915_module_load@fault-injection@__uc_init.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-rkl: NOTRUN -> [ABORT][88] ([i915#15342]) +1 other test abort
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-3/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-snb: NOTRUN -> [ABORT][89] ([i915#15342]) +1 other test abort
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-snb6/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-tglu: NOTRUN -> [ABORT][90] ([i915#15342]) +1 other test abort
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-6/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-mtlp: NOTRUN -> [DMESG-WARN][91] ([i915#15342])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-3/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-glk: NOTRUN -> [ABORT][92] ([i915#15342]) +1 other test abort
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk9/igt@i915_module_load@fault-injection@intel_connector_register.html
- shard-dg2: NOTRUN -> [DMESG-WARN][93] ([i915#15342])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-5/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@fault-injection@intel_guc_ct_init:
- shard-snb: NOTRUN -> [SKIP][94] +65 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-snb6/igt@i915_module_load@fault-injection@intel_guc_ct_init.html
* igt@i915_module_load@fault-injection@uc_fw_rsa_data_create:
- shard-tglu: NOTRUN -> [SKIP][95] ([i915#15479]) +4 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-6/igt@i915_module_load@fault-injection@uc_fw_rsa_data_create.html
* igt@i915_module_load@resize-bar:
- shard-dg2: NOTRUN -> [DMESG-WARN][96] ([i915#14545])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-1/igt@i915_module_load@resize-bar.html
- shard-tglu: NOTRUN -> [SKIP][97] ([i915#6412])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-4/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][98] ([i915#8399]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-5/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-tglu: NOTRUN -> [SKIP][99] ([i915#8399])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-10/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_api@freq-suspend@gt0:
- shard-dg2: [PASS][100] -> [INCOMPLETE][101] ([i915#13356] / [i915#13820]) +1 other test incomplete
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk11: NOTRUN -> [INCOMPLETE][102] ([i915#13356] / [i915#15172])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk11/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#11681])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-8/igt@i915_pm_rps@thresholds-idle-park.html
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#11681])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-12/igt@i915_pm_rps@thresholds-idle-park.html
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#11681])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-2/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#4387])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-5/igt@i915_pm_sseu@full-enable.html
- shard-rkl: NOTRUN -> [SKIP][107] ([i915#4387])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-7/igt@i915_pm_sseu@full-enable.html
* igt@i915_power@sanity:
- shard-mtlp: [PASS][108] -> [SKIP][109] ([i915#7984])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-mtlp-5/igt@i915_power@sanity.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-8/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#6245])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@i915_query@hwconfig_table.html
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#6245])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-2/igt@i915_query@hwconfig_table.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk: NOTRUN -> [INCOMPLETE][112] ([i915#4817]) +1 other test incomplete
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk4/igt@i915_suspend@fence-restore-tiled2untiled.html
- shard-rkl: [PASS][113] -> [ABORT][114] ([i915#15140])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-7/igt@i915_suspend@fence-restore-tiled2untiled.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-1/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@i915_suspend@sysfs-reader:
- shard-rkl: NOTRUN -> [ABORT][115] ([i915#15140])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-1/igt@i915_suspend@sysfs-reader.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-rkl: [PASS][116] -> [INCOMPLETE][117] ([i915#12761])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-2/igt@kms_async_flips@async-flip-suspend-resume.html
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][118] ([i915#12761])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-3/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#9531])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-tglu: NOTRUN -> [SKIP][120] ([i915#9531])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-tglu: [PASS][121] -> [FAIL][122] ([i915#15662]) +1 other test fail
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-tglu-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-dg2: [PASS][123] -> [FAIL][124] ([i915#5956])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg2-5/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-4/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
- shard-dg2: NOTRUN -> [FAIL][125] ([i915#5956])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-4/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#5286]) +5 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-8/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#5286]) +4 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5286]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-17/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#5286]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#3828])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#3638]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
- shard-mtlp: NOTRUN -> [SKIP][132] +1 other test skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-2/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#4538] / [i915#5190]) +5 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-3/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#14544] / [i915#3638])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#3638]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-3/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#5190]) +2 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6187])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#4538]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][139] +21 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-4/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][141] ([i915#12313]) +1 other test skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-3/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#6095]) +54 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6095]) +19 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#10307] / [i915#6095]) +110 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-7/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#6095]) +64 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#6095]) +39 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#14098] / [i915#6095]) +32 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][148] ([i915#12805])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#12313]) +1 other test skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#12313]) +2 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][152] ([i915#6095]) +47 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-2/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][153] ([i915#4423] / [i915#6095])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#14544] / [i915#6095]) +5 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#6095]) +153 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +6 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#14544] / [i915#7828])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +6 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-4/igt@kms_chamelium_frames@hdmi-crc-fast.html
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +4 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-19/igt@kms_chamelium_frames@hdmi-crc-fast.html
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +3 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-6/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +8 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-3/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][162] ([i915#11151] / [i915#7828]) +6 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_color@deep-color:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#12655] / [i915#3555])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-7/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@content-type-change:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#6944] / [i915#9424])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-5/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#15330] / [i915#3116]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-2/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#15330])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#15330] / [i915#3299])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#6944]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-1/igt@kms_content_protection@legacy-hdcp14.html
- shard-rkl: NOTRUN -> [SKIP][170] ([i915#14544] / [i915#6944])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_content_protection@legacy-hdcp14.html
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#6944])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_content_protection@legacy-hdcp14.html
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#6944]) +2 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-8/igt@kms_content_protection@legacy-hdcp14.html
- shard-mtlp: NOTRUN -> [SKIP][173] ([i915#6944])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-8/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#6944] / [i915#9424])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-16/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#3555]) +6 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#13049])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-rkl: [PASS][177] -> [FAIL][178] ([i915#13566])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42.html
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][179] ([i915#13566]) +2 other tests fail
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
- shard-tglu: [PASS][180] -> [FAIL][181] ([i915#13566]) +3 other tests fail
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-tglu-4/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-6/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#13049]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-5/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-rkl: NOTRUN -> [SKIP][183] ([i915#13049])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#3555]) +2 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#13049]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#13049])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#3555]) +2 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-max-size.html
- shard-dg1: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#4423])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_cursor_crc@cursor-sliding-max-size.html
- shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#8814]) +1 other test skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#4103]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#13046] / [i915#5354]) +2 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-rkl: NOTRUN -> [SKIP][192] ([i915#14544]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#4103] / [i915#4213])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#4103])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#9833])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#9723])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#9723])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-18/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#9723])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#13691])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#3555]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_dp_aux_dev:
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#1257])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-4/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#13748])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-2/igt@kms_dp_link_training@uhbr-sst.html
- shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#13748])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-tglu-1: NOTRUN -> [SKIP][204] ([i915#13707])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-glk10: NOTRUN -> [SKIP][205] +4 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk10/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#3840])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#3555] / [i915#3840])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#3555] / [i915#3840])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-4/igt@kms_dsc@dsc-with-formats.html
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#3840])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-2/igt@kms_dsc@dsc-with-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu: NOTRUN -> [SKIP][210] ([i915#3469])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-10/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#4854])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-3/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#1839])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-8/igt@kms_feature_discovery@display-2x.html
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#1839])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-12/igt@kms_feature_discovery@display-2x.html
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#1839])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-8/igt@kms_feature_discovery@display-2x.html
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#1839])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-7/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#1839])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-5/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#9337])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-10/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#658])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-6/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-busy-flip:
- shard-dg1: NOTRUN -> [SKIP][219] ([i915#9934])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_flip@2x-busy-flip.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][220] ([i915#3637] / [i915#9934]) +9 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#9934]) +4 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-7/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-snb: [PASS][222] -> [TIMEOUT][223] ([i915#14033] / [i915#14350])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-snb5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][224] -> [TIMEOUT][225] ([i915#14033])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-snb7/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-snb5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: NOTRUN -> [SKIP][226] ([i915#9934]) +10 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-3/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-tglu-1: NOTRUN -> [SKIP][227] ([i915#3637] / [i915#9934]) +1 other test skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-suspend:
- shard-dg1: [PASS][228] -> [DMESG-WARN][229] ([i915#4423]) +16 other tests dmesg-warn
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg1-12/igt@kms_flip@flip-vs-suspend.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2:
- shard-rkl: NOTRUN -> [INCOMPLETE][230] ([i915#6113]) +1 other test incomplete
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-7/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#15643]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#15643]) +3 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][233] ([i915#15643]) +4 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#15643])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#8810] / [i915#8813]) +2 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#15643])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#8810] / [i915#8813])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][238] ([i915#15643] / [i915#5190]) +3 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#8708]) +11 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][240] +12 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#1825]) +5 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#4423] / [i915#8708])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#15104]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#15102]) +3 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#15102]) +4 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#15104])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
- shard-dg2: NOTRUN -> [SKIP][247] ([i915#15104]) +1 other test skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#8708]) +5 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-rkl: NOTRUN -> [SKIP][249] ([i915#14544] / [i915#1825]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][250] +33 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#1825]) +36 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][252] ([i915#14544] / [i915#15102] / [i915#3023])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#15102] / [i915#3023]) +18 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#15102] / [i915#3458]) +5 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#9766])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-8/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][256] ([i915#15102]) +12 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][257] ([i915#15102]) +19 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#15102] / [i915#3458]) +8 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#5354]) +18 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][260] +57 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#8708]) +2 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#3555] / [i915#8228])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-4/igt@kms_hdr@static-toggle-suspend.html
- shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#3555] / [i915#8228])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#13688])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-10/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu: NOTRUN -> [SKIP][265] ([i915#15815])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][266] +8 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-3/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#14544] / [i915#15709])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier:
- shard-mtlp: NOTRUN -> [SKIP][268] ([i915#15709])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#15709]) +4 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][270] ([i915#15709]) +3 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-7/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#15709]) +3 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
- shard-dg1: NOTRUN -> [SKIP][272] ([i915#15709]) +2 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-16/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5:
- shard-rkl: NOTRUN -> [SKIP][273] ([i915#15608]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-7/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#15709]) +4 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-8/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#15608]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][276] ([i915#13026]) +1 other test incomplete
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk5/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][277] ([i915#10647] / [i915#12169])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk5/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][278] ([i915#10647]) +1 other test fail
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk5/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#13958]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-tglu: NOTRUN -> [SKIP][280] ([i915#13958])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-3/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-4:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#14259])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-5/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#15329]) +3 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-tglu: NOTRUN -> [SKIP][283] ([i915#15329]) +4 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#15329] / [i915#3555] / [i915#6953])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][285] ([i915#15329]) +3 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-c.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#5354])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-7/igt@kms_pm_backlight@bad-brightness.html
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#9812])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-7/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade:
- shard-tglu-1: NOTRUN -> [SKIP][288] ([i915#9812])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#9685])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-7/igt@kms_pm_dc@dc6-psr.html
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#9685])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-2/igt@kms_pm_dc@dc6-psr.html
- shard-tglu-1: NOTRUN -> [SKIP][291] ([i915#9685])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_pm_dc@dc6-psr.html
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#9685]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-17/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#14544] / [i915#9340])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu: NOTRUN -> [SKIP][294] ([i915#8430])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-10/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][295] ([i915#14544] / [i915#15073])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [PASS][296] -> [SKIP][297] ([i915#15073])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-dg1: [PASS][298] -> [SKIP][299] ([i915#15073]) +2 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg1-18/igt@kms_pm_rpm@modeset-non-lpsp.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#15073]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-5/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: [PASS][301] -> [SKIP][302] ([i915#15073]) +2 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-rkl: [PASS][303] -> [INCOMPLETE][304] ([i915#14419])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-5/igt@kms_pm_rpm@system-suspend-idle.html
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk10: NOTRUN -> [INCOMPLETE][305] ([i915#10553])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk10/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2: NOTRUN -> [SKIP][306] ([i915#6524] / [i915#6805])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-3/igt@kms_prime@basic-crc-hybrid.html
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#6524])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-3/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@d3hot:
- shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#6524])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][309] ([i915#11520]) +3 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-14/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][310] ([i915#11520]) +10 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][311] ([i915#11520]) +4 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][312] ([i915#11520]) +1 other test skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-snb4/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
- shard-mtlp: NOTRUN -> [SKIP][313] ([i915#12316]) +1 other test skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-5/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-glk11: NOTRUN -> [SKIP][314] ([i915#11520]) +3 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk11/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#11520]) +3 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][316] ([i915#11520]) +8 other tests skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-3/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][317] ([i915#11520]) +6 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-6/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][318] ([i915#9683])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-3/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][319] ([i915#1072] / [i915#9732]) +7 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-16/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@fbc-pr-suspend:
- shard-rkl: NOTRUN -> [SKIP][320] ([i915#1072] / [i915#9732]) +17 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-7/igt@kms_psr@fbc-pr-suspend.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-mtlp: NOTRUN -> [SKIP][321] ([i915#9688]) +3 other tests skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-3/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_psr@pr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][322] ([i915#1072] / [i915#9732]) +14 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-4/igt@kms_psr@pr-cursor-mmap-cpu.html
* igt@kms_psr@pr-dpms:
- shard-tglu: NOTRUN -> [SKIP][323] ([i915#9732]) +16 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-3/igt@kms_psr@pr-dpms.html
* igt@kms_psr@psr-cursor-render:
- shard-rkl: NOTRUN -> [SKIP][324] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr-sprite-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#9732]) +12 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2: NOTRUN -> [SKIP][326] ([i915#12755])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-3/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][327] ([i915#5289])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][328] ([i915#12755] / [i915#5190])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][329] ([i915#5289])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: NOTRUN -> [SKIP][330] ([i915#5289]) +1 other test skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-rkl: NOTRUN -> [SKIP][331] ([i915#3555]) +1 other test skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-5/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#8623])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
- shard-glk11: NOTRUN -> [FAIL][333] ([i915#10959])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk11/igt@kms_tiled_display@basic-test-pattern.html
- shard-rkl: NOTRUN -> [SKIP][334] ([i915#8623])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-rkl: [PASS][335] -> [INCOMPLETE][336] ([i915#12276])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-5/igt@kms_vblank@ts-continuation-dpms-suspend.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [INCOMPLETE][337] ([i915#12276])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][338] ([i915#12276]) +1 other test incomplete
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk10/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@flip-dpms:
- shard-rkl: NOTRUN -> [SKIP][339] ([i915#14544] / [i915#15243] / [i915#3555])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-rkl: NOTRUN -> [SKIP][340] ([i915#11920])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-8/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-dg2: NOTRUN -> [SKIP][341] ([i915#3555] / [i915#9906])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-7/igt@kms_vrr@negative-basic.html
- shard-tglu: NOTRUN -> [SKIP][342] ([i915#3555] / [i915#9906])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-9/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg2: NOTRUN -> [SKIP][343] ([i915#9906])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-1/igt@kms_vrr@seamless-rr-switch-drrs.html
- shard-tglu: NOTRUN -> [SKIP][344] ([i915#9906])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-4/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-tglu-1: NOTRUN -> [SKIP][345] ([i915#9906])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][346] ([i915#2436])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-3/igt@perf@gen8-unprivileged-single-ctx-counters.html
- shard-rkl: NOTRUN -> [SKIP][347] ([i915#2436])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf_pmu@module-unload:
- shard-glk: NOTRUN -> [ABORT][348] ([i915#15778])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk2/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][349] ([i915#8516])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-5/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@perf_pmu@render-node-busy-idle:
- shard-mtlp: [PASS][350] -> [FAIL][351] ([i915#4349]) +1 other test fail
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-mtlp-7/igt@perf_pmu@render-node-busy-idle.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-7/igt@perf_pmu@render-node-busy-idle.html
- shard-dg2: [PASS][352] -> [FAIL][353] ([i915#4349]) +2 other tests fail
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg2-5/igt@perf_pmu@render-node-busy-idle.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-8/igt@perf_pmu@render-node-busy-idle.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][354] ([i915#3708])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-5/igt@prime_vgem@fence-read-hang.html
* igt@prime_vgem@fence-write-hang:
- shard-dg1: NOTRUN -> [SKIP][355] ([i915#3708])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-12/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-7:
- shard-tglu-1: NOTRUN -> [FAIL][356] ([i915#12910]) +9 other tests fail
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-7.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][357] ([i915#12392] / [i915#13356]) -> [PASS][358]
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg2-3/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-6/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-tglu: [ABORT][359] ([i915#15652]) -> [PASS][360] +1 other test pass
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-tglu-7/igt@gem_ctx_isolation@preservation-s3@rcs0.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-3/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: [INCOMPLETE][361] ([i915#13809]) -> [PASS][362]
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-3/igt@gem_softpin@noreloc-s3.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-7/igt@gem_softpin@noreloc-s3.html
* igt@i915_module_load@reload-no-display:
- shard-tglu: [DMESG-WARN][363] ([i915#13029] / [i915#14545]) -> [PASS][364]
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-tglu-4/igt@i915_module_load@reload-no-display.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-3/igt@i915_module_load@reload-no-display.html
* igt@kms_3d@basic:
- shard-mtlp: [SKIP][365] ([i915#15726]) -> [PASS][366]
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-mtlp-1/igt@kms_3d@basic.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-7/igt@kms_3d@basic.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][367] ([i915#15733] / [i915#5138]) -> [PASS][368]
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [FAIL][369] ([i915#13566]) -> [PASS][370] +3 other tests pass
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-rkl: [FAIL][371] ([i915#13566]) -> [PASS][372]
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-64x21.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-rkl: [INCOMPLETE][373] ([i915#9878]) -> [PASS][374]
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@kms_fbcon_fbt@fbc-suspend.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-5/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt:
- shard-dg2: [FAIL][375] ([i915#15389] / [i915#6880]) -> [PASS][376]
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglu: [FAIL][377] ([i915#14867]) -> [PASS][378]
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-tglu-2/igt@kms_hdmi_inject@inject-audio.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-9/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-rkl: [INCOMPLETE][379] ([i915#14412]) -> [PASS][380] +1 other test pass
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][381] ([i915#15073]) -> [PASS][382] +1 other test pass
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: [INCOMPLETE][383] ([i915#13356]) -> [PASS][384]
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-glk6/igt@perf_pmu@rc6-suspend.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk3/igt@perf_pmu@rc6-suspend.html
#### Warnings ####
* igt@gem_ccs@suspend-resume:
- shard-rkl: [SKIP][385] ([i915#14544] / [i915#9323]) -> [SKIP][386] ([i915#9323])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@gem_ccs@suspend-resume.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-7/igt@gem_ccs@suspend-resume.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: [SKIP][387] ([i915#4525]) -> [SKIP][388] ([i915#14544] / [i915#4525])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-8/igt@gem_exec_balancer@parallel-contexts.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: [SKIP][389] ([i915#6344]) -> [SKIP][390] ([i915#14544] / [i915#6344])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-2/igt@gem_exec_capture@capture-recoverable.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: [SKIP][391] ([i915#3281]) -> [SKIP][392] ([i915#14544] / [i915#3281]) +1 other test skip
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-wc-read:
- shard-rkl: [SKIP][393] ([i915#14544] / [i915#3281]) -> [SKIP][394] ([i915#3281]) +2 other tests skip
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@gem_exec_reloc@basic-wc-read.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-5/igt@gem_exec_reloc@basic-wc-read.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: [SKIP][395] ([i915#14544] / [i915#4613]) -> [SKIP][396] ([i915#4613])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: [SKIP][397] ([i915#4613]) -> [SKIP][398] ([i915#14544] / [i915#4613]) +1 other test skip
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-2/igt@gem_lmem_swapping@parallel-multi.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_partial_pwrite_pread@writes-after-reads-display:
- shard-rkl: [SKIP][399] ([i915#14544] / [i915#3282]) -> [SKIP][400] ([i915#3282]) +1 other test skip
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-8/igt@gem_partial_pwrite_pread@writes-after-reads-display.html
* igt@gem_pread@display:
- shard-rkl: [SKIP][401] ([i915#3282]) -> [SKIP][402] ([i915#14544] / [i915#3282]) +1 other test skip
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-7/igt@gem_pread@display.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@gem_pread@display.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-rkl: [SKIP][403] ([i915#3297]) -> [SKIP][404] ([i915#14544] / [i915#3297])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-5/igt@gem_userptr_blits@readonly-pwrite-unsync.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gen9_exec_parse@valid-registers:
- shard-rkl: [SKIP][405] ([i915#2527]) -> [SKIP][406] ([i915#14544] / [i915#2527])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-5/igt@gen9_exec_parse@valid-registers.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- shard-rkl: [SKIP][407] -> [SKIP][408] ([i915#14544]) +10 other tests skip
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-4/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_power@sanity:
- shard-rkl: [SKIP][409] ([i915#7984]) -> [SKIP][410] ([i915#14544] / [i915#7984])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-5/igt@i915_power@sanity.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@i915_power@sanity.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-rkl: [SKIP][411] ([i915#14544] / [i915#5286]) -> [SKIP][412] ([i915#5286])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-7/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg1: [SKIP][413] ([i915#4538] / [i915#5286]) -> [SKIP][414] ([i915#4423] / [i915#4538] / [i915#5286])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg1-14/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-rkl: [SKIP][415] ([i915#14544] / [i915#3638]) -> [SKIP][416] ([i915#3638])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-7/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][417] ([i915#3828]) -> [SKIP][418] ([i915#14544] / [i915#3828])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-rkl: [SKIP][419] ([i915#3638]) -> [SKIP][420] ([i915#14544] / [i915#3638])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-2/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg1: [SKIP][421] ([i915#4538]) -> [SKIP][422] ([i915#4423] / [i915#4538])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][423] ([i915#6095]) -> [SKIP][424] ([i915#14544] / [i915#6095]) +7 other tests skip
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-4/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][425] ([i915#14544] / [i915#6095]) -> [SKIP][426] ([i915#6095]) +9 other tests skip
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-rkl: [SKIP][427] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][428] ([i915#14098] / [i915#6095]) +11 other tests skip
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][429] ([i915#12313]) -> [SKIP][430] ([i915#12313] / [i915#14544])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg1: [SKIP][431] ([i915#12805]) -> [SKIP][432] ([i915#12805] / [i915#4423])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg1-12/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-hdmi-a-4:
- shard-dg1: [SKIP][433] ([i915#4423] / [i915#6095]) -> [SKIP][434] ([i915#6095]) +1 other test skip
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg1-17/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-hdmi-a-4.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-16/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][435] ([i915#14098] / [i915#6095]) -> [SKIP][436] ([i915#14098] / [i915#14544] / [i915#6095]) +9 other tests skip
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg1: [SKIP][437] ([i915#6095]) -> [SKIP][438] ([i915#4423] / [i915#6095])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg1-19/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-rkl: [SKIP][439] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][440] ([i915#11151] / [i915#7828])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-8/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: [SKIP][441] ([i915#11151] / [i915#7828]) -> [SKIP][442] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-fast.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg1: [SKIP][443] ([i915#15330] / [i915#3299]) -> [SKIP][444] ([i915#15330] / [i915#3299] / [i915#4423])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-1.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@uevent-hdcp14:
- shard-rkl: [SKIP][445] ([i915#14544] / [i915#6944]) -> [SKIP][446] ([i915#6944])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@kms_content_protection@uevent-hdcp14.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-8/igt@kms_content_protection@uevent-hdcp14.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-rkl: [SKIP][447] ([i915#3555]) -> [SKIP][448] ([i915#14544] / [i915#3555])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-32x10.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-rkl: [SKIP][449] ([i915#13049] / [i915#14544]) -> [SKIP][450] ([i915#13049]) +1 other test skip
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: [SKIP][451] ([i915#13049]) -> [SKIP][452] ([i915#13049] / [i915#14544])
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-rkl: [SKIP][453] ([i915#14544]) -> [SKIP][454] +3 other tests skip
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-8/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: [SKIP][455] ([i915#3840]) -> [SKIP][456] ([i915#14544] / [i915#3840])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_feature_discovery@display-3x:
- shard-dg1: [SKIP][457] ([i915#1839]) -> [SKIP][458] ([i915#1839] / [i915#4423])
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg1-17/igt@kms_feature_discovery@display-3x.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-rkl: [SKIP][459] ([i915#9934]) -> [SKIP][460] ([i915#14544] / [i915#9934]) +1 other test skip
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-2/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
- shard-dg1: [SKIP][461] ([i915#9934]) -> [SKIP][462] ([i915#4423] / [i915#9934])
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg1-19/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-rkl: [SKIP][463] ([i915#14544] / [i915#9934]) -> [SKIP][464] ([i915#9934]) +2 other tests skip
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-1/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-glk: [INCOMPLETE][465] ([i915#12314] / [i915#12745] / [i915#4839]) -> [INCOMPLETE][466] ([i915#12745] / [i915#4839])
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-glk8/igt@kms_flip@2x-flip-vs-suspend.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk6/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2:
- shard-glk: [INCOMPLETE][467] ([i915#12314] / [i915#4839]) -> [INCOMPLETE][468] ([i915#4839])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-glk8/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk6/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: [INCOMPLETE][469] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][470] ([i915#12314] / [i915#12745] / [i915#4839])
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-glk3/igt@kms_flip@flip-vs-suspend-interruptible.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: [INCOMPLETE][471] ([i915#12745]) -> [INCOMPLETE][472] ([i915#12314] / [i915#12745])
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-glk3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-glk8/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: [SKIP][473] ([i915#15643]) -> [SKIP][474] ([i915#14544] / [i915#15643]) +1 other test skip
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-mtlp: [SKIP][475] -> [SKIP][476] ([i915#15672])
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-mtlp-7/igt@kms_force_connector_basic@force-load-detect.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite:
- shard-dg1: [SKIP][477] -> [SKIP][478] ([i915#4423]) +6 other tests skip
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu:
- shard-rkl: [SKIP][479] ([i915#14544] / [i915#15102]) -> [SKIP][480] ([i915#15102])
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite:
- shard-rkl: [SKIP][481] ([i915#15102]) -> [SKIP][482] ([i915#14544] / [i915#15102]) +1 other test skip
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: [SKIP][483] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][484] ([i915#15102] / [i915#3458]) +2 other tests skip
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-rte:
- shard-rkl: [SKIP][485] ([i915#15102] / [i915#3023]) -> [SKIP][486] ([i915#14544] / [i915#15102] / [i915#3023]) +5 other tests skip
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu:
- shard-dg1: [SKIP][487] ([i915#15102] / [i915#3458]) -> [SKIP][488] ([i915#15102] / [i915#3458] / [i915#4423]) +2 other tests skip
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][489] ([i915#15102] / [i915#3458]) -> [SKIP][490] ([i915#10433] / [i915#15102] / [i915#3458]) +4 other tests skip
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: [SKIP][491] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][492] ([i915#15102] / [i915#3023]) +3 other tests skip
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render:
- shard-rkl: [SKIP][493] ([i915#1825]) -> [SKIP][494] ([i915#14544] / [i915#1825]) +10 other tests skip
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
- shard-rkl: [SKIP][495] ([i915#14544] / [i915#1825]) -> [SKIP][496] ([i915#1825]) +8 other tests skip
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- shard-dg1: [SKIP][497] ([i915#8708]) -> [SKIP][498] ([i915#4423] / [i915#8708]) +3 other tests skip
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: [SKIP][499] ([i915#1187] / [i915#12713]) -> [SKIP][500] ([i915#12713])
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-4/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: [SKIP][501] ([i915#15458]) -> [SKIP][502] ([i915#14544] / [i915#15458])
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-7/igt@kms_joiner@basic-ultra-joiner.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg1: [SKIP][503] ([i915#15458]) -> [SKIP][504] ([i915#15458] / [i915#4423])
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg1-14/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: [SKIP][505] ([i915#6301]) -> [SKIP][506] ([i915#14544] / [i915#6301])
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-7/igt@kms_panel_fitting@legacy.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][507] ([i915#14544] / [i915#15709]) -> [SKIP][508] ([i915#15709])
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-3/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [SKIP][509] ([i915#15128]) -> [FAIL][510] ([i915#15752])
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][511] ([i915#14544] / [i915#15739]) -> [SKIP][512] ([i915#15739])
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-3/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_rpm@cursor:
- shard-dg1: [SKIP][513] ([i915#4077]) -> [SKIP][514] ([i915#4077] / [i915#4423])
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg1-16/igt@kms_pm_rpm@cursor.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@package-g7:
- shard-rkl: [SKIP][515] ([i915#14544] / [i915#15403]) -> [SKIP][516] ([i915#15403])
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@kms_pm_rpm@package-g7.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-8/igt@kms_pm_rpm@package-g7.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
- shard-dg1: [SKIP][517] ([i915#11520]) -> [SKIP][518] ([i915#11520] / [i915#4423]) +1 other test skip
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg1-12/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
- shard-rkl: [SKIP][519] ([i915#11520] / [i915#14544]) -> [SKIP][520] ([i915#11520])
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-4/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-rkl: [SKIP][521] ([i915#11520]) -> [SKIP][522] ([i915#11520] / [i915#14544]) +1 other test skip
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-8/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: [SKIP][523] ([i915#9683]) -> [SKIP][524] ([i915#14544] / [i915#9683])
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-2/igt@kms_psr2_su@page_flip-nv12.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- shard-rkl: [SKIP][525] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][526] ([i915#1072] / [i915#9732]) +4 other tests skip
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-4/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: [SKIP][527] ([i915#1072] / [i915#9732]) -> [SKIP][528] ([i915#1072] / [i915#14544] / [i915#9732]) +5 other tests skip
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-4/igt@kms_psr@fbc-psr2-sprite-render.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-sprite-render:
- shard-dg1: [SKIP][529] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][530] ([i915#1072] / [i915#9732])
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg1-17/igt@kms_psr@pr-sprite-render.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-19/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg1: [SKIP][531] ([i915#1072] / [i915#9732]) -> [SKIP][532] ([i915#1072] / [i915#4423] / [i915#9732]) +1 other test skip
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg1-19/igt@kms_psr@psr2-primary-mmap-gtt.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: [SKIP][533] ([i915#5289]) -> [SKIP][534] ([i915#14544] / [i915#5289]) +1 other test skip
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-dg1: [SKIP][535] ([i915#5289]) -> [SKIP][536] ([i915#4423] / [i915#5289])
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-rkl: [SKIP][537] ([i915#14544] / [i915#3555]) -> [SKIP][538] ([i915#3555])
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-center.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-rkl-8/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-dg1: [SKIP][539] ([i915#9906]) -> [SKIP][540] ([i915#4423] / [i915#9906])
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8806/shard-dg1-18/igt@kms_vrr@seamless-rr-switch-drrs.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/shard-dg1-13/igt@kms_vrr@seamless-rr-switch-drrs.html
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350
[i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14867
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
[i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140
[i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15454
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15478]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15478
[i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15652]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15652
[i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15726
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833
[i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8806 -> IGTPW_14767
CI-20190529: 20190529
CI_DRM_18160: a25d8c583e1e52bde77d371081a7c3fcd0a2e820 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14767: 14767
IGT_8806: 8806
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14767/index.html
[-- Attachment #2: Type: text/html, Size: 182635 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Xe.CI.FULL: failure for lib/intel_pat: Handle platforms without compressed PAT index (rev2)
2026-03-16 6:58 [PATCH v2] lib/intel_pat: Handle platforms without compressed PAT index Sanjay Yadav
` (3 preceding siblings ...)
2026-03-17 21:26 ` ✓ i915.CI.Full: " Patchwork
@ 2026-03-17 22:01 ` Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-03-17 22:01 UTC (permalink / raw)
To: Sanjay Yadav; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 32117 bytes --]
== Series Details ==
Series: lib/intel_pat: Handle platforms without compressed PAT index (rev2)
URL : https://patchwork.freedesktop.org/series/161756/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8806_FULL -> XEIGTPW_14767_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14767_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14767_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_14767_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-lnl: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-lnl-5/igt@kms_pipe_crc_basic@suspend-read-crc.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-lnl-5/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-lnl-6/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
Known issues
------------
Here are the changes found in XEIGTPW_14767_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-3/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) +4 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p:
- shard-bmg: [PASS][7] -> [SKIP][8] ([Intel XE#7621])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-2/igt@kms_bw@connected-linear-tiling-1-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2314] / [Intel XE#2894] / [Intel XE#7373]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-6/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2887]) +2 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-2/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html
* igt@kms_chamelium_color@degamma:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-10/igt@kms_chamelium_color@degamma.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2252]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-4/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][13] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-4/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2341])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-10/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-32x10:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2320]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-6/igt@kms_cursor_crc@cursor-onscreen-32x10.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2291])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [PASS][17] -> [SKIP][18] ([Intel XE#2291]) +3 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#4422] / [Intel XE#7442])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#4156] / [Intel XE#7425])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-3/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-bmg: [PASS][21] -> [SKIP][22] ([Intel XE#2316]) +3 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [PASS][23] -> [INCOMPLETE][24] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-9/igt@kms_flip@flip-vs-suspend-interruptible.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-9/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#7179])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2311]) +8 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7061] / [Intel XE#7356])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#4141]) +7 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2312])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2352] / [Intel XE#7399])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2313]) +12 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#6901])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-10/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7283])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-5/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#5020] / [Intel XE#7348])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-7/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-7/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2391] / [Intel XE#6927])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#1489]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-6/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr@fbc-psr-basic:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-6/igt@kms_psr@fbc-psr-basic.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_sharpness_filter@filter-scaler-downscale:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#6503]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-3/igt@kms_sharpness_filter@filter-scaler-downscale.html
* igt@kms_vrr@flipline:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#1499])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-7/igt@kms_vrr@flipline.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2168] / [Intel XE#7444])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-7/igt@kms_vrr@lobf.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-10/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@basic-close:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#4837]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-2/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug_online@pagefault-write-stress:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#6665] / [Intel XE#6681])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-7/igt@xe_eudebug_online@pagefault-write-stress.html
* igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-7/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html
* igt@xe_eudebug_sriov@deny-eudebug:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#5793] / [Intel XE#7320] / [Intel XE#7464])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-3/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [PASS][48] -> [INCOMPLETE][49] ([Intel XE#6321])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-8/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-small-external-multi-queue-cm:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#7140]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-7/igt@xe_evict@evict-small-external-multi-queue-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2322] / [Intel XE#7372]) +3 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#7136]) +4 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-5/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-basic:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#6874]) +11 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-2/igt@xe_exec_multi_queue@few-execs-preempt-mode-basic.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#7138]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-4/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr.html
* igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#6964]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-7/igt@xe_multigpu_svm@mgpu-concurrent-access-prefetch.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#2248] / [Intel XE#7325] / [Intel XE#7393])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-2/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2236])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-4/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read:
- shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-7/igt@xe_peer2peer@read.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#944])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-7/igt@xe_query@multigpu-query-cs-cycles.html
#### Possible fixes ####
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions:
- shard-bmg: [SKIP][60] ([Intel XE#2291]) -> [PASS][61] +1 other test pass
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-10/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: [DMESG-WARN][62] ([Intel XE#5354]) -> [PASS][63] +1 other test pass
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-bmg: [SKIP][64] ([Intel XE#2291] / [Intel XE#7343]) -> [PASS][65]
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [SKIP][66] ([Intel XE#1340]) -> [PASS][67]
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: [SKIP][68] ([Intel XE#2316]) -> [PASS][69] +6 other tests pass
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-bmg: [FAIL][70] ([Intel XE#3098]) -> [PASS][71] +1 other test pass
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@kms_flip@wf_vblank-ts-check.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-8/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][72] ([Intel XE#1503]) -> [PASS][73] +1 other test pass
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@kms_hdr@invalid-hdr.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-3/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-bmg: [SKIP][74] ([Intel XE#4596]) -> [PASS][75]
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-4.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_setmode@basic:
- shard-bmg: [FAIL][76] ([Intel XE#6361]) -> [PASS][77] +2 other tests pass
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_setmode@basic.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-7/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-a-edp-1:
- shard-lnl: [FAIL][78] ([Intel XE#6361]) -> [PASS][79] +1 other test pass
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-lnl-4/igt@kms_setmode@basic@pipe-a-edp-1.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-lnl-5/igt@kms_setmode@basic@pipe-a-edp-1.html
* igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter:
- shard-lnl: [DMESG-WARN][80] -> [PASS][81] +1 other test pass
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-lnl-1/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-lnl-3/igt@kms_sharpness_filter@invalid-plane-with-filter@pipe-a-edp-1-invalid-plane-with-filter.html
* igt@xe_exec_system_allocator@fault-benchmark:
- shard-bmg: [FAIL][82] ([Intel XE#7550]) -> [PASS][83]
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-6/igt@xe_exec_system_allocator@fault-benchmark.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-7/igt@xe_exec_system_allocator@fault-benchmark.html
* igt@xe_exec_system_allocator@many-stride-mmap-race:
- shard-bmg: [INCOMPLETE][84] -> [PASS][85]
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-9/igt@xe_exec_system_allocator@many-stride-mmap-race.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-9/igt@xe_exec_system_allocator@many-stride-mmap-race.html
* igt@xe_sriov_flr@flr-each-isolation:
- shard-bmg: [FAIL][86] ([Intel XE#6569]) -> [PASS][87]
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@xe_sriov_flr@flr-each-isolation.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-4/igt@xe_sriov_flr@flr-each-isolation.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][88] ([Intel XE#2312]) -> [SKIP][89] ([Intel XE#4141]) +4 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][90] ([Intel XE#4141]) -> [SKIP][91] ([Intel XE#2312]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][92] ([Intel XE#2312]) -> [SKIP][93] ([Intel XE#2311]) +13 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][94] ([Intel XE#2311]) -> [SKIP][95] ([Intel XE#2312]) +9 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][96] ([Intel XE#2313]) -> [SKIP][97] ([Intel XE#2312]) +8 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][98] ([Intel XE#2312]) -> [SKIP][99] ([Intel XE#2313]) +14 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [FAIL][100] ([Intel XE#1729] / [Intel XE#7424]) -> [SKIP][101] ([Intel XE#2426] / [Intel XE#5848])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][102] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][103] ([Intel XE#2426] / [Intel XE#5848])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8806/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901
[Intel XE#6927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6927
[Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319
[Intel XE#7320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7320
[Intel XE#7325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7325
[Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350
[Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7373
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7393
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424
[Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442
[Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
[Intel XE#7464]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7464
[Intel XE#7550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7550
[Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8806 -> IGTPW_14767
IGTPW_14767: 14767
IGT_8806: 8806
xe-4731-a25d8c583e1e52bde77d371081a7c3fcd0a2e820: a25d8c583e1e52bde77d371081a7c3fcd0a2e820
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14767/index.html
[-- Attachment #2: Type: text/html, Size: 35633 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-03-17 22:01 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-16 6:58 [PATCH v2] lib/intel_pat: Handle platforms without compressed PAT index Sanjay Yadav
2026-03-16 11:45 ` Matthew Auld
2026-03-16 22:18 ` ✓ Xe.CI.BAT: success for lib/intel_pat: Handle platforms without compressed PAT index (rev2) Patchwork
2026-03-17 9:59 ` ✓ i915.CI.BAT: " Patchwork
2026-03-17 21:26 ` ✓ i915.CI.Full: " Patchwork
2026-03-17 22:01 ` ✗ Xe.CI.FULL: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox