* [igt-dev] [PATCH i-g-t] lib/xe_query: add helper getting available VRAM
@ 2023-08-07 9:24 Lukasz Laguna
2023-08-07 10:55 ` [igt-dev] ○ CI.xeBAT: info for lib/xe_query: add helper getting available VRAM (rev4) Patchwork
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: Lukasz Laguna @ 2023-08-07 9:24 UTC (permalink / raw)
To: igt-dev; +Cc: mauro.chehab
Helper allows to read available VRAM of a specified device and GT.
v2:
- Query for current memory usage instead of using cached one (Zbigniew)
v3:
- Reacquire mem_region pointer (Zbigniew)
v4:
- Update value of used memory only in xe_dev
Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
---
lib/xe/xe_query.c | 35 +++++++++++++++++++++++++++++++++++
lib/xe/xe_query.h | 1 +
2 files changed, 36 insertions(+)
diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c
index 8963c7b06..c356abe1e 100644
--- a/lib/xe/xe_query.c
+++ b/lib/xe/xe_query.c
@@ -630,6 +630,41 @@ uint64_t xe_visible_vram_size(int fd, int gt)
return visible_size;
}
+/**
+ * xe_vram_available:
+ * @fd: xe device fd
+ * @gt: gt
+ *
+ * Returns available vram of xe device @fd and @gt.
+ */
+uint64_t xe_vram_available(int fd, int gt)
+{
+ struct xe_device *xe_dev;
+ int region_idx;
+ struct drm_xe_query_mem_region *mem_region;
+ struct drm_xe_query_mem_usage *mem_usage;
+
+ xe_dev = find_in_cache(fd);
+ igt_assert(xe_dev);
+
+ region_idx = ffs(native_region_for_gt(xe_dev->gts, gt)) - 1;
+ mem_region = &xe_dev->mem_usage->regions[region_idx];
+
+ if (XE_IS_CLASS_VRAM(mem_region)) {
+ uint64_t available_vram;
+
+ mem_usage = xe_query_mem_usage_new(fd);
+ pthread_mutex_lock(&cache.cache_mutex);
+ mem_region->used = mem_usage->regions[region_idx].used;
+ available_vram = mem_region->total_size - mem_region->used;
+ pthread_mutex_unlock(&cache.cache_mutex);
+ free(mem_usage);
+
+ return available_vram;
+ }
+
+ return 0;
+}
/**
* xe_get_default_alignment:
diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h
index 1b74c58ab..20dbfa12c 100644
--- a/lib/xe/xe_query.h
+++ b/lib/xe/xe_query.h
@@ -97,6 +97,7 @@ unsigned int xe_number_hw_engines(int fd);
bool xe_has_vram(int fd);
uint64_t xe_vram_size(int fd, int gt);
uint64_t xe_visible_vram_size(int fd, int gt);
+uint64_t xe_vram_available(int fd, int gt);
uint32_t xe_get_default_alignment(int fd);
uint32_t xe_va_bits(int fd);
uint16_t xe_dev_id(int fd);
--
2.40.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [igt-dev] ○ CI.xeBAT: info for lib/xe_query: add helper getting available VRAM (rev4)
2023-08-07 9:24 [igt-dev] [PATCH i-g-t] lib/xe_query: add helper getting available VRAM Lukasz Laguna
@ 2023-08-07 10:55 ` Patchwork
2023-08-07 10:58 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-08-07 10:55 UTC (permalink / raw)
To: Lukasz Laguna; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 352 bytes --]
== Series Details ==
Series: lib/xe_query: add helper getting available VRAM (rev4)
URL : https://patchwork.freedesktop.org/series/121704/
State : info
== Summary ==
Participating hosts:
bat-pvc-2
bat-atsm-2
bat-dg2-oem2
bat-adlp-7
Missing hosts results[0]:
Results: [IGTPW_9526](https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9526/index.html)
[-- Attachment #2: Type: text/html, Size: 868 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for lib/xe_query: add helper getting available VRAM (rev4)
2023-08-07 9:24 [igt-dev] [PATCH i-g-t] lib/xe_query: add helper getting available VRAM Lukasz Laguna
2023-08-07 10:55 ` [igt-dev] ○ CI.xeBAT: info for lib/xe_query: add helper getting available VRAM (rev4) Patchwork
@ 2023-08-07 10:58 ` Patchwork
2023-08-07 11:58 ` [igt-dev] [PATCH i-g-t] lib/xe_query: add helper getting available VRAM Zbigniew Kempczyński
2023-08-07 14:39 ` [igt-dev] ✗ Fi.CI.IGT: failure for lib/xe_query: add helper getting available VRAM (rev4) Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2023-08-07 10:58 UTC (permalink / raw)
To: Lukasz Laguna; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 11987 bytes --]
== Series Details ==
Series: lib/xe_query: add helper getting available VRAM (rev4)
URL : https://patchwork.freedesktop.org/series/121704/
State : success
== Summary ==
CI Bug Log - changes from IGT_7418 -> IGTPW_9526
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/index.html
Participating hosts (42 -> 41)
------------------------------
Additional (1): bat-dg2-9
Missing (2): fi-kbl-soraka fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_9526 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_mmap@basic:
- bat-dg2-9: NOTRUN -> [SKIP][1] ([i915#4083])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-dg2-9/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-dg2-9: NOTRUN -> [SKIP][2] ([i915#4077]) +2 similar issues
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-dg2-9/igt@gem_mmap_gtt@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg2-9: NOTRUN -> [SKIP][3] ([i915#4079]) +1 similar issue
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-dg2-9/igt@gem_tiled_pread_basic.html
* igt@i915_pm_backlight@basic-brightness:
- bat-dg2-9: NOTRUN -> [SKIP][4] ([i915#5354] / [i915#7561])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-dg2-9/igt@i915_pm_backlight@basic-brightness.html
* igt@i915_pm_rpm@module-reload:
- fi-apl-guc: [PASS][5] -> [DMESG-FAIL][6] ([i915#8585])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/fi-apl-guc/igt@i915_pm_rpm@module-reload.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/fi-apl-guc/igt@i915_pm_rpm@module-reload.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-9: NOTRUN -> [SKIP][7] ([i915#6621])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-dg2-9/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@requests:
- bat-rpls-2: [PASS][8] -> [ABORT][9] ([i915#7913])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/bat-rpls-2/igt@i915_selftest@live@requests.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-rpls-2/igt@i915_selftest@live@requests.html
- bat-mtlp-6: [PASS][10] -> [DMESG-FAIL][11] ([i915#8497])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/bat-mtlp-6/igt@i915_selftest@live@requests.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-mtlp-6/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@slpc:
- bat-mtlp-8: NOTRUN -> [DMESG-WARN][12] ([i915#6367])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-mtlp-8/igt@i915_selftest@live@slpc.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-mtlp-8: NOTRUN -> [SKIP][13] ([i915#6645])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][14] ([i915#5190])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][15] ([i915#4215] / [i915#5190])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-dg2-9: NOTRUN -> [SKIP][16] ([i915#4212]) +7 similar issues
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- bat-mtlp-8: NOTRUN -> [SKIP][17] ([i915#7828])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-mtlp-8/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- bat-dg2-9: NOTRUN -> [SKIP][18] ([i915#7828]) +8 similar issues
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-dg2-9/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][19] ([i915#4103] / [i915#4213]) +1 similar issue
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-9: NOTRUN -> [SKIP][20] ([fdo#109285])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-9: NOTRUN -> [SKIP][21] ([i915#5274])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_psr@primary_page_flip:
- bat-dg2-9: NOTRUN -> [SKIP][22] ([i915#1072]) +3 similar issues
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-dg2-9/igt@kms_psr@primary_page_flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-9: NOTRUN -> [SKIP][23] ([i915#3555])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-9: NOTRUN -> [SKIP][24] ([i915#3708])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-9: NOTRUN -> [SKIP][25] ([i915#3708] / [i915#4077]) +1 similar issue
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-dg2-9: NOTRUN -> [SKIP][26] ([i915#3291] / [i915#3708]) +2 similar issues
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-dg2-9/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_pm_rpm@module-reload:
- fi-rkl-11600: [FAIL][27] ([i915#7940]) -> [PASS][28]
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/fi-rkl-11600/igt@i915_pm_rpm@module-reload.html
- fi-kbl-7567u: [FAIL][29] ([i915#7940]) -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/fi-kbl-7567u/igt@i915_pm_rpm@module-reload.html
- fi-tgl-1115g4: [FAIL][31] ([i915#7940]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/fi-tgl-1115g4/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@gt_mocs:
- bat-mtlp-6: [DMESG-FAIL][33] ([i915#7059]) -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-mtlp-6/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@requests:
- bat-mtlp-8: [ABORT][35] ([i915#7982]) -> [PASS][36]
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/bat-mtlp-8/igt@i915_selftest@live@requests.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-mtlp-8/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@slpc:
- bat-mtlp-6: [DMESG-WARN][37] ([i915#6367]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/bat-mtlp-6/igt@i915_selftest@live@slpc.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-mtlp-6/igt@i915_selftest@live@slpc.html
- bat-rpls-1: [DMESG-WARN][39] ([i915#6367]) -> [PASS][40]
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/bat-rpls-1/igt@i915_selftest@live@slpc.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-rpls-1/igt@i915_selftest@live@slpc.html
* igt@i915_selftest@live@workarounds:
- bat-rpls-2: [DMESG-FAIL][41] ([i915#6763] / [i915#7913]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/bat-rpls-2/igt@i915_selftest@live@workarounds.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-rpls-2/igt@i915_selftest@live@workarounds.html
* igt@kms_chamelium_frames@dp-crc-fast:
- {bat-dg2-13}: [DMESG-WARN][43] ([Intel XE#485]) -> [PASS][44]
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html
#### Warnings ####
* igt@i915_pm_rpm@basic-pci-d3-state:
- fi-cfl-8700k: [FAIL][45] ([i915#7691]) -> [FAIL][46] ([i915#7940])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/fi-cfl-8700k/igt@i915_pm_rpm@basic-pci-d3-state.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/fi-cfl-8700k/igt@i915_pm_rpm@basic-pci-d3-state.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#485]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/485
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982
[i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497
[i915#8585]: https://gitlab.freedesktop.org/drm/intel/issues/8585
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7418 -> IGTPW_9526
CI-20190529: 20190529
CI_DRM_13484: 987af50ac0ac94da778b87e53821b17ab6bf92f7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9526: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/index.html
IGT_7418: 6fda79854b205a8110157b6915090680538a7249 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/index.html
[-- Attachment #2: Type: text/html, Size: 14125 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] lib/xe_query: add helper getting available VRAM
2023-08-07 9:24 [igt-dev] [PATCH i-g-t] lib/xe_query: add helper getting available VRAM Lukasz Laguna
2023-08-07 10:55 ` [igt-dev] ○ CI.xeBAT: info for lib/xe_query: add helper getting available VRAM (rev4) Patchwork
2023-08-07 10:58 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-08-07 11:58 ` Zbigniew Kempczyński
2023-08-07 14:39 ` [igt-dev] ✗ Fi.CI.IGT: failure for lib/xe_query: add helper getting available VRAM (rev4) Patchwork
3 siblings, 0 replies; 6+ messages in thread
From: Zbigniew Kempczyński @ 2023-08-07 11:58 UTC (permalink / raw)
To: Lukasz Laguna; +Cc: igt-dev, mauro.chehab
On Mon, Aug 07, 2023 at 11:24:46AM +0200, Lukasz Laguna wrote:
> Helper allows to read available VRAM of a specified device and GT.
>
> v2:
> - Query for current memory usage instead of using cached one (Zbigniew)
> v3:
> - Reacquire mem_region pointer (Zbigniew)
> v4:
> - Update value of used memory only in xe_dev
>
> Signed-off-by: Lukasz Laguna <lukasz.laguna@intel.com>
> ---
> lib/xe/xe_query.c | 35 +++++++++++++++++++++++++++++++++++
> lib/xe/xe_query.h | 1 +
> 2 files changed, 36 insertions(+)
>
> diff --git a/lib/xe/xe_query.c b/lib/xe/xe_query.c
> index 8963c7b06..c356abe1e 100644
> --- a/lib/xe/xe_query.c
> +++ b/lib/xe/xe_query.c
> @@ -630,6 +630,41 @@ uint64_t xe_visible_vram_size(int fd, int gt)
>
> return visible_size;
> }
> +/**
> + * xe_vram_available:
> + * @fd: xe device fd
> + * @gt: gt
> + *
> + * Returns available vram of xe device @fd and @gt.
> + */
> +uint64_t xe_vram_available(int fd, int gt)
> +{
> + struct xe_device *xe_dev;
> + int region_idx;
> + struct drm_xe_query_mem_region *mem_region;
> + struct drm_xe_query_mem_usage *mem_usage;
> +
> + xe_dev = find_in_cache(fd);
> + igt_assert(xe_dev);
> +
> + region_idx = ffs(native_region_for_gt(xe_dev->gts, gt)) - 1;
> + mem_region = &xe_dev->mem_usage->regions[region_idx];
> +
> + if (XE_IS_CLASS_VRAM(mem_region)) {
> + uint64_t available_vram;
> +
> + mem_usage = xe_query_mem_usage_new(fd);
> + pthread_mutex_lock(&cache.cache_mutex);
> + mem_region->used = mem_usage->regions[region_idx].used;
> + available_vram = mem_region->total_size - mem_region->used;
> + pthread_mutex_unlock(&cache.cache_mutex);
> + free(mem_usage);
> +
> + return available_vram;
> + }
> +
> + return 0;
> +}
>
> /**
> * xe_get_default_alignment:
> diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h
> index 1b74c58ab..20dbfa12c 100644
> --- a/lib/xe/xe_query.h
> +++ b/lib/xe/xe_query.h
> @@ -97,6 +97,7 @@ unsigned int xe_number_hw_engines(int fd);
> bool xe_has_vram(int fd);
> uint64_t xe_vram_size(int fd, int gt);
> uint64_t xe_visible_vram_size(int fd, int gt);
> +uint64_t xe_vram_available(int fd, int gt);
> uint32_t xe_get_default_alignment(int fd);
> uint32_t xe_va_bits(int fd);
> uint16_t xe_dev_id(int fd);
> --
> 2.40.0
>
Works fine for me. Just did some basic test with creating bo and
releasing it and it reflects the returned available value. So:
Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
--
Zbigniew
^ permalink raw reply [flat|nested] 6+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for lib/xe_query: add helper getting available VRAM (rev4)
2023-08-07 9:24 [igt-dev] [PATCH i-g-t] lib/xe_query: add helper getting available VRAM Lukasz Laguna
` (2 preceding siblings ...)
2023-08-07 11:58 ` [igt-dev] [PATCH i-g-t] lib/xe_query: add helper getting available VRAM Zbigniew Kempczyński
@ 2023-08-07 14:39 ` Patchwork
2023-08-08 10:46 ` Laguna, Lukasz
3 siblings, 1 reply; 6+ messages in thread
From: Patchwork @ 2023-08-07 14:39 UTC (permalink / raw)
To: Lukasz Laguna; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 79714 bytes --]
== Series Details ==
Series: lib/xe_query: add helper getting available VRAM (rev4)
URL : https://patchwork.freedesktop.org/series/121704/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7418_full -> IGTPW_9526_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_9526_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_9526_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_9526_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_psr@psr2_primary_mmap_cpu:
- shard-mtlp: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-8/igt@kms_psr@psr2_primary_mmap_cpu.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-4/igt@kms_psr@psr2_primary_mmap_cpu.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_dsc@dsc-with-output-formats-with-bpc}:
- shard-mtlp: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
Known issues
------------
Here are the changes found in IGTPW_9526_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-keep-cache:
- shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8411]) +1 similar issue
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@api_intel_bb@blit-reloc-keep-cache.html
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#6230])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-4/igt@api_intel_bb@crc32.html
* igt@debugfs_test@basic-hwmon:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#7456])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@debugfs_test@basic-hwmon.html
* igt@drm_buddy@drm_buddy_test:
- shard-snb: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#8661])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-snb5/igt@drm_buddy@drm_buddy_test.html
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#8661]) +1 similar issue
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-6/igt@drm_buddy@drm_buddy_test.html
* igt@drm_fdinfo@most-busy-check-all@bcs0:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +9 similar issues
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@drm_fdinfo@most-busy-check-all@bcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][11] ([i915#8414]) +11 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-2/igt@drm_fdinfo@most-busy-idle-check-all@ccs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [PASS][12] -> [FAIL][13] ([i915#7742])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@drm_mm@drm_mm_test:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#8661])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-6/igt@drm_mm@drm_mm_test.html
* igt@feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#1839]) +1 similar issue
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-2/igt@feature_discovery@display-3x.html
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#1839])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-4/igt@feature_discovery@display-3x.html
* igt@gem_bad_reloc@negative-reloc:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#3281]) +1 similar issue
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-19/igt@gem_bad_reloc@negative-reloc.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#4098] / [i915#5325])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#5325]) +1 similar issue
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-8/igt@gem_ccs@suspend-resume.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [PASS][20] -> [FAIL][21] ([i915#6268])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@engines-hang@vcs0:
- shard-mtlp: [PASS][22] -> [FAIL][23] ([i915#2410])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-6/igt@gem_ctx_persistence@engines-hang@vcs0.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-8/igt@gem_ctx_persistence@engines-hang@vcs0.html
* igt@gem_ctx_persistence@hostile:
- shard-snb: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#1099])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-snb2/igt@gem_ctx_persistence@hostile.html
* igt@gem_eio@kms:
- shard-dg2: [PASS][25] -> [FAIL][26] ([i915#5784])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg2-11/igt@gem_eio@kms.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-2/igt@gem_eio@kms.html
* igt@gem_eio@reset-stress:
- shard-dg1: [PASS][27] -> [FAIL][28] ([i915#5784])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-16/igt@gem_eio@reset-stress.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-15/igt@gem_eio@reset-stress.html
* igt@gem_exec_fair@basic-none:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) +1 similar issue
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [PASS][30] -> [FAIL][31] ([i915#2842])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-tglu-5/igt@gem_exec_fair@basic-pace-share@rcs0.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-sync:
- shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4473] / [i915#4771])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-8/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg1: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-17/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][34] ([fdo#109283] / [i915#5107])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#3281]) +4 similar issues
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-gtt-wc-noreloc:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#3281]) +5 similar issues
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3281]) +6 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-1/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#7276])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#4537] / [i915#4812]) +1 similar issue
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_exec_whisper@basic-contexts-forked-all:
- shard-mtlp: [PASS][40] -> [TIMEOUT][41] ([i915#7392] / [i915#8628])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-forked-all.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-forked-all.html
* igt@gem_exec_whisper@basic-fds-priority-all:
- shard-tglu: [PASS][42] -> [INCOMPLETE][43] ([i915#6755] / [i915#7392])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-tglu-2/igt@gem_exec_whisper@basic-fds-priority-all.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-4/igt@gem_exec_whisper@basic-fds-priority-all.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4860]) +1 similar issue
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4860])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-1/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_lmem_swapping@basic:
- shard-tglu: NOTRUN -> [SKIP][46] ([i915#4613])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-6/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4613]) +2 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#4613]) +1 similar issue
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_mmap@bad-offset:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4083])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-5/igt@gem_mmap@bad-offset.html
* igt@gem_mmap_gtt@basic-read-write-distinct:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4077]) +3 similar issues
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@gem_mmap_gtt@basic-read-write-distinct.html
* igt@gem_mmap_gtt@hang-user:
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4077]) +1 similar issue
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-8/igt@gem_mmap_gtt@hang-user.html
* igt@gem_mmap_wc@bad-object:
- shard-dg1: NOTRUN -> [SKIP][52] ([i915#4083])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-19/igt@gem_mmap_wc@bad-object.html
* igt@gem_mmap_wc@set-cache-level:
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4083]) +1 similar issue
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-8/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#3282])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-17/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#3282])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-2/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#3282]) +1 similar issue
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4270]) +1 similar issue
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-3/igt@gem_pxp@reject-modify-context-protection-off-3.html
- shard-rkl: NOTRUN -> [SKIP][58] ([i915#4270]) +1 similar issue
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-1/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4270]) +2 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-1/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_readwrite@write-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3282])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-6/igt@gem_readwrite@write-bad-handle.html
* igt@gem_render_copy@linear-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][61] ([i915#8428]) +3 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-2/igt@gem_render_copy@linear-to-vebox-y-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-linear:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#5190]) +3 similar issues
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@gem_render_copy@y-tiled-to-vebox-linear.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4079])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#3297] / [i915#4880])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@nohangcheck:
- shard-mtlp: [PASS][65] -> [FAIL][66] ([i915#6268])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-6/igt@gem_userptr_blits@nohangcheck.html
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-4/igt@gem_userptr_blits@nohangcheck.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3297])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gen7_exec_parse@basic-allocation:
- shard-rkl: NOTRUN -> [SKIP][68] ([fdo#109289])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-1/igt@gen7_exec_parse@basic-allocation.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#2527])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-12/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#2856]) +1 similar issue
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-1/igt@gen9_exec_parse@secure-batches.html
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#2527])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-4/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@valid-registers:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#2856]) +1 similar issue
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [PASS][73] -> [DMESG-WARN][74] ([i915#7061] / [i915#8617])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#6412])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@i915_module_load@resize-bar.html
* igt@i915_pipe_stress@stress-xrgb8888-untiled:
- shard-mtlp: [PASS][76] -> [FAIL][77] ([i915#8691])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-8/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
* igt@i915_pm_dc@dc6-dpms:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#3361])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-1/igt@i915_pm_dc@dc6-dpms.html
- shard-tglu: [PASS][79] -> [FAIL][80] ([i915#3989] / [i915#454])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-tglu-9/igt@i915_pm_dc@dc6-dpms.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-10/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_pm_dc@dc6-psr:
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#658])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-18/igt@i915_pm_dc@dc6-psr.html
* igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#1937])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-1/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-dg2: NOTRUN -> [SKIP][83] ([fdo#109506])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-6/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#1397])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#1397])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [PASS][86] -> [SKIP][87] ([i915#1397])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-rkl-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#6621])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-2/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_selftest@live@sanitycheck:
- shard-snb: [PASS][89] -> [ABORT][90] ([i915#4528])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-snb5/igt@i915_selftest@live@sanitycheck.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-snb2/igt@i915_selftest@live@sanitycheck.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#4212]) +1 similar issue
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#5190])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#8502] / [i915#8709]) +11 similar issues
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#8502]) +3 similar issues
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs:
- shard-dg1: NOTRUN -> [SKIP][95] ([i915#8502]) +7 similar issues
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][96] ([i915#8247]) +1 similar issue
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html
* igt@kms_async_flips@crc@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [FAIL][97] ([i915#8247]) +3 similar issues
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-19/igt@kms_async_flips@crc@pipe-c-hdmi-a-1.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#6228])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-3/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#404])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-rkl: NOTRUN -> [SKIP][100] ([i915#404])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#1769])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-6/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#5286])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@linear-8bpp-rotate-0:
- shard-mtlp: [PASS][103] -> [FAIL][104] ([i915#5138])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-8/igt@kms_big_fb@linear-8bpp-rotate-0.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-8/igt@kms_big_fb@linear-8bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][105] ([fdo#111614]) +2 similar issues
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-8/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][106] ([fdo#111615]) +4 similar issues
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#4538] / [i915#5190]) +1 similar issue
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
- shard-rkl: NOTRUN -> [SKIP][108] ([fdo#110723])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_joiner@invalid-modeset:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#2705])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-2/igt@kms_big_joiner@invalid-modeset.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc:
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#3886] / [i915#6095]) +2 similar issues
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][111] ([i915#5354] / [i915#6095]) +5 similar issues
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs_cc:
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#5354] / [i915#6095]) +1 similar issue
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-19/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs_cc.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][113] ([i915#5354] / [i915#6095])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#3886] / [i915#5354] / [i915#6095]) +1 similar issue
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-4/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_rc_ccs_cc:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#3689] / [i915#3886] / [i915#5354]) +2 similar issues
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#3689] / [i915#5354]) +4 similar issues
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-6/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html
* igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#5354]) +11 similar issues
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-1/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_gen12_rc_ccs:
- shard-mtlp: NOTRUN -> [SKIP][118] ([i915#6095]) +16 similar issues
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-1/igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_gen12_rc_ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#3742])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-2/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#4087] / [i915#7213]) +3 similar issues
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#4087]) +3 similar issues
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-mtlp: NOTRUN -> [SKIP][122] ([fdo#111827]) +1 similar issue
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-dg2: NOTRUN -> [SKIP][123] ([fdo#111827])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-2/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-rkl: NOTRUN -> [SKIP][124] ([fdo#111827])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-6/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#7828]) +2 similar issues
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-1/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#7828])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#7828]) +2 similar issues
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#7828]) +1 similar issue
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-14/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_color@deep-color:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#3555]) +2 similar issues
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-2/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][130] ([i915#7173])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#3299])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#3116])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-2/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#7118])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#3359])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#3359])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#3555])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-12/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#8814])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
- shard-dg2: NOTRUN -> [SKIP][138] ([fdo#109274] / [i915#5354])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#4103])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-mtlp: [PASS][140] -> [FAIL][141] ([i915#8248])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-4/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-2/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#3546]) +1 similar issue
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-rkl: NOTRUN -> [SKIP][143] ([fdo#111767] / [fdo#111825])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-snb: NOTRUN -> [SKIP][144] ([fdo#109271] / [fdo#111767]) +2 similar issues
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-snb4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#8812])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-dg2: NOTRUN -> [SKIP][146] ([fdo#109274])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-1/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][147] ([fdo#109274] / [fdo#111767])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][148] -> [FAIL][149] ([i915#79])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#8381])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3637]) +5 similar issues
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-6/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-rkl: NOTRUN -> [SKIP][152] ([fdo#111825]) +1 similar issue
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@wf_vblank-ts-check@a-edp1:
- shard-mtlp: [PASS][153] -> [DMESG-WARN][154] ([i915#1982])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-3/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-8/igt@kms_flip@wf_vblank-ts-check@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#2672])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#2672]) +1 similar issue
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#2672])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#8708]) +1 similar issue
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [FAIL][159] ([i915#6880])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#8708]) +3 similar issues
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][161] ([fdo#109280]) +4 similar issues
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#1825]) +18 similar issues
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
- shard-dg2: [PASS][163] -> [FAIL][164] ([i915#6880]) +1 similar issue
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#5460])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][166] ([i915#3023]) +6 similar issues
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
- shard-dg1: NOTRUN -> [SKIP][167] ([fdo#111825])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#5354]) +24 similar issues
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#3458]) +6 similar issues
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-snb: NOTRUN -> [SKIP][170] ([fdo#109271]) +121 similar issues
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-snb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][171] ([fdo#111825] / [i915#1825]) +13 similar issues
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#3458])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#8228])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#3555] / [i915#8228])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#8228])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-2/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][176] ([fdo#109289]) +2 similar issues
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-4/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html
* igt@kms_plane@pixel-format-source-clamping@pipe-b-planes:
- shard-mtlp: [PASS][177] -> [FAIL][178] ([i915#1623])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-2/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-4/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#6953])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#5176]) +11 similar issues
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#5176]) +3 similar issues
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-1/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][182] ([i915#5176]) +3 similar issues
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#5176]) +11 similar issues
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-19/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#5235]) +1 similar issue
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#5235]) +7 similar issues
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][186] ([i915#5235]) +3 similar issues
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#5235]) +11 similar issues
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#6524] / [i915#6805])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-1/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-rkl: NOTRUN -> [SKIP][189] ([fdo#111068] / [i915#658])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#658])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@cursor_blt:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#1072]) +1 similar issue
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@kms_psr@cursor_blt.html
* igt@kms_psr@psr2_cursor_mmap_cpu:
- shard-tglu: NOTRUN -> [SKIP][192] ([fdo#110189]) +2 similar issues
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-5/igt@kms_psr@psr2_cursor_mmap_cpu.html
* igt@kms_psr@psr2_sprite_blt:
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#1072]) +3 similar issues
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@kms_psr@psr2_sprite_blt.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-mtlp: NOTRUN -> [SKIP][194] ([i915#4235]) +5 similar issues
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#5289])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][196] ([fdo#111615] / [i915#5289])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#4098])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tv_load_detect@load-detect:
- shard-rkl: NOTRUN -> [SKIP][198] ([fdo#109309])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-1/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@universal-plane-pipe-c-functional:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#4070] / [i915#6768]) +2 similar issues
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-4/igt@kms_universal_plane@universal-plane-pipe-c-functional.html
* igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
- shard-dg2: NOTRUN -> [FAIL][200] ([fdo#103375])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html
* igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend:
- shard-dg2: [PASS][201] -> [FAIL][202] ([fdo#103375]) +3 similar issues
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg2-5/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-5/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html
* igt@kms_vblank@pipe-d-accuracy-idle:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#4070] / [i915#533] / [i915#6768]) +1 similar issue
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-1/igt@kms_vblank@pipe-d-accuracy-idle.html
* igt@kms_vrr@flip-suspend:
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#8808])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-6/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@flipline:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#3555])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-1/igt@kms_vrr@flipline.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#2437])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@kms_writeback@writeback-invalid-parameters.html
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#2437])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-6/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#2436])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#7387])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-8/igt@perf@global-sseu-config-invalid.html
* igt@prime_udl:
- shard-rkl: NOTRUN -> [SKIP][210] ([fdo#109291])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-1/igt@prime_udl.html
* igt@prime_vgem@basic-fence-mmap:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#3708] / [i915#4077])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-6/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@fence-write-hang:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3708])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-6/igt@prime_vgem@fence-write-hang.html
* igt@runner@aborted:
- shard-snb: NOTRUN -> ([FAIL][213], [FAIL][214], [FAIL][215]) ([i915#7812] / [i915#8848])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-snb7/igt@runner@aborted.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-snb7/igt@runner@aborted.html
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-snb7/igt@runner@aborted.html
* igt@sysfs_heartbeat_interval@nopreempt@vcs0:
- shard-mtlp: NOTRUN -> [FAIL][216] ([i915#6015]) +5 similar issues
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html
* igt@v3d/v3d_submit_cl@bad-multisync-out-sync:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#2575]) +5 similar issues
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-2/igt@v3d/v3d_submit_cl@bad-multisync-out-sync.html
* igt@v3d/v3d_submit_cl@bad-multisync-pad:
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#2575]) +4 similar issues
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-1/igt@v3d/v3d_submit_cl@bad-multisync-pad.html
* igt@v3d/v3d_submit_csd@valid-multisync-submission:
- shard-rkl: NOTRUN -> [SKIP][219] ([fdo#109315]) +3 similar issues
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-2/igt@v3d/v3d_submit_csd@valid-multisync-submission.html
* igt@v3d/v3d_wait_bo@bad-pad:
- shard-tglu: NOTRUN -> [SKIP][220] ([fdo#109315] / [i915#2575]) +1 similar issue
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-8/igt@v3d/v3d_wait_bo@bad-pad.html
* igt@vc4/vc4_label_bo@set-bad-name:
- shard-mtlp: NOTRUN -> [SKIP][221] ([i915#7711]) +2 similar issues
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@vc4/vc4_label_bo@set-bad-name.html
* igt@vc4/vc4_tiling@get-bad-flags:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#7711]) +1 similar issue
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-1/igt@vc4/vc4_tiling@get-bad-flags.html
* igt@vc4/vc4_wait_bo@unused-bo-1ns:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#7711]) +3 similar issues
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@vc4/vc4_wait_bo@unused-bo-1ns.html
#### Possible fixes ####
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-rkl: [FAIL][224] ([i915#6268]) -> [PASS][225]
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_persistence@saturated-hostile@vecs0:
- shard-mtlp: [FAIL][226] ([i915#7816]) -> [PASS][227] +2 similar issues
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-1/igt@gem_ctx_persistence@saturated-hostile@vecs0.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-7/igt@gem_ctx_persistence@saturated-hostile@vecs0.html
* igt@gem_eio@in-flight-10ms:
- shard-mtlp: [ABORT][228] ([i915#8503]) -> [PASS][229]
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-2/igt@gem_eio@in-flight-10ms.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-1/igt@gem_eio@in-flight-10ms.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][230] ([i915#5784]) -> [PASS][231]
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-19/igt@gem_eio@unwedge-stress.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-17/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-apl: [FAIL][232] ([i915#2842]) -> [PASS][233] +1 similar issue
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-glk: [FAIL][234] ([i915#2842]) -> [PASS][235]
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-rkl: [FAIL][236] ([i915#2842]) -> [PASS][237]
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_flush@basic-wb-ro-default:
- shard-snb: [ABORT][238] -> [PASS][239] +1 similar issue
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-snb7/igt@gem_exec_flush@basic-wb-ro-default.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-snb4/igt@gem_exec_flush@basic-wb-ro-default.html
* igt@gem_mmap_offset@clear@smem0:
- shard-dg1: [FAIL][240] ([i915#7962]) -> [PASS][241]
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-14/igt@gem_mmap_offset@clear@smem0.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-19/igt@gem_mmap_offset@clear@smem0.html
* igt@gem_ppgtt@blt-vs-render-ctxn:
- shard-snb: [FAIL][242] ([i915#8295]) -> [PASS][243]
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-snb6/igt@gem_ppgtt@blt-vs-render-ctxn.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-snb5/igt@gem_ppgtt@blt-vs-render-ctxn.html
* igt@gem_softpin@allocator-evict@vecs0:
- shard-dg1: [INCOMPLETE][244] -> [PASS][245]
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-13/igt@gem_softpin@allocator-evict@vecs0.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-14/igt@gem_softpin@allocator-evict@vecs0.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-mtlp: [SKIP][246] ([fdo#109289] / [i915#8403]) -> [PASS][247]
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-1/igt@i915_pm_rc6_residency@rc6-accuracy.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- shard-tglu: [WARN][248] ([i915#2681]) -> [PASS][249]
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@i915_pm_rpm@basic-pci-d3-state:
- shard-dg1: [FAIL][250] ([i915#7691]) -> [PASS][251]
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-13/igt@i915_pm_rpm@basic-pci-d3-state.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-19/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_pm_rpm@cursor:
- shard-dg1: [FAIL][252] ([i915#7940]) -> [PASS][253] +2 similar issues
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-14/igt@i915_pm_rpm@cursor.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-12/igt@i915_pm_rpm@cursor.html
* igt@i915_pm_rpm@dpms-lpsp:
- shard-dg1: [SKIP][254] ([i915#1397]) -> [PASS][255] +1 similar issue
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-13/igt@i915_pm_rpm@dpms-lpsp.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html
* igt@i915_pm_rpm@i2c:
- shard-dg2: [FAIL][256] ([i915#8717]) -> [PASS][257]
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg2-2/igt@i915_pm_rpm@i2c.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@i915_pm_rpm@i2c.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [SKIP][258] ([i915#1397]) -> [PASS][259]
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-2/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@i915_pm_rps@reset:
- shard-dg2: [FAIL][260] -> [PASS][261]
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg2-11/igt@i915_pm_rps@reset.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@i915_pm_rps@reset.html
- shard-dg1: [FAIL][262] ([i915#8229]) -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-19/igt@i915_pm_rps@reset.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-14/igt@i915_pm_rps@reset.html
* igt@i915_selftest@live@gt_mocs:
- shard-mtlp: [DMESG-FAIL][264] ([i915#7059]) -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-7/igt@i915_selftest@live@gt_mocs.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-4/igt@i915_selftest@live@gt_mocs.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [DMESG-FAIL][266] ([i915#6763]) -> [PASS][267]
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-7/igt@i915_selftest@live@workarounds.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-4/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-dg2: [FAIL][268] ([fdo#103375]) -> [PASS][269] +2 similar issues
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg2-11/igt@i915_suspend@basic-s3-without-i915.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-3/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1:
- shard-glk: [FAIL][270] ([i915#2521]) -> [PASS][271]
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-mtlp: [FAIL][272] ([i915#3743]) -> [PASS][273] +2 similar issues
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][274] ([i915#2346]) -> [PASS][275]
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1:
- shard-glk: [FAIL][276] ([i915#2122]) -> [PASS][277]
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-glk5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html
* igt@kms_plane@pixel-format@pipe-b-planes:
- shard-mtlp: [FAIL][278] ([i915#1623]) -> [PASS][279]
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-7/igt@kms_plane@pixel-format@pipe-b-planes.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@kms_plane@pixel-format@pipe-b-planes.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-mtlp: [FAIL][280] -> [PASS][281]
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-6/igt@kms_psr@psr2_sprite_plane_move.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-2/igt@kms_psr@psr2_sprite_plane_move.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-dg2: [FAIL][282] ([i915#5234]) -> [PASS][283]
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg2-10/igt@perf_pmu@all-busy-idle-check-all.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-6/igt@perf_pmu@all-busy-idle-check-all.html
- shard-dg1: [FAIL][284] ([i915#5234]) -> [PASS][285]
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-15/igt@perf_pmu@all-busy-idle-check-all.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-18/igt@perf_pmu@all-busy-idle-check-all.html
- shard-mtlp: [FAIL][286] ([i915#5234]) -> [PASS][287]
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-8/igt@perf_pmu@all-busy-idle-check-all.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@perf_pmu@all-busy-idle-check-all.html
* igt@perf_pmu@busy-double-start@ccs1:
- shard-dg2: [FAIL][288] ([i915#4349]) -> [PASS][289] +9 similar issues
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg2-5/igt@perf_pmu@busy-double-start@ccs1.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-1/igt@perf_pmu@busy-double-start@ccs1.html
* igt@perf_pmu@busy-double-start@vcs1:
- shard-dg1: [FAIL][290] ([i915#4349]) -> [PASS][291] +3 similar issues
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-19/igt@perf_pmu@busy-double-start@vcs1.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-12/igt@perf_pmu@busy-double-start@vcs1.html
* igt@perf_pmu@busy@rcs0:
- shard-rkl: [ABORT][292] -> [PASS][293]
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-rkl-1/igt@perf_pmu@busy@rcs0.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-6/igt@perf_pmu@busy@rcs0.html
* igt@perf_pmu@render-node-busy-idle@ccs0:
- shard-mtlp: [FAIL][294] ([i915#4349]) -> [PASS][295] +3 similar issues
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-8/igt@perf_pmu@render-node-busy-idle@ccs0.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@perf_pmu@render-node-busy-idle@ccs0.html
* igt@sysfs_timeslice_duration@timeout@vecs0:
- shard-mtlp: [ABORT][296] ([i915#8521]) -> [PASS][297]
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-3/igt@sysfs_timeslice_duration@timeout@vecs0.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@sysfs_timeslice_duration@timeout@vecs0.html
#### Warnings ####
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
- shard-tglu: [WARN][298] ([i915#2681]) -> [FAIL][299] ([i915#2681] / [i915#3591])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
* igt@kms_content_protection@mei_interface:
- shard-dg2: [SKIP][300] ([i915#7118]) -> [SKIP][301] ([i915#7118] / [i915#7162])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg2-3/igt@kms_content_protection@mei_interface.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@kms_content_protection@mei_interface.html
- shard-dg1: [SKIP][302] ([fdo#109300]) -> [SKIP][303] ([i915#7116])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-15/igt@kms_content_protection@mei_interface.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-19/igt@kms_content_protection@mei_interface.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][304] ([fdo#110189] / [i915#3955]) -> [SKIP][305] ([i915#3955])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-rkl-1/igt@kms_fbcon_fbt@psr.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@kms_fbcon_fbt@psr.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-rkl: [SKIP][306] ([fdo#109285]) -> [SKIP][307] ([fdo#109285] / [i915#4098])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][308] ([i915#4070] / [i915#4816]) -> [SKIP][309] ([i915#4816])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_psr@cursor_plane_move:
- shard-dg1: [SKIP][310] ([i915#1072] / [i915#4078]) -> [SKIP][311] ([i915#1072]) +2 similar issues
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-18/igt@kms_psr@cursor_plane_move.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-15/igt@kms_psr@cursor_plane_move.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
[i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6755]: https://gitlab.freedesktop.org/drm/intel/issues/6755
[i915#6763]: https://gitlab.freedesktop.org/drm/intel/issues/6763
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276
[i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
[i915#7691]: https://gitlab.freedesktop.org/drm/intel/issues/7691
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812
[i915#7816]: https://gitlab.freedesktop.org/drm/intel/issues/7816
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7962]: https://gitlab.freedesktop.org/drm/intel/issues/7962
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8229]: https://gitlab.freedesktop.org/drm/intel/issues/8229
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248
[i915#8295]: https://gitlab.freedesktop.org/drm/intel/issues/8295
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8503]: https://gitlab.freedesktop.org/drm/intel/issues/8503
[i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521
[i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617
[i915#8628]: https://gitlab.freedesktop.org/drm/intel/issues/8628
[i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661
[i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717
[i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808
[i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8848]: https://gitlab.freedesktop.org/drm/intel/issues/8848
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7418 -> IGTPW_9526
CI-20190529: 20190529
CI_DRM_13484: 987af50ac0ac94da778b87e53821b17ab6bf92f7 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_9526: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/index.html
IGT_7418: 6fda79854b205a8110157b6915090680538a7249 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/index.html
[-- Attachment #2: Type: text/html, Size: 94855 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for lib/xe_query: add helper getting available VRAM (rev4)
2023-08-07 14:39 ` [igt-dev] ✗ Fi.CI.IGT: failure for lib/xe_query: add helper getting available VRAM (rev4) Patchwork
@ 2023-08-08 10:46 ` Laguna, Lukasz
0 siblings, 0 replies; 6+ messages in thread
From: Laguna, Lukasz @ 2023-08-08 10:46 UTC (permalink / raw)
To: igt-dev, Yedireswarapu, SaiX Nandan, Veesam, RavitejaX,
Marikkar, SanjuX
[-- Attachment #1: Type: text/plain, Size: 90842 bytes --]
On 8/7/2023 16:39, Patchwork wrote:
> Project List - Patchwork *Patch Details*
> *Series:* lib/xe_query: add helper getting available VRAM (rev4)
> *URL:* https://patchwork.freedesktop.org/series/121704/
> *State:* failure
> *Details:*
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/index.html
>
>
> CI Bug Log - changes from IGT_7418_full -> IGTPW_9526_full
>
>
> Summary
>
> *FAILURE*
>
> Serious unknown changes coming with IGTPW_9526_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_9526_full, please notify your bug team to allow them
> to document this new failure mode, which will reduce false positives
> in CI.
>
> External URL:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/index.html
>
>
> Participating hosts (9 -> 9)
>
> No changes in participating hosts
>
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> IGTPW_9526_full:
>
>
> IGT changes
>
>
> Possible regressions
>
> * igt@kms_psr@psr2_primary_mmap_cpu:
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-8/igt@kms_psr@psr2_primary_mmap_cpu.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-4/igt@kms_psr@psr2_primary_mmap_cpu.html>
>
Hello,
Above fail is not related to introduced change.
Regards,
Lukasz
> *
>
>
> Suppressed
>
> The following results come from untrusted machines, tests, or statuses.
> They do not affect the overall result.
>
> * {igt@kms_dsc@dsc-with-output-formats-with-bpc}:
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html>
>
>
> Known issues
>
> Here are the changes found in IGTPW_9526_full that come from known issues:
>
>
> IGT changes
>
>
> Issues hit
>
> *
>
> igt@api_intel_bb@blit-reloc-keep-cache:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@api_intel_bb@blit-reloc-keep-cache.html>
> (i915#8411
> <https://gitlab.freedesktop.org/drm/intel/issues/8411>) +1
> similar issue
> *
>
> igt@api_intel_bb@blit-reloc-purge-cache:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@api_intel_bb@blit-reloc-purge-cache.html>
> (i915#8411 <https://gitlab.freedesktop.org/drm/intel/issues/8411>)
> *
>
> igt@api_intel_bb@crc32:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-4/igt@api_intel_bb@crc32.html>
> (i915#6230 <https://gitlab.freedesktop.org/drm/intel/issues/6230>)
> *
>
> igt@debugfs_test@basic-hwmon:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@debugfs_test@basic-hwmon.html>
> (i915#7456 <https://gitlab.freedesktop.org/drm/intel/issues/7456>)
> *
>
> igt@drm_buddy@drm_buddy_test:
>
> o
>
> shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-snb5/igt@drm_buddy@drm_buddy_test.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> i915#8661 <https://gitlab.freedesktop.org/drm/intel/issues/8661>)
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-6/igt@drm_buddy@drm_buddy_test.html>
> (i915#8661
> <https://gitlab.freedesktop.org/drm/intel/issues/8661>) +1
> similar issue
>
> *
>
> igt@drm_fdinfo@most-busy-check-all@bcs0:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@drm_fdinfo@most-busy-check-all@bcs0.html>
> (i915#8414
> <https://gitlab.freedesktop.org/drm/intel/issues/8414>) +9
> similar issues
> *
>
> igt@drm_fdinfo@most-busy-idle-check-all@ccs0:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-2/igt@drm_fdinfo@most-busy-idle-check-all@ccs0.html>
> (i915#8414
> <https://gitlab.freedesktop.org/drm/intel/issues/8414>) +11
> similar issues
> *
>
> igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html>
> (i915#7742 <https://gitlab.freedesktop.org/drm/intel/issues/7742>)
> *
>
> igt@drm_mm@drm_mm_test:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-6/igt@drm_mm@drm_mm_test.html>
> (i915#8661 <https://gitlab.freedesktop.org/drm/intel/issues/8661>)
> *
>
> igt@feature_discovery@display-3x:
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-2/igt@feature_discovery@display-3x.html>
> (i915#1839
> <https://gitlab.freedesktop.org/drm/intel/issues/1839>) +1
> similar issue
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-4/igt@feature_discovery@display-3x.html>
> (i915#1839 <https://gitlab.freedesktop.org/drm/intel/issues/1839>)
>
> *
>
> igt@gem_bad_reloc@negative-reloc:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-19/igt@gem_bad_reloc@negative-reloc.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/intel/issues/3281>) +1
> similar issue
> *
>
> igt@gem_ccs@ctrl-surf-copy-new-ctx:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy-new-ctx.html>
> (i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098> /
> i915#5325 <https://gitlab.freedesktop.org/drm/intel/issues/5325>)
> *
>
> igt@gem_ccs@suspend-resume:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-8/igt@gem_ccs@suspend-resume.html>
> (i915#5325
> <https://gitlab.freedesktop.org/drm/intel/issues/5325>) +1
> similar issue
> *
>
> igt@gem_ctx_exec@basic-nohangcheck:
>
> o shard-tglu: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html>
> (i915#6268 <https://gitlab.freedesktop.org/drm/intel/issues/6268>)
> *
>
> igt@gem_ctx_persistence@engines-hang@vcs0:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-6/igt@gem_ctx_persistence@engines-hang@vcs0.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-8/igt@gem_ctx_persistence@engines-hang@vcs0.html>
> (i915#2410 <https://gitlab.freedesktop.org/drm/intel/issues/2410>)
> *
>
> igt@gem_ctx_persistence@hostile:
>
> o shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-snb2/igt@gem_ctx_persistence@hostile.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> i915#1099 <https://gitlab.freedesktop.org/drm/intel/issues/1099>)
> *
>
> igt@gem_eio@kms:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg2-11/igt@gem_eio@kms.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-2/igt@gem_eio@kms.html>
> (i915#5784 <https://gitlab.freedesktop.org/drm/intel/issues/5784>)
> *
>
> igt@gem_eio@reset-stress:
>
> o shard-dg1: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-16/igt@gem_eio@reset-stress.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-15/igt@gem_eio@reset-stress.html>
> (i915#5784 <https://gitlab.freedesktop.org/drm/intel/issues/5784>)
> *
>
> igt@gem_exec_fair@basic-none:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@gem_exec_fair@basic-none.html>
> (i915#3539
> <https://gitlab.freedesktop.org/drm/intel/issues/3539> /
> i915#4852
> <https://gitlab.freedesktop.org/drm/intel/issues/4852>) +1
> similar issue
> *
>
> igt@gem_exec_fair@basic-pace-share@rcs0:
>
> o shard-tglu: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-tglu-5/igt@gem_exec_fair@basic-pace-share@rcs0.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html>
> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
> *
>
> igt@gem_exec_fair@basic-sync:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-8/igt@gem_exec_fair@basic-sync.html>
> (i915#4473
> <https://gitlab.freedesktop.org/drm/intel/issues/4473> /
> i915#4771 <https://gitlab.freedesktop.org/drm/intel/issues/4771>)
> *
>
> igt@gem_exec_flush@basic-uc-pro-default:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-17/igt@gem_exec_flush@basic-uc-pro-default.html>
> (i915#3539
> <https://gitlab.freedesktop.org/drm/intel/issues/3539> /
> i915#4852 <https://gitlab.freedesktop.org/drm/intel/issues/4852>)
> *
>
> igt@gem_exec_params@rsvd2-dirt:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@gem_exec_params@rsvd2-dirt.html>
> (fdo#109283
> <https://bugs.freedesktop.org/show_bug.cgi?id=109283> /
> i915#5107 <https://gitlab.freedesktop.org/drm/intel/issues/5107>)
> *
>
> igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/intel/issues/3281>) +4
> similar issues
> *
>
> igt@gem_exec_reloc@basic-gtt-wc-noreloc:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/intel/issues/3281>) +5
> similar issues
> *
>
> igt@gem_exec_reloc@basic-write-read-active:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-1/igt@gem_exec_reloc@basic-write-read-active.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/intel/issues/3281>) +6
> similar issues
> *
>
> igt@gem_exec_schedule@semaphore-power:
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html>
> (i915#7276 <https://gitlab.freedesktop.org/drm/intel/issues/7276>)
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@gem_exec_schedule@semaphore-power.html>
> (i915#4537
> <https://gitlab.freedesktop.org/drm/intel/issues/4537> /
> i915#4812
> <https://gitlab.freedesktop.org/drm/intel/issues/4812>) +1
> similar issue
>
> *
>
> igt@gem_exec_whisper@basic-contexts-forked-all:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-forked-all.html>
> -> TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@gem_exec_whisper@basic-contexts-forked-all.html>
> (i915#7392
> <https://gitlab.freedesktop.org/drm/intel/issues/7392> /
> i915#8628 <https://gitlab.freedesktop.org/drm/intel/issues/8628>)
> *
>
> igt@gem_exec_whisper@basic-fds-priority-all:
>
> o shard-tglu: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-tglu-2/igt@gem_exec_whisper@basic-fds-priority-all.html>
> -> INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-4/igt@gem_exec_whisper@basic-fds-priority-all.html>
> (i915#6755
> <https://gitlab.freedesktop.org/drm/intel/issues/6755> /
> i915#7392 <https://gitlab.freedesktop.org/drm/intel/issues/7392>)
> *
>
> igt@gem_fence_thrash@bo-copy:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@gem_fence_thrash@bo-copy.html>
> (i915#4860
> <https://gitlab.freedesktop.org/drm/intel/issues/4860>) +1
> similar issue
> *
>
> igt@gem_fence_thrash@bo-write-verify-none:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-1/igt@gem_fence_thrash@bo-write-verify-none.html>
> (i915#4860 <https://gitlab.freedesktop.org/drm/intel/issues/4860>)
> *
>
> igt@gem_lmem_swapping@basic:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-6/igt@gem_lmem_swapping@basic.html>
> (i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
> *
>
> igt@gem_lmem_swapping@heavy-verify-multi-ccs:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/intel/issues/4613>) +2
> similar issues
> *
>
> igt@gem_lmem_swapping@verify-ccs:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@gem_lmem_swapping@verify-ccs.html>
> (i915#4613
> <https://gitlab.freedesktop.org/drm/intel/issues/4613>) +1
> similar issue
> *
>
> igt@gem_mmap@bad-offset:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-5/igt@gem_mmap@bad-offset.html>
> (i915#4083 <https://gitlab.freedesktop.org/drm/intel/issues/4083>)
> *
>
> igt@gem_mmap_gtt@basic-read-write-distinct:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@gem_mmap_gtt@basic-read-write-distinct.html>
> (i915#4077
> <https://gitlab.freedesktop.org/drm/intel/issues/4077>) +3
> similar issues
> *
>
> igt@gem_mmap_gtt@hang-user:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-8/igt@gem_mmap_gtt@hang-user.html>
> (i915#4077
> <https://gitlab.freedesktop.org/drm/intel/issues/4077>) +1
> similar issue
> *
>
> igt@gem_mmap_wc@bad-object:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-19/igt@gem_mmap_wc@bad-object.html>
> (i915#4083 <https://gitlab.freedesktop.org/drm/intel/issues/4083>)
> *
>
> igt@gem_mmap_wc@set-cache-level:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-8/igt@gem_mmap_wc@set-cache-level.html>
> (i915#4083
> <https://gitlab.freedesktop.org/drm/intel/issues/4083>) +1
> similar issue
> *
>
> igt@gem_partial_pwrite_pread@write-uncached:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-17/igt@gem_partial_pwrite_pread@write-uncached.html>
> (i915#3282 <https://gitlab.freedesktop.org/drm/intel/issues/3282>)
> *
>
> igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-2/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html>
> (i915#3282 <https://gitlab.freedesktop.org/drm/intel/issues/3282>)
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/intel/issues/3282>) +1
> similar issue
>
> *
>
> igt@gem_pxp@reject-modify-context-protection-off-3:
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-3/igt@gem_pxp@reject-modify-context-protection-off-3.html>
> (i915#4270
> <https://gitlab.freedesktop.org/drm/intel/issues/4270>) +1
> similar issue
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-1/igt@gem_pxp@reject-modify-context-protection-off-3.html>
> (i915#4270
> <https://gitlab.freedesktop.org/drm/intel/issues/4270>) +1
> similar issue
>
> *
>
> igt@gem_pxp@verify-pxp-stale-buf-execution:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-1/igt@gem_pxp@verify-pxp-stale-buf-execution.html>
> (i915#4270
> <https://gitlab.freedesktop.org/drm/intel/issues/4270>) +2
> similar issues
> *
>
> igt@gem_readwrite@write-bad-handle:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-6/igt@gem_readwrite@write-bad-handle.html>
> (i915#3282 <https://gitlab.freedesktop.org/drm/intel/issues/3282>)
> *
>
> igt@gem_render_copy@linear-to-vebox-y-tiled:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-2/igt@gem_render_copy@linear-to-vebox-y-tiled.html>
> (i915#8428
> <https://gitlab.freedesktop.org/drm/intel/issues/8428>) +3
> similar issues
> *
>
> igt@gem_render_copy@y-tiled-to-vebox-linear:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@gem_render_copy@y-tiled-to-vebox-linear.html>
> (i915#5190
> <https://gitlab.freedesktop.org/drm/intel/issues/5190>) +3
> similar issues
> *
>
> igt@gem_set_tiling_vs_blt@tiled-to-untiled:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html>
> (i915#4079 <https://gitlab.freedesktop.org/drm/intel/issues/4079>)
> *
>
> igt@gem_userptr_blits@map-fixed-invalidate-overlap:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html>
> (i915#3297
> <https://gitlab.freedesktop.org/drm/intel/issues/3297> /
> i915#4880 <https://gitlab.freedesktop.org/drm/intel/issues/4880>)
> *
>
> igt@gem_userptr_blits@nohangcheck:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-6/igt@gem_userptr_blits@nohangcheck.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-4/igt@gem_userptr_blits@nohangcheck.html>
> (i915#6268 <https://gitlab.freedesktop.org/drm/intel/issues/6268>)
> *
>
> igt@gem_userptr_blits@readonly-pwrite-unsync:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@gem_userptr_blits@readonly-pwrite-unsync.html>
> (i915#3297 <https://gitlab.freedesktop.org/drm/intel/issues/3297>)
> *
>
> igt@gen7_exec_parse@basic-allocation:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-1/igt@gen7_exec_parse@basic-allocation.html>
> (fdo#109289 <https://bugs.freedesktop.org/show_bug.cgi?id=109289>)
> *
>
> igt@gen9_exec_parse@bb-start-cmd:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-12/igt@gen9_exec_parse@bb-start-cmd.html>
> (i915#2527 <https://gitlab.freedesktop.org/drm/intel/issues/2527>)
> *
>
> igt@gen9_exec_parse@secure-batches:
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-1/igt@gen9_exec_parse@secure-batches.html>
> (i915#2856
> <https://gitlab.freedesktop.org/drm/intel/issues/2856>) +1
> similar issue
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-4/igt@gen9_exec_parse@secure-batches.html>
> (i915#2527 <https://gitlab.freedesktop.org/drm/intel/issues/2527>)
>
> *
>
> igt@gen9_exec_parse@valid-registers:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@gen9_exec_parse@valid-registers.html>
> (i915#2856
> <https://gitlab.freedesktop.org/drm/intel/issues/2856>) +1
> similar issue
> *
>
> igt@i915_module_load@reload-with-fault-injection:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg2-3/igt@i915_module_load@reload-with-fault-injection.html>
> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html>
> (i915#7061
> <https://gitlab.freedesktop.org/drm/intel/issues/7061> /
> i915#8617 <https://gitlab.freedesktop.org/drm/intel/issues/8617>)
> *
>
> igt@i915_module_load@resize-bar:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@i915_module_load@resize-bar.html>
> (i915#6412 <https://gitlab.freedesktop.org/drm/intel/issues/6412>)
> *
>
> igt@i915_pipe_stress@stress-xrgb8888-untiled:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-8/igt@i915_pipe_stress@stress-xrgb8888-untiled.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-1/igt@i915_pipe_stress@stress-xrgb8888-untiled.html>
> (i915#8691 <https://gitlab.freedesktop.org/drm/intel/issues/8691>)
> *
>
> igt@i915_pm_dc@dc6-dpms:
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-1/igt@i915_pm_dc@dc6-dpms.html>
> (i915#3361 <https://gitlab.freedesktop.org/drm/intel/issues/3361>)
>
> o
>
> shard-tglu: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-tglu-9/igt@i915_pm_dc@dc6-dpms.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-10/igt@i915_pm_dc@dc6-dpms.html>
> (i915#3989
> <https://gitlab.freedesktop.org/drm/intel/issues/3989> /
> i915#454 <https://gitlab.freedesktop.org/drm/intel/issues/454>)
>
> *
>
> igt@i915_pm_dc@dc6-psr:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-18/igt@i915_pm_dc@dc6-psr.html>
> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
> *
>
> igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-1/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html>
> (i915#1937 <https://gitlab.freedesktop.org/drm/intel/issues/1937>)
> *
>
> igt@i915_pm_rpm@gem-execbuf-stress-pc8:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-6/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html>
> (fdo#109506 <https://bugs.freedesktop.org/show_bug.cgi?id=109506>)
> *
>
> igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html>
> (i915#1397 <https://gitlab.freedesktop.org/drm/intel/issues/1397>)
> *
>
> igt@i915_pm_rpm@modeset-non-lpsp:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp.html>
> (i915#1397 <https://gitlab.freedesktop.org/drm/intel/issues/1397>)
> *
>
> igt@i915_pm_rpm@modeset-non-lpsp-stress:
>
> o shard-rkl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-rkl-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html>
> (i915#1397 <https://gitlab.freedesktop.org/drm/intel/issues/1397>)
> *
>
> igt@i915_pm_rps@min-max-config-loaded:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-2/igt@i915_pm_rps@min-max-config-loaded.html>
> (i915#6621 <https://gitlab.freedesktop.org/drm/intel/issues/6621>)
> *
>
> igt@i915_selftest@live@sanitycheck:
>
> o shard-snb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-snb5/igt@i915_selftest@live@sanitycheck.html>
> -> ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-snb2/igt@i915_selftest@live@sanitycheck.html>
> (i915#4528 <https://gitlab.freedesktop.org/drm/intel/issues/4528>)
> *
>
> igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html>
> (i915#4212
> <https://gitlab.freedesktop.org/drm/intel/issues/4212>) +1
> similar issue
> *
>
> igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html>
> (i915#5190 <https://gitlab.freedesktop.org/drm/intel/issues/5190>)
> *
>
> igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-4-mc_ccs.html>
> (i915#8502
> <https://gitlab.freedesktop.org/drm/intel/issues/8502> /
> i915#8709
> <https://gitlab.freedesktop.org/drm/intel/issues/8709>) +11
> similar issues
> *
>
> igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs.html>
> (i915#8502
> <https://gitlab.freedesktop.org/drm/intel/issues/8502>) +3
> similar issues
> *
>
> igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs.html>
> (i915#8502
> <https://gitlab.freedesktop.org/drm/intel/issues/8502>) +7
> similar issues
> *
>
> igt@kms_async_flips@crc@pipe-a-hdmi-a-2:
>
> o shard-rkl: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-1/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html>
> (i915#8247
> <https://gitlab.freedesktop.org/drm/intel/issues/8247>) +1
> similar issue
> *
>
> igt@kms_async_flips@crc@pipe-c-hdmi-a-1:
>
> o shard-dg1: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-19/igt@kms_async_flips@crc@pipe-c-hdmi-a-1.html>
> (i915#8247
> <https://gitlab.freedesktop.org/drm/intel/issues/8247>) +3
> similar issues
> *
>
> igt@kms_async_flips@invalid-async-flip:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-3/igt@kms_async_flips@invalid-async-flip.html>
> (i915#6228 <https://gitlab.freedesktop.org/drm/intel/issues/6228>)
> *
>
> igt@kms_atomic@plane-primary-overlay-mutable-zpos:
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html>
> (i915#404 <https://gitlab.freedesktop.org/drm/intel/issues/404>)
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html>
> (i915#404 <https://gitlab.freedesktop.org/drm/intel/issues/404>)
>
> *
>
> igt@kms_atomic_transition@plane-all-modeset-transition:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-6/igt@kms_atomic_transition@plane-all-modeset-transition.html>
> (i915#1769 <https://gitlab.freedesktop.org/drm/intel/issues/1769>)
> *
>
> igt@kms_big_fb@4-tiled-8bpp-rotate-0:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html>
> (i915#5286 <https://gitlab.freedesktop.org/drm/intel/issues/5286>)
> *
>
> igt@kms_big_fb@linear-8bpp-rotate-0:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-8/igt@kms_big_fb@linear-8bpp-rotate-0.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-8/igt@kms_big_fb@linear-8bpp-rotate-0.html>
> (i915#5138 <https://gitlab.freedesktop.org/drm/intel/issues/5138>)
> *
>
> igt@kms_big_fb@x-tiled-32bpp-rotate-90:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-8/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html>
> (fdo#111614
> <https://bugs.freedesktop.org/show_bug.cgi?id=111614>) +2
> similar issues
> *
>
> igt@kms_big_fb@yf-tiled-8bpp-rotate-0:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html>
> (fdo#111615
> <https://bugs.freedesktop.org/show_bug.cgi?id=111615>) +4
> similar issues
> *
>
> igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html>
> (i915#4538
> <https://gitlab.freedesktop.org/drm/intel/issues/4538> /
> i915#5190
> <https://gitlab.freedesktop.org/drm/intel/issues/5190>) +1
> similar issue
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html>
> (fdo#110723 <https://bugs.freedesktop.org/show_bug.cgi?id=110723>)
>
> *
>
> igt@kms_big_joiner@invalid-modeset:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-2/igt@kms_big_joiner@invalid-modeset.html>
> (i915#2705 <https://gitlab.freedesktop.org/drm/intel/issues/2705>)
> *
>
> igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html>
> (i915#3886
> <https://gitlab.freedesktop.org/drm/intel/issues/3886> /
> i915#6095
> <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +2
> similar issues
> *
>
> igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_dg2_mc_ccs.html>
> (i915#5354
> <https://gitlab.freedesktop.org/drm/intel/issues/5354> /
> i915#6095
> <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +5
> similar issues
> *
>
> igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs_cc:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-19/igt@kms_ccs@pipe-a-crc-primary-basic-4_tiled_mtl_rc_ccs_cc.html>
> (i915#5354
> <https://gitlab.freedesktop.org/drm/intel/issues/5354> /
> i915#6095
> <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1
> similar issue
> *
>
> igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html>
> (i915#5354
> <https://gitlab.freedesktop.org/drm/intel/issues/5354> /
> i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>)
> *
>
> igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-4/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html>
> (i915#3886
> <https://gitlab.freedesktop.org/drm/intel/issues/3886> /
> i915#5354
> <https://gitlab.freedesktop.org/drm/intel/issues/5354> /
> i915#6095
> <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1
> similar issue
> *
>
> igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_rc_ccs_cc:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_rc_ccs_cc.html>
> (i915#3689
> <https://gitlab.freedesktop.org/drm/intel/issues/3689> /
> i915#3886
> <https://gitlab.freedesktop.org/drm/intel/issues/3886> /
> i915#5354
> <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +2
> similar issues
> *
>
> igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-6/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html>
> (i915#3689
> <https://gitlab.freedesktop.org/drm/intel/issues/3689> /
> i915#5354
> <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +4
> similar issues
> *
>
> igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-1/igt@kms_ccs@pipe-d-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html>
> (i915#5354
> <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +11
> similar issues
> *
>
> igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_gen12_rc_ccs:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-1/igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_gen12_rc_ccs.html>
> (i915#6095
> <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +16
> similar issues
> *
>
> igt@kms_cdclk@mode-transition-all-outputs:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-2/igt@kms_cdclk@mode-transition-all-outputs.html>
> (i915#3742 <https://gitlab.freedesktop.org/drm/intel/issues/3742>)
> *
>
> igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html>
> (i915#4087
> <https://gitlab.freedesktop.org/drm/intel/issues/4087> /
> i915#7213
> <https://gitlab.freedesktop.org/drm/intel/issues/7213>) +3
> similar issues
> *
>
> igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html>
> (i915#4087
> <https://gitlab.freedesktop.org/drm/intel/issues/4087>) +3
> similar issues
> *
>
> igt@kms_chamelium_color@ctm-0-75:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@kms_chamelium_color@ctm-0-75.html>
> (fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +1
> similar issue
> *
>
> igt@kms_chamelium_color@ctm-blue-to-red:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-2/igt@kms_chamelium_color@ctm-blue-to-red.html>
> (fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
> *
>
> igt@kms_chamelium_color@ctm-green-to-red:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-6/igt@kms_chamelium_color@ctm-green-to-red.html>
> (fdo#111827 <https://bugs.freedesktop.org/show_bug.cgi?id=111827>)
> *
>
> igt@kms_chamelium_frames@dp-crc-fast:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-1/igt@kms_chamelium_frames@dp-crc-fast.html>
> (i915#7828
> <https://gitlab.freedesktop.org/drm/intel/issues/7828>) +2
> similar issues
> *
>
> igt@kms_chamelium_hpd@dp-hpd-after-suspend:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html>
> (i915#7828 <https://gitlab.freedesktop.org/drm/intel/issues/7828>)
> *
>
> igt@kms_chamelium_hpd@dp-hpd-storm:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@kms_chamelium_hpd@dp-hpd-storm.html>
> (i915#7828
> <https://gitlab.freedesktop.org/drm/intel/issues/7828>) +2
> similar issues
> *
>
> igt@kms_chamelium_hpd@dp-hpd-storm-disable:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-14/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html>
> (i915#7828
> <https://gitlab.freedesktop.org/drm/intel/issues/7828>) +1
> similar issue
> *
>
> igt@kms_color@deep-color:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-2/igt@kms_color@deep-color.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/intel/issues/3555>) +2
> similar issues
> *
>
> igt@kms_content_protection@atomic@pipe-a-dp-4:
>
> o shard-dg2: NOTRUN -> TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html>
> (i915#7173 <https://gitlab.freedesktop.org/drm/intel/issues/7173>)
> *
>
> igt@kms_content_protection@dp-mst-lic-type-0:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@kms_content_protection@dp-mst-lic-type-0.html>
> (i915#3299 <https://gitlab.freedesktop.org/drm/intel/issues/3299>)
> *
>
> igt@kms_content_protection@dp-mst-type-1:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-2/igt@kms_content_protection@dp-mst-type-1.html>
> (i915#3116 <https://gitlab.freedesktop.org/drm/intel/issues/3116>)
> *
>
> igt@kms_content_protection@uevent:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@kms_content_protection@uevent.html>
> (i915#7118 <https://gitlab.freedesktop.org/drm/intel/issues/7118>)
> *
>
> igt@kms_cursor_crc@cursor-offscreen-512x512:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html>
> (i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>)
> *
>
> igt@kms_cursor_crc@cursor-random-512x170:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html>
> (i915#3359 <https://gitlab.freedesktop.org/drm/intel/issues/3359>)
> *
>
> igt@kms_cursor_crc@cursor-sliding-32x32:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-12/igt@kms_cursor_crc@cursor-sliding-32x32.html>
> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555>)
> *
>
> igt@kms_cursor_crc@cursor-sliding-max-size:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-max-size.html>
> (i915#8814 <https://gitlab.freedesktop.org/drm/intel/issues/8814>)
> *
>
> igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html>
> (fdo#109274
> <https://bugs.freedesktop.org/show_bug.cgi?id=109274> /
> i915#5354 <https://gitlab.freedesktop.org/drm/intel/issues/5354>)
> *
>
> igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html>
> (i915#4103 <https://gitlab.freedesktop.org/drm/intel/issues/4103>)
> *
>
> igt@kms_cursor_legacy@cursor-vs-flip-toggle:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-4/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-2/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html>
> (i915#8248 <https://gitlab.freedesktop.org/drm/intel/issues/8248>)
> *
>
> igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions.html>
> (i915#3546
> <https://gitlab.freedesktop.org/drm/intel/issues/3546>) +1
> similar issue
> *
>
> igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html>
> (fdo#111767
> <https://bugs.freedesktop.org/show_bug.cgi?id=111767> /
> fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825>)
> *
>
> igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
>
> o shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-snb4/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> fdo#111767
> <https://bugs.freedesktop.org/show_bug.cgi?id=111767>) +2
> similar issues
> *
>
> igt@kms_draw_crc@draw-method-mmap-wc:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-wc.html>
> (i915#8812 <https://gitlab.freedesktop.org/drm/intel/issues/8812>)
> *
>
> igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-1/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html>
> (fdo#109274 <https://bugs.freedesktop.org/show_bug.cgi?id=109274>)
> *
>
> igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html>
> (fdo#109274
> <https://bugs.freedesktop.org/show_bug.cgi?id=109274> /
> fdo#111767 <https://bugs.freedesktop.org/show_bug.cgi?id=111767>)
> *
>
> igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2:
>
> o shard-glk: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html>
> (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
> *
>
> igt@kms_flip@2x-flip-vs-fences:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@kms_flip@2x-flip-vs-fences.html>
> (i915#8381 <https://gitlab.freedesktop.org/drm/intel/issues/8381>)
> *
>
> igt@kms_flip@2x-flip-vs-suspend:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-6/igt@kms_flip@2x-flip-vs-suspend.html>
> (i915#3637
> <https://gitlab.freedesktop.org/drm/intel/issues/3637>) +5
> similar issues
> *
>
> igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html>
> (fdo#111825
> <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +1
> similar issue
> *
>
> igt@kms_flip@wf_vblank-ts-check@a-edp1:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-3/igt@kms_flip@wf_vblank-ts-check@a-edp1.html>
> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-8/igt@kms_flip@wf_vblank-ts-check@a-edp1.html>
> (i915#1982 <https://gitlab.freedesktop.org/drm/intel/issues/1982>)
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html>
> (i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>)
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html>
> (i915#2672
> <https://gitlab.freedesktop.org/drm/intel/issues/2672>) +1
> similar issue
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-default-mode.html>
> (i915#2672 <https://gitlab.freedesktop.org/drm/intel/issues/2672>)
> *
>
> igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt.html>
> (i915#8708
> <https://gitlab.freedesktop.org/drm/intel/issues/8708>) +1
> similar issue
> *
>
> igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite:
>
> o shard-dg2: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-pwrite.html>
> (i915#6880 <https://gitlab.freedesktop.org/drm/intel/issues/6880>)
> *
>
> igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html>
> (i915#8708
> <https://gitlab.freedesktop.org/drm/intel/issues/8708>) +3
> similar issues
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html>
> (fdo#109280
> <https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +4
> similar issues
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html>
> (i915#1825
> <https://gitlab.freedesktop.org/drm/intel/issues/1825>) +18
> similar issues
> *
>
> igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html>
> (i915#6880
> <https://gitlab.freedesktop.org/drm/intel/issues/6880>) +1
> similar issue
> *
>
> igt@kms_frontbuffer_tracking@fbc-tiling-y:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html>
> (i915#5460 <https://gitlab.freedesktop.org/drm/intel/issues/5460>)
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html>
> (i915#3023
> <https://gitlab.freedesktop.org/drm/intel/issues/3023>) +6
> similar issues
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html>
> (fdo#111825 <https://bugs.freedesktop.org/show_bug.cgi?id=111825>)
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html>
> (i915#5354
> <https://gitlab.freedesktop.org/drm/intel/issues/5354>) +24
> similar issues
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html>
> (i915#3458
> <https://gitlab.freedesktop.org/drm/intel/issues/3458>) +6
> similar issues
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
>
> o shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-snb5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +121
> similar issues
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html>
> (fdo#111825
> <https://bugs.freedesktop.org/show_bug.cgi?id=111825> /
> i915#1825
> <https://gitlab.freedesktop.org/drm/intel/issues/1825>) +13
> similar issues
> *
>
> igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html>
> (i915#3458 <https://gitlab.freedesktop.org/drm/intel/issues/3458>)
> *
>
> igt@kms_hdr@bpc-switch-suspend:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@kms_hdr@bpc-switch-suspend.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/intel/issues/3555> /
> i915#8228 <https://gitlab.freedesktop.org/drm/intel/issues/8228>)
> *
>
> igt@kms_hdr@invalid-hdr:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@kms_hdr@invalid-hdr.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/intel/issues/3555> /
> i915#8228 <https://gitlab.freedesktop.org/drm/intel/issues/8228>)
> *
>
> igt@kms_hdr@invalid-metadata-sizes:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-2/igt@kms_hdr@invalid-metadata-sizes.html>
> (i915#8228 <https://gitlab.freedesktop.org/drm/intel/issues/8228>)
> *
>
> igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-4/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html>
> (fdo#109289
> <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) +2
> similar issues
> *
>
> igt@kms_plane@pixel-format-source-clamping@pipe-b-planes:
>
> o shard-mtlp: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-2/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-4/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html>
> (i915#1623 <https://gitlab.freedesktop.org/drm/intel/issues/1623>)
> *
>
> igt@kms_plane_scaling@intel-max-src-size:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@kms_plane_scaling@intel-max-src-size.html>
> (i915#6953 <https://gitlab.freedesktop.org/drm/intel/issues/6953>)
> *
>
> igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3.html>
> (i915#5176
> <https://gitlab.freedesktop.org/drm/intel/issues/5176>) +11
> similar issues
> *
>
> igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-1/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-d-edp-1.html>
> (i915#5176
> <https://gitlab.freedesktop.org/drm/intel/issues/5176>) +3
> similar issues
> *
>
> igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-a-hdmi-a-1:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-a-hdmi-a-1.html>
> (i915#5176
> <https://gitlab.freedesktop.org/drm/intel/issues/5176>) +3
> similar issues
> *
>
> igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-19/igt@kms_plane_scaling@plane-upscale-with-rotation-20x20@pipe-a-hdmi-a-1.html>
> (i915#5176
> <https://gitlab.freedesktop.org/drm/intel/issues/5176>) +11
> similar issues
> *
>
> igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html>
> (i915#5235
> <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +1
> similar issue
> *
>
> igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1:
>
> o shard-dg1: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-1.html>
> (i915#5235
> <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +7
> similar issues
> *
>
> igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-b-edp-1.html>
> (i915#5235
> <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +3
> similar issues
> *
>
> igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html>
> (i915#5235
> <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +11
> similar issues
> *
>
> igt@kms_prime@basic-crc-vgem:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-1/igt@kms_prime@basic-crc-vgem.html>
> (i915#6524
> <https://gitlab.freedesktop.org/drm/intel/issues/6524> /
> i915#6805 <https://gitlab.freedesktop.org/drm/intel/issues/6805>)
> *
>
> igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html>
> (fdo#111068
> <https://bugs.freedesktop.org/show_bug.cgi?id=111068> /
> i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
> *
>
> igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html>
> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
> *
>
> igt@kms_psr@cursor_blt:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@kms_psr@cursor_blt.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/intel/issues/1072>) +1
> similar issue
> *
>
> igt@kms_psr@psr2_cursor_mmap_cpu:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-5/igt@kms_psr@psr2_cursor_mmap_cpu.html>
> (fdo#110189
> <https://bugs.freedesktop.org/show_bug.cgi?id=110189>) +2
> similar issues
> *
>
> igt@kms_psr@psr2_sprite_blt:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@kms_psr@psr2_sprite_blt.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/intel/issues/1072>) +3
> similar issues
> *
>
> igt@kms_rotation_crc@bad-pixel-format:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@kms_rotation_crc@bad-pixel-format.html>
> (i915#4235
> <https://gitlab.freedesktop.org/drm/intel/issues/4235>) +5
> similar issues
> *
>
> igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html>
> (i915#5289 <https://gitlab.freedesktop.org/drm/intel/issues/5289>)
> *
>
> igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html>
> (fdo#111615
> <https://bugs.freedesktop.org/show_bug.cgi?id=111615> /
> i915#5289 <https://gitlab.freedesktop.org/drm/intel/issues/5289>)
> *
>
> igt@kms_setmode@invalid-clone-single-crtc:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@kms_setmode@invalid-clone-single-crtc.html>
> (i915#3555
> <https://gitlab.freedesktop.org/drm/intel/issues/3555> /
> i915#4098 <https://gitlab.freedesktop.org/drm/intel/issues/4098>)
> *
>
> igt@kms_tv_load_detect@load-detect:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-1/igt@kms_tv_load_detect@load-detect.html>
> (fdo#109309 <https://bugs.freedesktop.org/show_bug.cgi?id=109309>)
> *
>
> igt@kms_universal_plane@universal-plane-pipe-c-functional:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-4/igt@kms_universal_plane@universal-plane-pipe-c-functional.html>
> (i915#4070
> <https://gitlab.freedesktop.org/drm/intel/issues/4070> /
> i915#6768
> <https://gitlab.freedesktop.org/drm/intel/issues/6768>) +2
> similar issues
> *
>
> igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend:
>
> o shard-dg2: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html>
> (fdo#103375 <https://bugs.freedesktop.org/show_bug.cgi?id=103375>)
> *
>
> igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend:
>
> o shard-dg2: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg2-5/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-5/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html>
> (fdo#103375
> <https://bugs.freedesktop.org/show_bug.cgi?id=103375>) +3
> similar issues
> *
>
> igt@kms_vblank@pipe-d-accuracy-idle:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-1/igt@kms_vblank@pipe-d-accuracy-idle.html>
> (i915#4070
> <https://gitlab.freedesktop.org/drm/intel/issues/4070> /
> i915#533 <https://gitlab.freedesktop.org/drm/intel/issues/533>
> / i915#6768
> <https://gitlab.freedesktop.org/drm/intel/issues/6768>) +1
> similar issue
> *
>
> igt@kms_vrr@flip-suspend:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-6/igt@kms_vrr@flip-suspend.html>
> (i915#8808 <https://gitlab.freedesktop.org/drm/intel/issues/8808>)
> *
>
> igt@kms_vrr@flipline:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-1/igt@kms_vrr@flipline.html>
> (i915#3555 <https://gitlab.freedesktop.org/drm/intel/issues/3555>)
> *
>
> igt@kms_writeback@writeback-invalid-parameters:
>
> o
>
> shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@kms_writeback@writeback-invalid-parameters.html>
> (i915#2437 <https://gitlab.freedesktop.org/drm/intel/issues/2437>)
>
> o
>
> shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-6/igt@kms_writeback@writeback-invalid-parameters.html>
> (i915#2437 <https://gitlab.freedesktop.org/drm/intel/issues/2437>)
>
> *
>
> igt@perf@gen8-unprivileged-single-ctx-counters:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@perf@gen8-unprivileged-single-ctx-counters.html>
> (i915#2436 <https://gitlab.freedesktop.org/drm/intel/issues/2436>)
> *
>
> igt@perf@global-sseu-config-invalid:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-8/igt@perf@global-sseu-config-invalid.html>
> (i915#7387 <https://gitlab.freedesktop.org/drm/intel/issues/7387>)
> *
>
> igt@prime_udl:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-1/igt@prime_udl.html>
> (fdo#109291 <https://bugs.freedesktop.org/show_bug.cgi?id=109291>)
> *
>
> igt@prime_vgem@basic-fence-mmap:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-6/igt@prime_vgem@basic-fence-mmap.html>
> (i915#3708
> <https://gitlab.freedesktop.org/drm/intel/issues/3708> /
> i915#4077 <https://gitlab.freedesktop.org/drm/intel/issues/4077>)
> *
>
> igt@prime_vgem@fence-write-hang:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-6/igt@prime_vgem@fence-write-hang.html>
> (i915#3708 <https://gitlab.freedesktop.org/drm/intel/issues/3708>)
> *
>
> igt@runner@aborted:
>
> o shard-snb: NOTRUN -> (FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-snb7/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-snb7/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-snb7/igt@runner@aborted.html>)
> (i915#7812
> <https://gitlab.freedesktop.org/drm/intel/issues/7812> /
> i915#8848 <https://gitlab.freedesktop.org/drm/intel/issues/8848>)
> *
>
> igt@sysfs_heartbeat_interval@nopreempt@vcs0:
>
> o shard-mtlp: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-7/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html>
> (i915#6015
> <https://gitlab.freedesktop.org/drm/intel/issues/6015>) +5
> similar issues
> *
>
> igt@v3d/v3d_submit_cl@bad-multisync-out-sync:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-2/igt@v3d/v3d_submit_cl@bad-multisync-out-sync.html>
> (i915#2575
> <https://gitlab.freedesktop.org/drm/intel/issues/2575>) +5
> similar issues
> *
>
> igt@v3d/v3d_submit_cl@bad-multisync-pad:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-1/igt@v3d/v3d_submit_cl@bad-multisync-pad.html>
> (i915#2575
> <https://gitlab.freedesktop.org/drm/intel/issues/2575>) +4
> similar issues
> *
>
> igt@v3d/v3d_submit_csd@valid-multisync-submission:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-2/igt@v3d/v3d_submit_csd@valid-multisync-submission.html>
> (fdo#109315
> <https://bugs.freedesktop.org/show_bug.cgi?id=109315>) +3
> similar issues
> *
>
> igt@v3d/v3d_wait_bo@bad-pad:
>
> o shard-tglu: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-8/igt@v3d/v3d_wait_bo@bad-pad.html>
> (fdo#109315
> <https://bugs.freedesktop.org/show_bug.cgi?id=109315> /
> i915#2575
> <https://gitlab.freedesktop.org/drm/intel/issues/2575>) +1
> similar issue
> *
>
> igt@vc4/vc4_label_bo@set-bad-name:
>
> o shard-mtlp: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@vc4/vc4_label_bo@set-bad-name.html>
> (i915#7711
> <https://gitlab.freedesktop.org/drm/intel/issues/7711>) +2
> similar issues
> *
>
> igt@vc4/vc4_tiling@get-bad-flags:
>
> o shard-dg2: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-1/igt@vc4/vc4_tiling@get-bad-flags.html>
> (i915#7711
> <https://gitlab.freedesktop.org/drm/intel/issues/7711>) +1
> similar issue
> *
>
> igt@vc4/vc4_wait_bo@unused-bo-1ns:
>
> o shard-rkl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@vc4/vc4_wait_bo@unused-bo-1ns.html>
> (i915#7711
> <https://gitlab.freedesktop.org/drm/intel/issues/7711>) +3
> similar issues
>
>
> Possible fixes
>
> *
>
> igt@gem_ctx_exec@basic-nohangcheck:
>
> o shard-rkl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-rkl-2/igt@gem_ctx_exec@basic-nohangcheck.html>
> (i915#6268
> <https://gitlab.freedesktop.org/drm/intel/issues/6268>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html>
> *
>
> igt@gem_ctx_persistence@saturated-hostile@vecs0:
>
> o shard-mtlp: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-1/igt@gem_ctx_persistence@saturated-hostile@vecs0.html>
> (i915#7816
> <https://gitlab.freedesktop.org/drm/intel/issues/7816>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-7/igt@gem_ctx_persistence@saturated-hostile@vecs0.html>
> +2 similar issues
> *
>
> igt@gem_eio@in-flight-10ms:
>
> o shard-mtlp: ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-2/igt@gem_eio@in-flight-10ms.html>
> (i915#8503
> <https://gitlab.freedesktop.org/drm/intel/issues/8503>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-1/igt@gem_eio@in-flight-10ms.html>
> *
>
> igt@gem_eio@unwedge-stress:
>
> o shard-dg1: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-19/igt@gem_eio@unwedge-stress.html>
> (i915#5784
> <https://gitlab.freedesktop.org/drm/intel/issues/5784>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-17/igt@gem_eio@unwedge-stress.html>
> *
>
> igt@gem_exec_fair@basic-none-solo@rcs0:
>
> o shard-apl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html>
> +1 similar issue
> *
>
> igt@gem_exec_fair@basic-pace-share@rcs0:
>
> o
>
> shard-glk: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-glk5/igt@gem_exec_fair@basic-pace-share@rcs0.html>
>
> o
>
> shard-rkl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html>
>
> *
>
> igt@gem_exec_flush@basic-wb-ro-default:
>
> o shard-snb: ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-snb7/igt@gem_exec_flush@basic-wb-ro-default.html>
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-snb4/igt@gem_exec_flush@basic-wb-ro-default.html>
> +1 similar issue
> *
>
> igt@gem_mmap_offset@clear@smem0:
>
> o shard-dg1: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-14/igt@gem_mmap_offset@clear@smem0.html>
> (i915#7962
> <https://gitlab.freedesktop.org/drm/intel/issues/7962>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-19/igt@gem_mmap_offset@clear@smem0.html>
> *
>
> igt@gem_ppgtt@blt-vs-render-ctxn:
>
> o shard-snb: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-snb6/igt@gem_ppgtt@blt-vs-render-ctxn.html>
> (i915#8295
> <https://gitlab.freedesktop.org/drm/intel/issues/8295>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-snb5/igt@gem_ppgtt@blt-vs-render-ctxn.html>
> *
>
> igt@gem_softpin@allocator-evict@vecs0:
>
> o shard-dg1: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-13/igt@gem_softpin@allocator-evict@vecs0.html>
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-14/igt@gem_softpin@allocator-evict@vecs0.html>
> *
>
> igt@i915_pm_rc6_residency@rc6-accuracy:
>
> o shard-mtlp: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-1/igt@i915_pm_rc6_residency@rc6-accuracy.html>
> (fdo#109289
> <https://bugs.freedesktop.org/show_bug.cgi?id=109289> /
> i915#8403
> <https://gitlab.freedesktop.org/drm/intel/issues/8403>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@i915_pm_rc6_residency@rc6-accuracy.html>
> *
>
> igt@i915_pm_rc6_residency@rc6-idle@rcs0:
>
> o shard-tglu: WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html>
> (i915#2681
> <https://gitlab.freedesktop.org/drm/intel/issues/2681>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html>
> *
>
> igt@i915_pm_rpm@basic-pci-d3-state:
>
> o shard-dg1: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-13/igt@i915_pm_rpm@basic-pci-d3-state.html>
> (i915#7691
> <https://gitlab.freedesktop.org/drm/intel/issues/7691>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-19/igt@i915_pm_rpm@basic-pci-d3-state.html>
> *
>
> igt@i915_pm_rpm@cursor:
>
> o shard-dg1: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-14/igt@i915_pm_rpm@cursor.html>
> (i915#7940
> <https://gitlab.freedesktop.org/drm/intel/issues/7940>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-12/igt@i915_pm_rpm@cursor.html>
> +2 similar issues
> *
>
> igt@i915_pm_rpm@dpms-lpsp:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-13/igt@i915_pm_rpm@dpms-lpsp.html>
> (i915#1397
> <https://gitlab.freedesktop.org/drm/intel/issues/1397>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-19/igt@i915_pm_rpm@dpms-lpsp.html>
> +1 similar issue
> *
>
> igt@i915_pm_rpm@i2c:
>
> o shard-dg2: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg2-2/igt@i915_pm_rpm@i2c.html>
> (i915#8717
> <https://gitlab.freedesktop.org/drm/intel/issues/8717>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@i915_pm_rpm@i2c.html>
> *
>
> igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html>
> (i915#1397
> <https://gitlab.freedesktop.org/drm/intel/issues/1397>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-2/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html>
> *
>
> igt@i915_pm_rps@reset:
>
> o
>
> shard-dg2: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg2-11/igt@i915_pm_rps@reset.html>
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-8/igt@i915_pm_rps@reset.html>
>
> o
>
> shard-dg1: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-19/igt@i915_pm_rps@reset.html>
> (i915#8229
> <https://gitlab.freedesktop.org/drm/intel/issues/8229>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-14/igt@i915_pm_rps@reset.html>
>
> *
>
> igt@i915_selftest@live@gt_mocs:
>
> o shard-mtlp: DMESG-FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-7/igt@i915_selftest@live@gt_mocs.html>
> (i915#7059
> <https://gitlab.freedesktop.org/drm/intel/issues/7059>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-4/igt@i915_selftest@live@gt_mocs.html>
> *
>
> igt@i915_selftest@live@workarounds:
>
> o shard-mtlp: DMESG-FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-7/igt@i915_selftest@live@workarounds.html>
> (i915#6763
> <https://gitlab.freedesktop.org/drm/intel/issues/6763>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-4/igt@i915_selftest@live@workarounds.html>
> *
>
> igt@i915_suspend@basic-s3-without-i915:
>
> o shard-dg2: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg2-11/igt@i915_suspend@basic-s3-without-i915.html>
> (fdo#103375
> <https://bugs.freedesktop.org/show_bug.cgi?id=103375>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-3/igt@i915_suspend@basic-s3-without-i915.html>
> +2 similar issues
> *
>
> igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1:
>
> o shard-glk: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html>
> (i915#2521
> <https://gitlab.freedesktop.org/drm/intel/issues/2521>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-glk3/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-hdmi-a-1.html>
> *
>
> igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
>
> o shard-mtlp: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html>
> (i915#3743
> <https://gitlab.freedesktop.org/drm/intel/issues/3743>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html>
> +2 similar issues
> *
>
> igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
>
> o shard-apl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html>
> (i915#2346
> <https://gitlab.freedesktop.org/drm/intel/issues/2346>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html>
> *
>
> igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1:
>
> o shard-glk: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-glk2/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html>
> (i915#2122
> <https://gitlab.freedesktop.org/drm/intel/issues/2122>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-glk5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html>
> *
>
> igt@kms_plane@pixel-format@pipe-b-planes:
>
> o shard-mtlp: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-7/igt@kms_plane@pixel-format@pipe-b-planes.html>
> (i915#1623
> <https://gitlab.freedesktop.org/drm/intel/issues/1623>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@kms_plane@pixel-format@pipe-b-planes.html>
> *
>
> igt@kms_psr@psr2_sprite_plane_move:
>
> o shard-mtlp: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-6/igt@kms_psr@psr2_sprite_plane_move.html>
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-2/igt@kms_psr@psr2_sprite_plane_move.html>
> *
>
> igt@perf_pmu@all-busy-idle-check-all:
>
> o
>
> shard-dg2: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg2-10/igt@perf_pmu@all-busy-idle-check-all.html>
> (i915#5234
> <https://gitlab.freedesktop.org/drm/intel/issues/5234>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-6/igt@perf_pmu@all-busy-idle-check-all.html>
>
> o
>
> shard-dg1: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-15/igt@perf_pmu@all-busy-idle-check-all.html>
> (i915#5234
> <https://gitlab.freedesktop.org/drm/intel/issues/5234>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-18/igt@perf_pmu@all-busy-idle-check-all.html>
>
> o
>
> shard-mtlp: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-8/igt@perf_pmu@all-busy-idle-check-all.html>
> (i915#5234
> <https://gitlab.freedesktop.org/drm/intel/issues/5234>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@perf_pmu@all-busy-idle-check-all.html>
>
> *
>
> igt@perf_pmu@busy-double-start@ccs1:
>
> o shard-dg2: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg2-5/igt@perf_pmu@busy-double-start@ccs1.html>
> (i915#4349
> <https://gitlab.freedesktop.org/drm/intel/issues/4349>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-1/igt@perf_pmu@busy-double-start@ccs1.html>
> +9 similar issues
> *
>
> igt@perf_pmu@busy-double-start@vcs1:
>
> o shard-dg1: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-19/igt@perf_pmu@busy-double-start@vcs1.html>
> (i915#4349
> <https://gitlab.freedesktop.org/drm/intel/issues/4349>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-12/igt@perf_pmu@busy-double-start@vcs1.html>
> +3 similar issues
> *
>
> igt@perf_pmu@busy@rcs0:
>
> o shard-rkl: ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-rkl-1/igt@perf_pmu@busy@rcs0.html>
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-6/igt@perf_pmu@busy@rcs0.html>
> *
>
> igt@perf_pmu@render-node-busy-idle@ccs0:
>
> o shard-mtlp: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-8/igt@perf_pmu@render-node-busy-idle@ccs0.html>
> (i915#4349
> <https://gitlab.freedesktop.org/drm/intel/issues/4349>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-3/igt@perf_pmu@render-node-busy-idle@ccs0.html>
> +3 similar issues
> *
>
> igt@sysfs_timeslice_duration@timeout@vecs0:
>
> o shard-mtlp: ABORT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-mtlp-3/igt@sysfs_timeslice_duration@timeout@vecs0.html>
> (i915#8521
> <https://gitlab.freedesktop.org/drm/intel/issues/8521>) ->
> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-mtlp-5/igt@sysfs_timeslice_duration@timeout@vecs0.html>
>
>
> Warnings
>
> *
>
> igt@i915_pm_rc6_residency@rc6-idle@vecs0:
>
> o shard-tglu: WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html>
> (i915#2681
> <https://gitlab.freedesktop.org/drm/intel/issues/2681>) ->
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html>
> (i915#2681
> <https://gitlab.freedesktop.org/drm/intel/issues/2681> /
> i915#3591 <https://gitlab.freedesktop.org/drm/intel/issues/3591>)
> *
>
> igt@kms_content_protection@mei_interface:
>
> o
>
> shard-dg2: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg2-3/igt@kms_content_protection@mei_interface.html>
> (i915#7118
> <https://gitlab.freedesktop.org/drm/intel/issues/7118>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg2-11/igt@kms_content_protection@mei_interface.html>
> (i915#7118
> <https://gitlab.freedesktop.org/drm/intel/issues/7118> /
> i915#7162 <https://gitlab.freedesktop.org/drm/intel/issues/7162>)
>
> o
>
> shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-15/igt@kms_content_protection@mei_interface.html>
> (fdo#109300
> <https://bugs.freedesktop.org/show_bug.cgi?id=109300>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-19/igt@kms_content_protection@mei_interface.html>
> (i915#7116 <https://gitlab.freedesktop.org/drm/intel/issues/7116>)
>
> *
>
> igt@kms_fbcon_fbt@psr:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-rkl-1/igt@kms_fbcon_fbt@psr.html>
> (fdo#110189
> <https://bugs.freedesktop.org/show_bug.cgi?id=110189> /
> i915#3955
> <https://gitlab.freedesktop.org/drm/intel/issues/3955>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@kms_fbcon_fbt@psr.html>
> (i915#3955 <https://gitlab.freedesktop.org/drm/intel/issues/3955>)
> *
>
> igt@kms_force_connector_basic@force-load-detect:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html>
> (fdo#109285
> <https://bugs.freedesktop.org/show_bug.cgi?id=109285>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html>
> (fdo#109285
> <https://bugs.freedesktop.org/show_bug.cgi?id=109285> /
> i915#4098 <https://gitlab.freedesktop.org/drm/intel/issues/4098>)
> *
>
> igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
>
> o shard-rkl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html>
> (i915#4070
> <https://gitlab.freedesktop.org/drm/intel/issues/4070> /
> i915#4816
> <https://gitlab.freedesktop.org/drm/intel/issues/4816>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html>
> (i915#4816 <https://gitlab.freedesktop.org/drm/intel/issues/4816>)
> *
>
> igt@kms_psr@cursor_plane_move:
>
> o shard-dg1: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7418/shard-dg1-18/igt@kms_psr@cursor_plane_move.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/intel/issues/1072> /
> i915#4078
> <https://gitlab.freedesktop.org/drm/intel/issues/4078>) ->
> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/shard-dg1-15/igt@kms_psr@cursor_plane_move.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/intel/issues/1072>) +2
> similar issues
>
> {name}: This element is suppressed. This means it is ignored when
> computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
>
> Build changes
>
> * CI: CI-20190529 -> None
> * IGT: IGT_7418 -> IGTPW_9526
>
> CI-20190529: 20190529
> CI_DRM_13484: 987af50ac0ac94da778b87e53821b17ab6bf92f7 @
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_9526: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9526/index.html
> IGT_7418: 6fda79854b205a8110157b6915090680538a7249 @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>
[-- Attachment #2: Type: text/html, Size: 122281 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-08-08 10:47 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-08-07 9:24 [igt-dev] [PATCH i-g-t] lib/xe_query: add helper getting available VRAM Lukasz Laguna
2023-08-07 10:55 ` [igt-dev] ○ CI.xeBAT: info for lib/xe_query: add helper getting available VRAM (rev4) Patchwork
2023-08-07 10:58 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork
2023-08-07 11:58 ` [igt-dev] [PATCH i-g-t] lib/xe_query: add helper getting available VRAM Zbigniew Kempczyński
2023-08-07 14:39 ` [igt-dev] ✗ Fi.CI.IGT: failure for lib/xe_query: add helper getting available VRAM (rev4) Patchwork
2023-08-08 10:46 ` Laguna, Lukasz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox