* [igt-dev] [PATCH i-g-t 1/3] tests/i915/gem_eio: fix uaf
@ 2022-06-27 16:10 Matthew Auld
2022-06-27 16:10 ` [igt-dev] [PATCH i-g-t 2/3] tests/i915/kms_mmap_write_crc: handle missing gem_get_caching() Matthew Auld
` (5 more replies)
0 siblings, 6 replies; 11+ messages in thread
From: Matthew Auld @ 2022-06-27 16:10 UTC (permalink / raw)
To: igt-dev; +Cc: intel-gfx
../tests/i915/gem_eio.c:277:20: warning: pointer ‘ctx’ used after ‘free’ [-Wuse-after-free]
277 | igt_assert(igt_sysfs_printf(ctx->debugfs, "i915_drop_caches",
../lib/igt_core.h:667:20: note: in definition of macro ‘igt_assert’
667 | do { if (!(expr)) \
| ^~~~
../tests/i915/gem_eio.c:274:9: note: call to ‘free’ here
274 | free(ctx);
Signed-off-by: Matthew Auld <matthew.auld@intel.com>
Cc: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
---
tests/i915/gem_eio.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/i915/gem_eio.c b/tests/i915/gem_eio.c
index 913a21f9..6cbae6eb 100644
--- a/tests/i915/gem_eio.c
+++ b/tests/i915/gem_eio.c
@@ -270,11 +270,11 @@ static void hang_handler(union sigval arg)
igt_nsec_elapsed(&ctx->delay) / 1000.0);
igt_assert_eq(timer_delete(ctx->timer), 0);
- free(ctx);
/* flush any excess work before we start timing our reset */
igt_assert(igt_sysfs_printf(ctx->debugfs, "i915_drop_caches",
"%d", DROP_RCU));
+ free(ctx);
igt_nsec_elapsed(ts);
igt_assert(igt_sysfs_printf(dir, "i915_wedged", "%llu", -1ull));
--
2.36.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH i-g-t 2/3] tests/i915/kms_mmap_write_crc: handle missing gem_get_caching()
2022-06-27 16:10 [igt-dev] [PATCH i-g-t 1/3] tests/i915/gem_eio: fix uaf Matthew Auld
@ 2022-06-27 16:10 ` Matthew Auld
2022-06-28 12:26 ` Gwan-gyeong Mun
2022-06-27 16:10 ` [igt-dev] [PATCH i-g-t 3/3] tests/i915: adapt __copy_ccs for discrete Matthew Auld
` (4 subsequent siblings)
5 siblings, 1 reply; 11+ messages in thread
From: Matthew Auld @ 2022-06-27 16:10 UTC (permalink / raw)
To: igt-dev; +Cc: intel-gfx
The kernel is meant to force the caching level for the object to
CACHE_NONE or CACHE_WT when first scanning out the object, since the
display engine is not coherent (assuming userspace hasn't already done
this). On discrete we no longer support set/get_caching, but we can only
do the scanout from lmem, which can only be mapped as WC and so should
always be coherent for scanout. Adjust the test and ensure it still
passes as expected.
Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/5303
Signed-off-by: Matthew Auld <matthew.auld@intel.com>
Cc: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
---
tests/i915/kms_mmap_write_crc.c | 11 +++++++----
1 file changed, 7 insertions(+), 4 deletions(-)
diff --git a/tests/i915/kms_mmap_write_crc.c b/tests/i915/kms_mmap_write_crc.c
index b17e5fdb..da7312d6 100644
--- a/tests/i915/kms_mmap_write_crc.c
+++ b/tests/i915/kms_mmap_write_crc.c
@@ -78,7 +78,6 @@ static void test(data_t *data)
drmModeModeInfo *mode;
cairo_t *cr;
char *ptr;
- uint32_t caching;
void *buf;
igt_crc_t crc;
@@ -102,9 +101,13 @@ static void test(data_t *data)
igt_plane_set_fb(data->primary, &data->fb[0]);
igt_display_commit(display);
- /* make sure caching mode has become UC/WT */
- caching = gem_get_caching(data->drm_fd, fb->gem_handle);
- igt_assert(caching == I915_CACHING_NONE || caching == I915_CACHING_DISPLAY);
+ if (!gem_has_lmem(data->drm_fd)) {
+ uint32_t caching;
+
+ /* make sure caching mode has become UC/WT */
+ caching = gem_get_caching(data->drm_fd, fb->gem_handle);
+ igt_assert(caching == I915_CACHING_NONE || caching == I915_CACHING_DISPLAY);
+ }
/*
* firstly demonstrate the need for DMA_BUF_SYNC_START ("begin_cpu_access")
--
2.36.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH i-g-t 3/3] tests/i915: adapt __copy_ccs for discrete
2022-06-27 16:10 [igt-dev] [PATCH i-g-t 1/3] tests/i915/gem_eio: fix uaf Matthew Auld
2022-06-27 16:10 ` [igt-dev] [PATCH i-g-t 2/3] tests/i915/kms_mmap_write_crc: handle missing gem_get_caching() Matthew Auld
@ 2022-06-27 16:10 ` Matthew Auld
2022-06-27 18:10 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/i915/gem_eio: fix uaf Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 11+ messages in thread
From: Matthew Auld @ 2022-06-27 16:10 UTC (permalink / raw)
To: igt-dev; +Cc: intel-gfx
We can't explicitly control the mmap caching type for discrete, but
using mmap_device_coherent should be good enough here on such devices.
Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/4842
Signed-off-by: Matthew Auld <matthew.auld@intel.com>
Cc: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
---
lib/intel_bufops.c | 15 ++++++++++-----
1 file changed, 10 insertions(+), 5 deletions(-)
diff --git a/lib/intel_bufops.c b/lib/intel_bufops.c
index 05c0b0d4..c63a5760 100644
--- a/lib/intel_bufops.c
+++ b/lib/intel_bufops.c
@@ -451,11 +451,16 @@ static void __copy_ccs(struct buf_ops *bops, struct intel_buf *buf,
ccs_size = CCS_SIZE(gen, buf);
size = offset + ccs_size;
- map = __gem_mmap_offset__wc(bops->fd, buf->handle, 0, size,
- PROT_READ | PROT_WRITE);
- if (!map)
- map = gem_mmap__wc(bops->fd, buf->handle, 0, size,
- PROT_READ | PROT_WRITE);
+ if (gem_has_lmem(bops->fd)) {
+ map = gem_mmap__device_coherent(bops->fd, buf->handle, 0, size,
+ PROT_READ | PROT_WRITE);
+ } else {
+ map = __gem_mmap_offset__wc(bops->fd, buf->handle, 0, size,
+ PROT_READ | PROT_WRITE);
+ if (!map)
+ map = gem_mmap__wc(bops->fd, buf->handle, 0, size,
+ PROT_READ | PROT_WRITE);
+ }
switch (dir) {
case CCS_LINEAR_TO_BUF:
--
2.36.1
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/i915/gem_eio: fix uaf
2022-06-27 16:10 [igt-dev] [PATCH i-g-t 1/3] tests/i915/gem_eio: fix uaf Matthew Auld
2022-06-27 16:10 ` [igt-dev] [PATCH i-g-t 2/3] tests/i915/kms_mmap_write_crc: handle missing gem_get_caching() Matthew Auld
2022-06-27 16:10 ` [igt-dev] [PATCH i-g-t 3/3] tests/i915: adapt __copy_ccs for discrete Matthew Auld
@ 2022-06-27 18:10 ` Patchwork
2022-06-28 4:46 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2022-06-27 18:10 UTC (permalink / raw)
To: Matthew Auld; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 6957 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/3] tests/i915/gem_eio: fix uaf
URL : https://patchwork.freedesktop.org/series/105676/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_11813 -> IGTPW_7398
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/index.html
Participating hosts (42 -> 41)
------------------------------
Additional (1): fi-icl-u2
Missing (2): bat-dg2-9 fi-bdw-samus
Known issues
------------
Here are the changes found in IGTPW_7398 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_huc_copy@huc-copy:
- fi-icl-u2: NOTRUN -> [SKIP][1] ([i915#2190])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/fi-icl-u2/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@random-engines:
- fi-icl-u2: NOTRUN -> [SKIP][2] ([i915#4613]) +3 similar issues
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/fi-icl-u2/igt@gem_lmem_swapping@random-engines.html
* igt@i915_selftest@live@gem:
- fi-blb-e6850: NOTRUN -> [DMESG-FAIL][3] ([i915#4528])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/fi-blb-e6850/igt@i915_selftest@live@gem.html
* igt@i915_suspend@basic-s3-without-i915:
- fi-icl-u2: NOTRUN -> [SKIP][4] ([i915#5903])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/fi-icl-u2/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_busy@basic@flip:
- bat-adlp-4: [PASS][5] -> [DMESG-WARN][6] ([i915#1982] / [i915#3576])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/bat-adlp-4/igt@kms_busy@basic@flip.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/bat-adlp-4/igt@kms_busy@basic@flip.html
* igt@kms_busy@basic@modeset:
- bat-adlp-4: [PASS][7] -> [DMESG-WARN][8] ([i915#3576])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/bat-adlp-4/igt@kms_busy@basic@modeset.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/bat-adlp-4/igt@kms_busy@basic@modeset.html
* igt@kms_chamelium@hdmi-hpd-fast:
- fi-icl-u2: NOTRUN -> [SKIP][9] ([fdo#111827]) +8 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/fi-icl-u2/igt@kms_chamelium@hdmi-hpd-fast.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor:
- fi-icl-u2: NOTRUN -> [SKIP][10] ([i915#4103])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/fi-icl-u2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor.html
* igt@kms_force_connector_basic@force-connector-state:
- fi-icl-u2: NOTRUN -> [WARN][11] ([i915#6008])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/fi-icl-u2/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_force_connector_basic@force-load-detect:
- fi-icl-u2: NOTRUN -> [SKIP][12] ([fdo#109285])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/fi-icl-u2/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_setmode@basic-clone-single-crtc:
- fi-icl-u2: NOTRUN -> [SKIP][13] ([i915#3555])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/fi-icl-u2/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-userptr:
- fi-icl-u2: NOTRUN -> [SKIP][14] ([fdo#109295] / [i915#3301])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/fi-icl-u2/igt@prime_vgem@basic-userptr.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- {bat-adln-1}: [DMESG-WARN][15] ([i915#6299]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/bat-adln-1/igt@core_hotunplug@unbind-rebind.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/bat-adln-1/igt@core_hotunplug@unbind-rebind.html
* igt@i915_selftest@live@requests:
- fi-blb-e6850: [DMESG-FAIL][17] ([i915#4528]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/fi-blb-e6850/igt@i915_selftest@live@requests.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/fi-blb-e6850/igt@i915_selftest@live@requests.html
* igt@kms_busy@basic@flip:
- fi-tgl-u2: [DMESG-WARN][19] ([i915#402]) -> [PASS][20] +1 similar issue
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/fi-tgl-u2/igt@kms_busy@basic@flip.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/fi-tgl-u2/igt@kms_busy@basic@flip.html
* igt@kms_flip@basic-flip-vs-modeset@a-edp1:
- {bat-adln-1}: [DMESG-WARN][21] ([i915#3576]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/bat-adln-1/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/bat-adln-1/igt@kms_flip@basic-flip-vs-modeset@a-edp1.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576
[i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5153]: https://gitlab.freedesktop.org/drm/intel/issues/5153
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5763]: https://gitlab.freedesktop.org/drm/intel/issues/5763
[i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903
[i915#6008]: https://gitlab.freedesktop.org/drm/intel/issues/6008
[i915#6106]: https://gitlab.freedesktop.org/drm/intel/issues/6106
[i915#6299]: https://gitlab.freedesktop.org/drm/intel/issues/6299
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6542 -> IGTPW_7398
CI-20190529: 20190529
CI_DRM_11813: 650ceff1f00b3be875397326625c0a90fa8ee42b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_7398: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/index.html
IGT_6542: d38a476ee4b9f9a95d8f452de0d66cc52f7f079b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/index.html
[-- Attachment #2: Type: text/html, Size: 7829 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/3] tests/i915/gem_eio: fix uaf
2022-06-27 16:10 [igt-dev] [PATCH i-g-t 1/3] tests/i915/gem_eio: fix uaf Matthew Auld
` (2 preceding siblings ...)
2022-06-27 18:10 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/i915/gem_eio: fix uaf Patchwork
@ 2022-06-28 4:46 ` Patchwork
2022-06-28 14:41 ` Matthew Auld
2022-06-28 10:24 ` [igt-dev] [PATCH i-g-t 1/3] " Das, Nirmoy
2022-06-28 10:24 ` Gwan-gyeong Mun
5 siblings, 1 reply; 11+ messages in thread
From: Patchwork @ 2022-06-28 4:46 UTC (permalink / raw)
To: Matthew Auld; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 57865 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/3] tests/i915/gem_eio: fix uaf
URL : https://patchwork.freedesktop.org/series/105676/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_11813_full -> IGTPW_7398_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_7398_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_7398_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_7398/index.html
Participating hosts (13 -> 10)
------------------------------
Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_7398_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_crc@cursor-onscreen@pipe-b-edp-1-512x512:
- shard-iclb: NOTRUN -> [SKIP][1] +5 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb3/igt@kms_cursor_crc@cursor-onscreen@pipe-b-edp-1-512x512.html
* igt@kms_cursor_legacy@flip-vs-cursor@toggle:
- shard-iclb: [PASS][2] -> [FAIL][3] +2 similar issues
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb8/igt@kms_cursor_legacy@flip-vs-cursor@toggle.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor@toggle.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_atomic@plane-invalid-params-fence:
- {shard-dg1}: NOTRUN -> [FAIL][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-dg1-16/igt@kms_atomic@plane-invalid-params-fence.html
* igt@kms_cursor_crc@cursor-random@pipe-c-hdmi-a-1-512x170:
- {shard-dg1}: NOTRUN -> [SKIP][5] +15 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-dg1-12/igt@kms_cursor_crc@cursor-random@pipe-c-hdmi-a-1-512x170.html
* igt@kms_sequence@get-busy@hdmi-a-1-pipe-b:
- {shard-dg1}: [PASS][6] -> [FAIL][7] +3 similar issues
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-dg1-13/igt@kms_sequence@get-busy@hdmi-a-1-pipe-b.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-dg1-16/igt@kms_sequence@get-busy@hdmi-a-1-pipe-b.html
* igt@perf_pmu@module-unload:
- {shard-tglu}: [PASS][8] -> [FAIL][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-tglu-5/igt@perf_pmu@module-unload.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglu-4/igt@perf_pmu@module-unload.html
New tests
---------
New tests have been introduced between CI_DRM_11813_full and IGTPW_7398_full:
### New IGT tests (4) ###
* igt@kms_pipe_crc_basic@read-crc@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.54] s
* igt@kms_pipe_crc_basic@read-crc@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.45] s
* igt@kms_pipe_crc_basic@read-crc@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.44] s
* igt@kms_pipe_crc_basic@read-crc@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.47] s
Known issues
------------
Here are the changes found in IGTPW_7398_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_create@create-massive:
- shard-kbl: NOTRUN -> [DMESG-WARN][10] ([i915#4991])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl4/igt@gem_create@create-massive.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglb: [PASS][11] -> [FAIL][12] ([i915#6268])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-tglb3/igt@gem_ctx_exec@basic-nohangcheck.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb1/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_ctx_isolation@preservation-s3@vcs0:
- shard-kbl: [PASS][13] -> [DMESG-WARN][14] ([i915#180]) +2 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-kbl6/igt@gem_ctx_isolation@preservation-s3@vcs0.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@vcs0.html
* igt@gem_exec_balancer@parallel:
- shard-iclb: [PASS][15] -> [SKIP][16] ([i915#4525])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb1/igt@gem_exec_balancer@parallel.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb3/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_fair@basic-deadline:
- shard-kbl: NOTRUN -> [FAIL][17] ([i915#6141])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl7/igt@gem_exec_fair@basic-deadline.html
- shard-apl: NOTRUN -> [FAIL][18] ([i915#6141])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl2/igt@gem_exec_fair@basic-deadline.html
- shard-tglb: NOTRUN -> [FAIL][19] ([i915#6141])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb3/igt@gem_exec_fair@basic-deadline.html
- shard-glk: NOTRUN -> [FAIL][20] ([i915#6141])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk2/igt@gem_exec_fair@basic-deadline.html
- shard-iclb: NOTRUN -> [FAIL][21] ([i915#6141])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb3/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- shard-glk: [PASS][22] -> [FAIL][23] ([i915#2842])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-glk5/igt@gem_exec_fair@basic-none-rrul@rcs0.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk7/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none@vecs0:
- shard-apl: [PASS][24] -> [FAIL][25] ([i915#2842]) +1 similar issue
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-apl8/igt@gem_exec_fair@basic-none@vecs0.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl7/igt@gem_exec_fair@basic-none@vecs0.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-iclb: [PASS][26] -> [FAIL][27] ([i915#2842])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb3/igt@gem_exec_fair@basic-pace@bcs0.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb7/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_fair@basic-pace@vcs0:
- shard-kbl: [PASS][28] -> [FAIL][29] ([i915#2842])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl3/igt@gem_exec_fair@basic-pace@vcs0.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-kbl: NOTRUN -> [SKIP][30] ([fdo#109271] / [i915#4613]) +3 similar issues
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl4/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@random-engines:
- shard-apl: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#4613])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl3/igt@gem_lmem_swapping@random-engines.html
* igt@gem_pread@exhaustion:
- shard-apl: NOTRUN -> [WARN][32] ([i915#2658])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl3/igt@gem_pread@exhaustion.html
* igt@gem_pxp@reject-modify-context-protection-on:
- shard-tglb: NOTRUN -> [SKIP][33] ([i915#4270])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb1/igt@gem_pxp@reject-modify-context-protection-on.html
* igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
- shard-iclb: NOTRUN -> [SKIP][34] ([i915#768]) +1 similar issue
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb3/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
* igt@i915_pm_dc@dc9-dpms:
- shard-iclb: NOTRUN -> [SKIP][35] ([i915#4281])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html
- shard-tglb: NOTRUN -> [SKIP][36] ([i915#4281])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb6/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglb: [PASS][37] -> [WARN][38] ([i915#2681])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-tglb5/igt@i915_pm_rc6_residency@rc6-idle.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb1/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@pm-caching:
- shard-snb: NOTRUN -> [SKIP][39] ([fdo#109271]) +64 similar issues
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-snb6/igt@i915_pm_rpm@pm-caching.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglb: NOTRUN -> [SKIP][40] ([i915#5286])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb1/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
- shard-iclb: NOTRUN -> [SKIP][41] ([i915#5286]) +1 similar issue
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb5/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-glk: NOTRUN -> [SKIP][42] ([fdo#109271]) +66 similar issues
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk7/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-glk: [PASS][43] -> [FAIL][44] ([i915#1888] / [i915#5138])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-glk7/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk9/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-tglb: NOTRUN -> [SKIP][45] ([fdo#111615])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb3/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
- shard-iclb: NOTRUN -> [SKIP][46] ([fdo#110723])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb6/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
- shard-glk: NOTRUN -> [SKIP][47] ([fdo#109271] / [i915#3886]) +3 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk5/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
- shard-iclb: NOTRUN -> [SKIP][48] ([fdo#109278] / [i915#3886]) +3 similar issues
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb1/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
- shard-tglb: NOTRUN -> [SKIP][49] ([i915#3689] / [i915#3886]) +1 similar issue
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb7/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc:
- shard-tglb: NOTRUN -> [SKIP][50] ([i915#3689] / [i915#6095]) +1 similar issue
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb7/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc.html
* igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
- shard-apl: NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#3886]) +3 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl1/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs:
- shard-iclb: NOTRUN -> [SKIP][52] ([fdo#109278]) +8 similar issues
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb7/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs.html
- shard-tglb: NOTRUN -> [SKIP][53] ([i915#6095])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb1/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
- shard-kbl: NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#3886]) +5 similar issues
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl3/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][55] ([i915#3689]) +2 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb1/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_ccs.html
* igt@kms_chamelium@hdmi-edid-read:
- shard-snb: NOTRUN -> [SKIP][56] ([fdo#109271] / [fdo#111827]) +3 similar issues
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-snb7/igt@kms_chamelium@hdmi-edid-read.html
* igt@kms_chamelium@vga-hpd-without-ddc:
- shard-apl: NOTRUN -> [SKIP][57] ([fdo#109271] / [fdo#111827]) +3 similar issues
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl1/igt@kms_chamelium@vga-hpd-without-ddc.html
- shard-tglb: NOTRUN -> [SKIP][58] ([fdo#109284] / [fdo#111827]) +3 similar issues
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb7/igt@kms_chamelium@vga-hpd-without-ddc.html
- shard-glk: NOTRUN -> [SKIP][59] ([fdo#109271] / [fdo#111827]) +4 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk9/igt@kms_chamelium@vga-hpd-without-ddc.html
- shard-iclb: NOTRUN -> [SKIP][60] ([fdo#109284] / [fdo#111827]) +3 similar issues
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb7/igt@kms_chamelium@vga-hpd-without-ddc.html
* igt@kms_color@pipe-d-ctm-green-to-red:
- shard-iclb: NOTRUN -> [SKIP][61] ([fdo#109278] / [i915#1149])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb6/igt@kms_color@pipe-d-ctm-green-to-red.html
* igt@kms_color_chamelium@pipe-a-degamma:
- shard-kbl: NOTRUN -> [SKIP][62] ([fdo#109271] / [fdo#111827]) +9 similar issues
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl6/igt@kms_color_chamelium@pipe-a-degamma.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglb: NOTRUN -> [SKIP][63] ([i915#1063])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb2/igt@kms_content_protection@atomic-dpms.html
- shard-iclb: NOTRUN -> [SKIP][64] ([fdo#109300] / [fdo#111066])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb7/igt@kms_content_protection@atomic-dpms.html
- shard-kbl: NOTRUN -> [TIMEOUT][65] ([i915#1319]) +1 similar issue
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl4/igt@kms_content_protection@atomic-dpms.html
- shard-apl: NOTRUN -> [TIMEOUT][66] ([i915#1319])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_cursor_crc@cursor-onscreen@pipe-a-edp-1-512x512:
- shard-tglb: NOTRUN -> [SKIP][67] ([i915#3359]) +7 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb6/igt@kms_cursor_crc@cursor-onscreen@pipe-a-edp-1-512x512.html
* igt@kms_cursor_crc@cursor-onscreen@pipe-c-edp-1-32x10:
- shard-tglb: NOTRUN -> [SKIP][68] ([i915#4462]) +7 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb6/igt@kms_cursor_crc@cursor-onscreen@pipe-c-edp-1-32x10.html
- shard-iclb: NOTRUN -> [SKIP][69] ([i915#4462]) +5 similar issues
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb3/igt@kms_cursor_crc@cursor-onscreen@pipe-c-edp-1-32x10.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-glk: [PASS][70] -> [FAIL][71] ([i915#72])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-glk7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions:
- shard-iclb: [PASS][72] -> [FAIL][73] ([i915#2346])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb8/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-iclb: NOTRUN -> [SKIP][74] ([fdo#109274]) +2 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb5/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-tglb: NOTRUN -> [SKIP][75] ([fdo#109274] / [fdo#111825]) +1 similar issue
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb5/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][76] -> [FAIL][77] ([i915#79])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
- shard-apl: NOTRUN -> [DMESG-WARN][78] ([i915#180]) +1 similar issue
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
* igt@kms_flip@flip-vs-suspend@c-dp1:
- shard-apl: [PASS][79] -> [DMESG-WARN][80] ([i915#180]) +2 similar issues
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-apl3/igt@kms_flip@flip-vs-suspend@c-dp1.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl8/igt@kms_flip@flip-vs-suspend@c-dp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-glk: [PASS][81] -> [FAIL][82] ([i915#4911])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-glk3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-glk: [PASS][83] -> [FAIL][84] ([i915#1888] / [i915#2546]) +1 similar issue
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-tglb: NOTRUN -> [SKIP][85] ([fdo#109280] / [fdo#111825]) +3 similar issues
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear:
- shard-iclb: [PASS][86] -> [FAIL][87] ([i915#1888] / [i915#2546])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt:
- shard-iclb: NOTRUN -> [SKIP][88] ([fdo#109280]) +5 similar issues
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_hdmi_inject@inject-audio:
- shard-tglb: [PASS][89] -> [SKIP][90] ([i915#433])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-tglb7/igt@kms_hdmi_inject@inject-audio.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb3/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@bpc-switch@pipe-a-dp-1:
- shard-kbl: [PASS][91] -> [FAIL][92] ([i915#1188])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-kbl1/igt@kms_hdr@bpc-switch@pipe-a-dp-1.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl6/igt@kms_hdr@bpc-switch@pipe-a-dp-1.html
* igt@kms_plane_alpha_blend@pipe-a-alpha-basic:
- shard-kbl: NOTRUN -> [FAIL][93] ([fdo#108145] / [i915#265])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl7/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html
* igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
- shard-glk: NOTRUN -> [FAIL][94] ([fdo#108145] / [i915#265])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk6/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html
* igt@kms_plane_cursor@pipe-d-overlay-size-64:
- shard-apl: NOTRUN -> [SKIP][95] ([fdo#109271]) +54 similar issues
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl7/igt@kms_plane_cursor@pipe-d-overlay-size-64.html
* igt@kms_plane_multiple@atomic-pipe-c-tiling-4:
- shard-tglb: NOTRUN -> [SKIP][96] ([i915#5288])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb6/igt@kms_plane_multiple@atomic-pipe-c-tiling-4.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-edp-1:
- shard-iclb: [PASS][97] -> [SKIP][98] ([i915#5235]) +2 similar issues
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-edp-1.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-edp-1.html
* igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
- shard-apl: NOTRUN -> [SKIP][99] ([fdo#109271] / [i915#658]) +1 similar issue
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
- shard-tglb: NOTRUN -> [SKIP][100] ([i915#2920])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
- shard-glk: NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#658])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
- shard-iclb: NOTRUN -> [SKIP][102] ([i915#658])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
- shard-kbl: NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#658]) +2 similar issues
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@cursor_render:
- shard-kbl: NOTRUN -> [SKIP][104] ([fdo#109271]) +129 similar issues
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl4/igt@kms_psr@cursor_render.html
* igt@kms_psr@psr2_primary_page_flip:
- shard-iclb: [PASS][105] -> [SKIP][106] ([fdo#109441]) +1 similar issue
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb6/igt@kms_psr@psr2_primary_page_flip.html
* igt@kms_vblank@pipe-a-accuracy-idle:
- shard-glk: NOTRUN -> [FAIL][107] ([i915#43])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk9/igt@kms_vblank@pipe-a-accuracy-idle.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-glk: NOTRUN -> [SKIP][108] ([fdo#109271] / [i915#2437])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk8/igt@kms_writeback@writeback-invalid-parameters.html
- shard-iclb: NOTRUN -> [SKIP][109] ([i915#2437])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb8/igt@kms_writeback@writeback-invalid-parameters.html
* igt@nouveau_crc@pipe-c-source-outp-inactive:
- shard-tglb: NOTRUN -> [SKIP][110] ([i915#2530])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb2/igt@nouveau_crc@pipe-c-source-outp-inactive.html
- shard-iclb: NOTRUN -> [SKIP][111] ([i915#2530])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb8/igt@nouveau_crc@pipe-c-source-outp-inactive.html
* igt@prime_nv_pcopy@test1_macro:
- shard-iclb: NOTRUN -> [SKIP][112] ([fdo#109291]) +1 similar issue
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb6/igt@prime_nv_pcopy@test1_macro.html
- shard-tglb: NOTRUN -> [SKIP][113] ([fdo#109291])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb5/igt@prime_nv_pcopy@test1_macro.html
* igt@sysfs_clients@recycle:
- shard-apl: NOTRUN -> [SKIP][114] ([fdo#109271] / [i915#2994]) +1 similar issue
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl7/igt@sysfs_clients@recycle.html
* igt@sysfs_clients@split-50:
- shard-tglb: NOTRUN -> [SKIP][115] ([i915#2994])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb6/igt@sysfs_clients@split-50.html
- shard-glk: NOTRUN -> [SKIP][116] ([fdo#109271] / [i915#2994])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk9/igt@sysfs_clients@split-50.html
- shard-iclb: NOTRUN -> [SKIP][117] ([i915#2994])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb2/igt@sysfs_clients@split-50.html
- shard-kbl: NOTRUN -> [SKIP][118] ([fdo#109271] / [i915#2994])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl3/igt@sysfs_clients@split-50.html
#### Possible fixes ####
* igt@fbdev@pan:
- {shard-rkl}: [SKIP][119] ([i915#2582]) -> [PASS][120] +1 similar issue
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-1/igt@fbdev@pan.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-1/igt@fbdev@pan.html
* igt@gem_ctx_persistence@legacy-engines-hang@vebox:
- {shard-dg1}: [FAIL][121] ([i915#4883]) -> [PASS][122]
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-dg1-15/igt@gem_ctx_persistence@legacy-engines-hang@vebox.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-dg1-18/igt@gem_ctx_persistence@legacy-engines-hang@vebox.html
* igt@gem_eio@in-flight-contexts-immediate:
- {shard-rkl}: [TIMEOUT][123] ([i915#3063]) -> [PASS][124] +1 similar issue
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-1/igt@gem_eio@in-flight-contexts-immediate.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-2/igt@gem_eio@in-flight-contexts-immediate.html
* igt@gem_eio@in-flight-immediate:
- shard-tglb: [TIMEOUT][125] ([i915#3063]) -> [PASS][126]
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-tglb5/igt@gem_eio@in-flight-immediate.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb5/igt@gem_eio@in-flight-immediate.html
* igt@gem_eio@kms:
- shard-tglb: [FAIL][127] ([i915#5784]) -> [PASS][128]
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-tglb1/igt@gem_eio@kms.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb7/igt@gem_eio@kms.html
* igt@gem_eio@unwedge-stress:
- shard-iclb: [TIMEOUT][129] ([i915#3070]) -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb2/igt@gem_eio@unwedge-stress.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb5/igt@gem_eio@unwedge-stress.html
- {shard-dg1}: [FAIL][131] ([i915#5784]) -> [PASS][132]
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-dg1-17/igt@gem_eio@unwedge-stress.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-dg1-16/igt@gem_eio@unwedge-stress.html
- {shard-tglu}: [TIMEOUT][133] ([i915#3063]) -> [PASS][134]
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-tglu-3/igt@gem_eio@unwedge-stress.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglu-6/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@fairslice:
- {shard-rkl}: [SKIP][135] ([i915#6259]) -> [PASS][136]
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-5/igt@gem_exec_balancer@fairslice.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@gem_exec_balancer@fairslice.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-iclb: [SKIP][137] ([i915#4525]) -> [PASS][138]
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb7/igt@gem_exec_balancer@parallel-keep-submit-fence.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb2/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- {shard-tglu}: [FAIL][139] ([i915#2842]) -> [PASS][140]
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html
- shard-iclb: [FAIL][141] ([i915#2842]) -> [PASS][142]
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb2/igt@gem_exec_fair@basic-none-share@rcs0.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb2/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none@rcs0:
- shard-kbl: [FAIL][143] ([i915#2842]) -> [PASS][144] +1 similar issue
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-kbl7/igt@gem_exec_fair@basic-none@rcs0.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl4/igt@gem_exec_fair@basic-none@rcs0.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-glk: [FAIL][145] ([i915#2842]) -> [PASS][146]
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-glk2/igt@gem_exec_fair@basic-none@vcs0.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk1/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglb: [FAIL][147] ([i915#2842]) -> [PASS][148]
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-tglb3/igt@gem_exec_fair@basic-pace-share@rcs0.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- {shard-rkl}: [FAIL][149] ([i915#2842]) -> [PASS][150]
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-pace@vcs1:
- shard-kbl: [SKIP][151] ([fdo#109271]) -> [PASS][152]
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs1.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl3/igt@gem_exec_fair@basic-pace@vcs1.html
* igt@gem_exec_reloc@basic-range-active:
- {shard-rkl}: [SKIP][153] ([i915#3281]) -> [PASS][154] +4 similar issues
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-2/igt@gem_exec_reloc@basic-range-active.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-5/igt@gem_exec_reloc@basic-range-active.html
* igt@gem_exec_whisper@basic-queues-forked-all:
- shard-iclb: [INCOMPLETE][155] ([i915#5304] / [i915#5498]) -> [PASS][156]
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb2/igt@gem_exec_whisper@basic-queues-forked-all.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb7/igt@gem_exec_whisper@basic-queues-forked-all.html
* igt@gem_readwrite@write-bad-handle:
- {shard-rkl}: [SKIP][157] ([i915#3282]) -> [PASS][158]
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-2/igt@gem_readwrite@write-bad-handle.html
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-5/igt@gem_readwrite@write-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled@lmem0:
- {shard-dg1}: [FAIL][159] ([i915#4842]) -> [PASS][160] +13 similar issues
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-dg1-19/igt@gem_render_copy@y-tiled-ccs-to-y-tiled@lmem0.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-dg1-15/igt@gem_render_copy@y-tiled-ccs-to-y-tiled@lmem0.html
* igt@gen9_exec_parse@allowed-all:
- shard-glk: [DMESG-WARN][161] ([i915#5566] / [i915#716]) -> [PASS][162] +1 similar issue
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-glk6/igt@gen9_exec_parse@allowed-all.html
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk3/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@batch-invalid-length:
- {shard-rkl}: [SKIP][163] ([i915#2527]) -> [PASS][164] +1 similar issue
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-1/igt@gen9_exec_parse@batch-invalid-length.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html
* igt@i915_pm_dc@dc5-psr:
- {shard-rkl}: [SKIP][165] ([i915#658]) -> [PASS][166] +1 similar issue
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-5/igt@i915_pm_dc@dc5-psr.html
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@i915_pm_dc@dc5-psr.html
* igt@i915_pm_rpm@cursor-dpms:
- {shard-rkl}: [SKIP][167] ([i915#1849]) -> [PASS][168]
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-5/igt@i915_pm_rpm@cursor-dpms.html
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@i915_pm_rpm@cursor-dpms.html
* igt@i915_selftest@live@hangcheck:
- shard-tglb: [DMESG-WARN][169] ([i915#5591]) -> [PASS][170]
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-tglb5/igt@i915_selftest@live@hangcheck.html
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb7/igt@i915_selftest@live@hangcheck.html
* igt@kms_color@pipe-a-ctm-0-75:
- {shard-rkl}: [SKIP][171] ([i915#1149] / [i915#1849] / [i915#4070] / [i915#4098]) -> [PASS][172] +1 similar issue
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-1/igt@kms_color@pipe-a-ctm-0-75.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@kms_color@pipe-a-ctm-0-75.html
* igt@kms_color@pipe-c-invalid-ctm-matrix-sizes:
- {shard-rkl}: [SKIP][173] ([i915#4070]) -> [PASS][174]
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-1/igt@kms_color@pipe-c-invalid-ctm-matrix-sizes.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-5/igt@kms_color@pipe-c-invalid-ctm-matrix-sizes.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1:
- shard-kbl: [DMESG-WARN][175] ([i915#180]) -> [PASS][176] +4 similar issues
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-kbl7/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl6/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html
* igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled:
- {shard-rkl}: [SKIP][177] ([fdo#111314] / [i915#4098] / [i915#4369]) -> [PASS][178] +3 similar issues
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-2/igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled.html
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2:
- shard-glk: [FAIL][179] ([i915#79]) -> [PASS][180] +1 similar issue
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-glk9/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk8/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-iclb: [SKIP][181] ([i915#3701]) -> [PASS][182]
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- {shard-rkl}: [SKIP][183] ([i915#1849] / [i915#4098]) -> [PASS][184] +26 similar issues
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1:
- shard-kbl: [FAIL][185] ([i915#1188]) -> [PASS][186]
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-kbl3/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl3/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html
* igt@kms_invalid_mode@zero-clock:
- {shard-rkl}: [SKIP][187] ([i915#4278]) -> [PASS][188] +1 similar issue
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-5/igt@kms_invalid_mode@zero-clock.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@kms_invalid_mode@zero-clock.html
* igt@kms_mmap_write_crc@main:
- {shard-dg1}: [FAIL][189] ([i915#5303]) -> [PASS][190]
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-dg1-18/igt@kms_mmap_write_crc@main.html
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-dg1-15/igt@kms_mmap_write_crc@main.html
* igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min:
- {shard-rkl}: [SKIP][191] ([i915#1849] / [i915#4070] / [i915#4098]) -> [PASS][192]
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html
* igt@kms_psr@cursor_mmap_cpu:
- {shard-rkl}: [SKIP][193] ([i915#1072]) -> [PASS][194] +2 similar issues
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-5/igt@kms_psr@cursor_mmap_cpu.html
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@kms_psr@cursor_mmap_cpu.html
* igt@kms_psr@psr2_sprite_mmap_gtt:
- shard-iclb: [SKIP][195] ([fdo#109441]) -> [PASS][196] +3 similar issues
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb6/igt@kms_psr@psr2_sprite_mmap_gtt.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- {shard-rkl}: [SKIP][197] ([i915#5461]) -> [PASS][198]
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_universal_plane@cursor-fb-leak-pipe-b:
- {shard-rkl}: [SKIP][199] ([i915#1845] / [i915#4070] / [i915#4098]) -> [PASS][200]
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-2/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html
* igt@kms_vblank@pipe-a-wait-forked-busy-hang:
- {shard-rkl}: [SKIP][201] ([i915#1845] / [i915#4098]) -> [PASS][202] +25 similar issues
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-5/igt@kms_vblank@pipe-a-wait-forked-busy-hang.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@kms_vblank@pipe-a-wait-forked-busy-hang.html
* igt@kms_vblank@pipe-b-ts-continuation-suspend:
- shard-apl: [DMESG-WARN][203] ([i915#180]) -> [PASS][204]
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-apl8/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl4/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
* igt@perf@gen12-mi-rpc:
- {shard-rkl}: [SKIP][205] ([fdo#109289]) -> [PASS][206]
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-5/igt@perf@gen12-mi-rpc.html
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-2/igt@perf@gen12-mi-rpc.html
* igt@prime_vgem@basic-fence-read:
- {shard-rkl}: [SKIP][207] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][208]
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-1/igt@prime_vgem@basic-fence-read.html
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-5/igt@prime_vgem@basic-fence-read.html
#### Warnings ####
* igt@gem_exec_balancer@parallel-ordering:
- shard-iclb: [SKIP][209] ([i915#4525]) -> [FAIL][210] ([i915#6117])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb7/igt@gem_exec_balancer@parallel-ordering.html
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb2/igt@gem_exec_balancer@parallel-ordering.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-iclb: [FAIL][211] ([i915#2680] / [i915#2684]) -> [WARN][212] ([i915#2684])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle.html
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb5/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
- shard-iclb: [SKIP][213] ([i915#658]) -> [SKIP][214] ([i915#2920])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb5/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
- shard-iclb: [SKIP][215] ([i915#2920]) -> [SKIP][216] ([i915#658])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb8/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
* igt@runner@aborted:
- shard-apl: ([FAIL][217], [FAIL][218], [FAIL][219]) ([i915#3002] / [i915#4312] / [i915#5257]) -> ([FAIL][220], [FAIL][221], [FAIL][222], [FAIL][223], [FAIL][224]) ([i915#180] / [i915#3002] / [i915#4312] / [i915#5257])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-apl4/igt@runner@aborted.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-apl8/igt@runner@aborted.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-apl4/igt@runner@aborted.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl8/igt@runner@aborted.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl3/igt@runner@aborted.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl8/igt@runner@aborted.html
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl7/igt@runner@aborted.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl8/igt@runner@aborted.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#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
[fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111066]: https://bugs.freedesktop.org/show_bug.cgi?id=111066
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111314]: https://bugs.freedesktop.org/show_bug.cgi?id=111314
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1063]: https://gitlab.freedesktop.org/drm/intel/issues/1063
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
[i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
[i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188
[i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
[i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1836]: https://gitlab.freedesktop.org/drm/intel/issues/1836
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1888]: https://gitlab.freedesktop.org/drm/intel/issues/1888
[i915#1911]: https://gitlab.freedesktop.org/drm/intel/issues/1911
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2530]: https://gitlab.freedesktop.org/drm/intel/issues/2530
[i915#2532]: https://gitlab.freedesktop.org/drm/intel/issues/2532
[i915#2546]: https://gitlab.freedesktop.org/drm/intel/issues/2546
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2680]: https://gitlab.freedesktop.org/drm/intel/issues/2680
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2684]: https://gitlab.freedesktop.org/drm/intel/issues/2684
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2849]: https://gitlab.freedesktop.org/drm/intel/issues/2849
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
[i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002
[i915#3012]: https://gitlab.freedesktop.org/drm/intel/issues/3012
[i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
[i915#3070]: https://gitlab.freedesktop.org/drm/intel/issues/3070
[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#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323
[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#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3701]: https://gitlab.freedesktop.org/drm/intel/issues/3701
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3828]: https://gitlab.freedesktop.org/drm/intel/issues/3828
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938
[i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
[i915#3963]: https://gitlab.freedesktop.org/drm/intel/issues/3963
[i915#3987]: https://gitlab.freedesktop.org/drm/intel/issues/3987
[i915#4032]: https://gitlab.freedesktop.org/drm/intel/issues/4032
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[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#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4241]: https://gitlab.freedesktop.org/drm/intel/issues/4241
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4278]: https://gitlab.freedesktop.org/drm/intel/issues/4278
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#43]: https://gitlab.freedesktop.org/drm/intel/issues/43
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#433]: https://gitlab.freedesktop.org/drm/intel/issues/433
[i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
[i915#4462]: https://gitlab.freedesktop.org/drm/intel/issues/4462
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
[i915#4842]: https://gitlab.freedesktop.org/drm/intel/issues/4842
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4853]: https://gitlab.freedesktop.org/drm/intel/issues/4853
[i915#4855]: https://gitlab.freedesktop.org/drm/intel/issues/4855
[i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4883]: https://gitlab.freedesktop.org/drm/intel/issues/4883
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#4893]: https://gitlab.freedesktop.org/drm/intel/issues/4893
[i915#4911]: https://gitlab.freedesktop.org/drm/intel/issues/4911
[i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991
[i915#5122]: https://gitlab.freedesktop.org/drm/intel/issues/5122
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5182]: https://gitlab.freedesktop.org/drm/intel/issues/5182
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5257]: https://gitlab.freedesktop.org/drm/intel/issues/5257
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5287]: https://gitlab.freedesktop.org/drm/intel/issues/5287
[i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
[i915#5303]: https://gitlab.freedesktop.org/drm/intel/issues/5303
[i915#5304]: https://gitlab.freedesktop.org/drm/intel/issues/5304
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5498]: https://gitlab.freedesktop.org/drm/intel/issues/5498
[i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
[i915#5721]: https://gitlab.freedesktop.org/drm/intel/issues/5721
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#5903]: https://gitlab.freedesktop.org/drm/intel/issues/5903
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117
[i915#6140]: https://gitlab.freedesktop.org/drm/intel/issues/6140
[i915#6141]: https://gitlab.freedesktop.org/drm/intel/issues/6141
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247
[i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
[i915#6259]: https://gitlab.freedesktop.org/drm/intel/issues/6259
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716
[i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72
[i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6542 -> IGTPW_7398
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_11813: 650ceff1f00b3be875397326625c0a90fa8ee42b @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_7398: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/index.html
IGT_6542: d38a476ee4b9f9a95d8f452de0d66cc52f7f079b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/index.html
[-- Attachment #2: Type: text/html, Size: 64153 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/3] tests/i915/gem_eio: fix uaf
2022-06-27 16:10 [igt-dev] [PATCH i-g-t 1/3] tests/i915/gem_eio: fix uaf Matthew Auld
` (3 preceding siblings ...)
2022-06-28 4:46 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-06-28 10:24 ` Das, Nirmoy
2022-06-28 10:24 ` Gwan-gyeong Mun
5 siblings, 0 replies; 11+ messages in thread
From: Das, Nirmoy @ 2022-06-28 10:24 UTC (permalink / raw)
To: Matthew Auld, igt-dev; +Cc: intel-gfx
The series is Reviewed-by: Nirmoy Das <nirmoy.das@intel.com>
On 6/27/2022 6:10 PM, Matthew Auld wrote:
> ../tests/i915/gem_eio.c:277:20: warning: pointer ‘ctx’ used after ‘free’ [-Wuse-after-free]
> 277 | igt_assert(igt_sysfs_printf(ctx->debugfs, "i915_drop_caches",
> ../lib/igt_core.h:667:20: note: in definition of macro ‘igt_assert’
> 667 | do { if (!(expr)) \
> | ^~~~
> ../tests/i915/gem_eio.c:274:9: note: call to ‘free’ here
> 274 | free(ctx);
>
> Signed-off-by: Matthew Auld <matthew.auld@intel.com>
> Cc: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
> ---
> tests/i915/gem_eio.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tests/i915/gem_eio.c b/tests/i915/gem_eio.c
> index 913a21f9..6cbae6eb 100644
> --- a/tests/i915/gem_eio.c
> +++ b/tests/i915/gem_eio.c
> @@ -270,11 +270,11 @@ static void hang_handler(union sigval arg)
> igt_nsec_elapsed(&ctx->delay) / 1000.0);
>
> igt_assert_eq(timer_delete(ctx->timer), 0);
> - free(ctx);
>
> /* flush any excess work before we start timing our reset */
> igt_assert(igt_sysfs_printf(ctx->debugfs, "i915_drop_caches",
> "%d", DROP_RCU));
> + free(ctx);
>
> igt_nsec_elapsed(ts);
> igt_assert(igt_sysfs_printf(dir, "i915_wedged", "%llu", -1ull));
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/3] tests/i915/gem_eio: fix uaf
2022-06-27 16:10 [igt-dev] [PATCH i-g-t 1/3] tests/i915/gem_eio: fix uaf Matthew Auld
` (4 preceding siblings ...)
2022-06-28 10:24 ` [igt-dev] [PATCH i-g-t 1/3] " Das, Nirmoy
@ 2022-06-28 10:24 ` Gwan-gyeong Mun
2022-06-28 12:47 ` Matthew Auld
5 siblings, 1 reply; 11+ messages in thread
From: Gwan-gyeong Mun @ 2022-06-28 10:24 UTC (permalink / raw)
To: Matthew Auld, igt-dev; +Cc: intel-gfx
Looks good to me.
Reviewed-by: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
However, the use after free build issue did not occur only with the "$
meson build && ninja -C build" build command guided by the igt
README.md. How did you check it?
Br,
G.G.
On 6/27/22 7:10 PM, Matthew Auld wrote:
> ../tests/i915/gem_eio.c:277:20: warning: pointer ‘ctx’ used after ‘free’ [-Wuse-after-free]
> 277 | igt_assert(igt_sysfs_printf(ctx->debugfs, "i915_drop_caches",
> ../lib/igt_core.h:667:20: note: in definition of macro ‘igt_assert’
> 667 | do { if (!(expr)) \
> | ^~~~
> ../tests/i915/gem_eio.c:274:9: note: call to ‘free’ here
> 274 | free(ctx);
>
> Signed-off-by: Matthew Auld <matthew.auld@intel.com>
> Cc: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
> ---
> tests/i915/gem_eio.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tests/i915/gem_eio.c b/tests/i915/gem_eio.c
> index 913a21f9..6cbae6eb 100644
> --- a/tests/i915/gem_eio.c
> +++ b/tests/i915/gem_eio.c
> @@ -270,11 +270,11 @@ static void hang_handler(union sigval arg)
> igt_nsec_elapsed(&ctx->delay) / 1000.0);
>
> igt_assert_eq(timer_delete(ctx->timer), 0);
> - free(ctx);
>
> /* flush any excess work before we start timing our reset */
> igt_assert(igt_sysfs_printf(ctx->debugfs, "i915_drop_caches",
> "%d", DROP_RCU));
> + free(ctx);
>
> igt_nsec_elapsed(ts);
> igt_assert(igt_sysfs_printf(dir, "i915_wedged", "%llu", -1ull));
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/3] tests/i915/kms_mmap_write_crc: handle missing gem_get_caching()
2022-06-27 16:10 ` [igt-dev] [PATCH i-g-t 2/3] tests/i915/kms_mmap_write_crc: handle missing gem_get_caching() Matthew Auld
@ 2022-06-28 12:26 ` Gwan-gyeong Mun
0 siblings, 0 replies; 11+ messages in thread
From: Gwan-gyeong Mun @ 2022-06-28 12:26 UTC (permalink / raw)
To: Matthew Auld, igt-dev; +Cc: intel-gfx
Looks good to me.
Reviewed-by: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
On 6/27/22 7:10 PM, Matthew Auld wrote:
> The kernel is meant to force the caching level for the object to
> CACHE_NONE or CACHE_WT when first scanning out the object, since the
> display engine is not coherent (assuming userspace hasn't already done
> this). On discrete we no longer support set/get_caching, but we can only
> do the scanout from lmem, which can only be mapped as WC and so should
> always be coherent for scanout. Adjust the test and ensure it still
> passes as expected.
>
> Closes: https://gitlab.freedesktop.org/drm/intel/-/issues/5303
> Signed-off-by: Matthew Auld <matthew.auld@intel.com>
> Cc: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
> ---
> tests/i915/kms_mmap_write_crc.c | 11 +++++++----
> 1 file changed, 7 insertions(+), 4 deletions(-)
>
> diff --git a/tests/i915/kms_mmap_write_crc.c b/tests/i915/kms_mmap_write_crc.c
> index b17e5fdb..da7312d6 100644
> --- a/tests/i915/kms_mmap_write_crc.c
> +++ b/tests/i915/kms_mmap_write_crc.c
> @@ -78,7 +78,6 @@ static void test(data_t *data)
> drmModeModeInfo *mode;
> cairo_t *cr;
> char *ptr;
> - uint32_t caching;
> void *buf;
> igt_crc_t crc;
>
> @@ -102,9 +101,13 @@ static void test(data_t *data)
> igt_plane_set_fb(data->primary, &data->fb[0]);
> igt_display_commit(display);
>
> - /* make sure caching mode has become UC/WT */
> - caching = gem_get_caching(data->drm_fd, fb->gem_handle);
> - igt_assert(caching == I915_CACHING_NONE || caching == I915_CACHING_DISPLAY);
> + if (!gem_has_lmem(data->drm_fd)) {
> + uint32_t caching;
> +
> + /* make sure caching mode has become UC/WT */
> + caching = gem_get_caching(data->drm_fd, fb->gem_handle);
> + igt_assert(caching == I915_CACHING_NONE || caching == I915_CACHING_DISPLAY);
> + }
>
> /*
> * firstly demonstrate the need for DMA_BUF_SYNC_START ("begin_cpu_access")
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/3] tests/i915/gem_eio: fix uaf
2022-06-28 10:24 ` Gwan-gyeong Mun
@ 2022-06-28 12:47 ` Matthew Auld
2022-06-28 13:59 ` Gwan-gyeong Mun
0 siblings, 1 reply; 11+ messages in thread
From: Matthew Auld @ 2022-06-28 12:47 UTC (permalink / raw)
To: Gwan-gyeong Mun, igt-dev; +Cc: intel-gfx
On 28/06/2022 11:24, Gwan-gyeong Mun wrote:
> Looks good to me.
>
> Reviewed-by: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
>
> However, the use after free build issue did not occur only with the "$
> meson build && ninja -C build" build command guided by the igt
> README.md. How did you check it?
Hmm, I assume it's just a difference in compiler version or so. I have:
gcc (GCC) 12.1.1 20220507 (Red Hat 12.1.1-1).
>
> Br,
>
> G.G.
>
>
> On 6/27/22 7:10 PM, Matthew Auld wrote:
>> ../tests/i915/gem_eio.c:277:20: warning: pointer ‘ctx’ used after
>> ‘free’ [-Wuse-after-free]
>> 277 | igt_assert(igt_sysfs_printf(ctx->debugfs,
>> "i915_drop_caches",
>> ../lib/igt_core.h:667:20: note: in definition of macro ‘igt_assert’
>> 667 | do { if (!(expr)) \
>> | ^~~~
>> ../tests/i915/gem_eio.c:274:9: note: call to ‘free’ here
>> 274 | free(ctx);
>>
>> Signed-off-by: Matthew Auld <matthew.auld@intel.com>
>> Cc: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
>> ---
>> tests/i915/gem_eio.c | 2 +-
>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/tests/i915/gem_eio.c b/tests/i915/gem_eio.c
>> index 913a21f9..6cbae6eb 100644
>> --- a/tests/i915/gem_eio.c
>> +++ b/tests/i915/gem_eio.c
>> @@ -270,11 +270,11 @@ static void hang_handler(union sigval arg)
>> igt_nsec_elapsed(&ctx->delay) / 1000.0);
>> igt_assert_eq(timer_delete(ctx->timer), 0);
>> - free(ctx);
>> /* flush any excess work before we start timing our reset */
>> igt_assert(igt_sysfs_printf(ctx->debugfs, "i915_drop_caches",
>> "%d", DROP_RCU));
>> + free(ctx);
>> igt_nsec_elapsed(ts);
>> igt_assert(igt_sysfs_printf(dir, "i915_wedged", "%llu", -1ull));
>>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/3] tests/i915/gem_eio: fix uaf
2022-06-28 12:47 ` Matthew Auld
@ 2022-06-28 13:59 ` Gwan-gyeong Mun
0 siblings, 0 replies; 11+ messages in thread
From: Gwan-gyeong Mun @ 2022-06-28 13:59 UTC (permalink / raw)
To: Matthew Auld, igt-dev; +Cc: intel-gfx
On 6/28/22 3:47 PM, Matthew Auld wrote:
> On 28/06/2022 11:24, Gwan-gyeong Mun wrote:
>> Looks good to me.
>>
>> Reviewed-by: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
>>
>> However, the use after free build issue did not occur only with the "$
>> meson build && ninja -C build" build command guided by the igt
>> README.md. How did you check it?
>
> Hmm, I assume it's just a difference in compiler version or so. I have:
> gcc (GCC) 12.1.1 20220507 (Red Hat 12.1.1-1).
>
Thanks for sharing your compiling environment info.
My gcc says its version is 11.1.0.
I'll try with the version you mentioned.
$ gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-pc-linux-gnu/11.1.0/lto-wrapper
Target: x86_64-pc-linux-gnu
Configured with: /build/gcc/src/gcc/configure --prefix=/usr
--libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man
--infodir=/usr/share/info --with-bugurl=https://bugs.archlinux.org/
--enable-languages=c,c++,ada,fortran,go,lto,objc,obj-c++,d --with-isl
--with-linker-hash-style=gnu --with-system-zlib --enable-__cxa_atexit
--enable-cet=auto --enable-checking=release --enable-clocale=gnu
--enable-default-pie --enable-default-ssp --enable-gnu-indirect-function
--enable-gnu-unique-object --enable-install-libiberty
--enable-linker-build-id --enable-lto --enable-multilib --enable-plugin
--enable-shared --enable-threads=posix --disable-libssp
--disable-libstdcxx-pch --disable-libunwind-exceptions --disable-werror
gdc_include_dir=/usr/include/dlang/gdc
Thread model: posix
Supported LTO compression algorithms: zlib zstd
gcc version 11.1.0 (GCC)
Thanks,
G.G.
>>
>> Br,
>>
>> G.G.
>>
>>
>> On 6/27/22 7:10 PM, Matthew Auld wrote:
>>> ../tests/i915/gem_eio.c:277:20: warning: pointer ‘ctx’ used after
>>> ‘free’ [-Wuse-after-free]
>>> 277 | igt_assert(igt_sysfs_printf(ctx->debugfs,
>>> "i915_drop_caches",
>>> ../lib/igt_core.h:667:20: note: in definition of macro ‘igt_assert’
>>> 667 | do { if (!(expr)) \
>>> | ^~~~
>>> ../tests/i915/gem_eio.c:274:9: note: call to ‘free’ here
>>> 274 | free(ctx);
>>>
>>> Signed-off-by: Matthew Auld <matthew.auld@intel.com>
>>> Cc: Gwan-gyeong Mun <gwan-gyeong.mun@intel.com>
>>> ---
>>> tests/i915/gem_eio.c | 2 +-
>>> 1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/tests/i915/gem_eio.c b/tests/i915/gem_eio.c
>>> index 913a21f9..6cbae6eb 100644
>>> --- a/tests/i915/gem_eio.c
>>> +++ b/tests/i915/gem_eio.c
>>> @@ -270,11 +270,11 @@ static void hang_handler(union sigval arg)
>>> igt_nsec_elapsed(&ctx->delay) / 1000.0);
>>> igt_assert_eq(timer_delete(ctx->timer), 0);
>>> - free(ctx);
>>> /* flush any excess work before we start timing our reset */
>>> igt_assert(igt_sysfs_printf(ctx->debugfs, "i915_drop_caches",
>>> "%d", DROP_RCU));
>>> + free(ctx);
>>> igt_nsec_elapsed(ts);
>>> igt_assert(igt_sysfs_printf(dir, "i915_wedged", "%llu", -1ull));
>>>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/3] tests/i915/gem_eio: fix uaf
2022-06-28 4:46 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-06-28 14:41 ` Matthew Auld
0 siblings, 0 replies; 11+ messages in thread
From: Matthew Auld @ 2022-06-28 14:41 UTC (permalink / raw)
To: igt-dev, Vudum, Lakshminarayana
On 28/06/2022 05:46, Patchwork wrote:
> *Patch Details*
> *Series:* series starting with [i-g-t,1/3] tests/i915/gem_eio: fix uaf
> *URL:* https://patchwork.freedesktop.org/series/105676/
> <https://patchwork.freedesktop.org/series/105676/>
> *State:* failure
> *Details:*
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/index.html
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/index.html>
>
>
> CI Bug Log - changes from CI_DRM_11813_full -> IGTPW_7398_full
>
>
> Summary
>
> *FAILURE*
>
> Serious unknown changes coming with IGTPW_7398_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_7398_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_7398/index.html
>
>
> Participating hosts (13 -> 10)
>
> Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005
>
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> IGTPW_7398_full:
>
>
> IGT changes
>
>
> Possible regressions
>
> *
>
> igt@kms_cursor_crc@cursor-onscreen@pipe-b-edp-1-512x512:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb3/igt@kms_cursor_crc@cursor-onscreen@pipe-b-edp-1-512x512.html>
> +5 similar issues
> *
>
> igt@kms_cursor_legacy@flip-vs-cursor@toggle:
>
> o shard-iclb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb8/igt@kms_cursor_legacy@flip-vs-cursor@toggle.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor@toggle.html>
> +2 similar issues
>
>
Unrelated to the series it seems.
> Suppressed
>
> The following results come from untrusted machines, tests, or statuses.
> They do not affect the overall result.
>
> *
>
> igt@kms_atomic@plane-invalid-params-fence:
>
> o {shard-dg1}: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-dg1-16/igt@kms_atomic@plane-invalid-params-fence.html>
> *
>
> igt@kms_cursor_crc@cursor-random@pipe-c-hdmi-a-1-512x170:
>
> o {shard-dg1}: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-dg1-12/igt@kms_cursor_crc@cursor-random@pipe-c-hdmi-a-1-512x170.html>
> +15 similar issues
> *
>
> igt@kms_sequence@get-busy@hdmi-a-1-pipe-b:
>
> o {shard-dg1}: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-dg1-13/igt@kms_sequence@get-busy@hdmi-a-1-pipe-b.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-dg1-16/igt@kms_sequence@get-busy@hdmi-a-1-pipe-b.html>
> +3 similar issues
> *
>
> igt@perf_pmu@module-unload:
>
> o {shard-tglu}: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-tglu-5/igt@perf_pmu@module-unload.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglu-4/igt@perf_pmu@module-unload.html>
>
>
> New tests
>
> New tests have been introduced between CI_DRM_11813_full and
> IGTPW_7398_full:
>
>
> New IGT tests (4)
>
> *
>
> igt@kms_pipe_crc_basic@read-crc@pipe-a-hdmi-a-3:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.54] s
> *
>
> igt@kms_pipe_crc_basic@read-crc@pipe-b-hdmi-a-3:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.45] s
> *
>
> igt@kms_pipe_crc_basic@read-crc@pipe-c-hdmi-a-3:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.44] s
> *
>
> igt@kms_pipe_crc_basic@read-crc@pipe-d-hdmi-a-3:
>
> o Statuses : 1 pass(s)
> o Exec time: [0.47] s
>
>
> Known issues
>
> Here are the changes found in IGTPW_7398_full that come from known issues:
>
>
> IGT changes
>
>
> Issues hit
>
> *
>
> igt@gem_create@create-massive:
>
> o shard-kbl: NOTRUN -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl4/igt@gem_create@create-massive.html>
> (i915#4991 <https://gitlab.freedesktop.org/drm/intel/issues/4991>)
> *
>
> igt@gem_ctx_exec@basic-nohangcheck:
>
> o shard-tglb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-tglb3/igt@gem_ctx_exec@basic-nohangcheck.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb1/igt@gem_ctx_exec@basic-nohangcheck.html>
> (i915#6268 <https://gitlab.freedesktop.org/drm/intel/issues/6268>)
> *
>
> igt@gem_ctx_isolation@preservation-s3@vcs0:
>
> o shard-kbl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-kbl6/igt@gem_ctx_isolation@preservation-s3@vcs0.html>
> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@vcs0.html>
> (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>)
> +2 similar issues
> *
>
> igt@gem_exec_balancer@parallel:
>
> o shard-iclb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb1/igt@gem_exec_balancer@parallel.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb3/igt@gem_exec_balancer@parallel.html>
> (i915#4525 <https://gitlab.freedesktop.org/drm/intel/issues/4525>)
> *
>
> igt@gem_exec_fair@basic-deadline:
>
> o
>
> shard-kbl: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl7/igt@gem_exec_fair@basic-deadline.html>
> (i915#6141 <https://gitlab.freedesktop.org/drm/intel/issues/6141>)
>
> o
>
> shard-apl: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl2/igt@gem_exec_fair@basic-deadline.html>
> (i915#6141 <https://gitlab.freedesktop.org/drm/intel/issues/6141>)
>
> o
>
> shard-tglb: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb3/igt@gem_exec_fair@basic-deadline.html>
> (i915#6141 <https://gitlab.freedesktop.org/drm/intel/issues/6141>)
>
> o
>
> shard-glk: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk2/igt@gem_exec_fair@basic-deadline.html>
> (i915#6141 <https://gitlab.freedesktop.org/drm/intel/issues/6141>)
>
> o
>
> shard-iclb: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb3/igt@gem_exec_fair@basic-deadline.html>
> (i915#6141 <https://gitlab.freedesktop.org/drm/intel/issues/6141>)
>
> *
>
> igt@gem_exec_fair@basic-none-rrul@rcs0:
>
> o shard-glk: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-glk5/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk7/igt@gem_exec_fair@basic-none-rrul@rcs0.html>
> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
> *
>
> igt@gem_exec_fair@basic-none@vecs0:
>
> o shard-apl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-apl8/igt@gem_exec_fair@basic-none@vecs0.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl7/igt@gem_exec_fair@basic-none@vecs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) +1
> similar issue
> *
>
> igt@gem_exec_fair@basic-pace@bcs0:
>
> o shard-iclb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb3/igt@gem_exec_fair@basic-pace@bcs0.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb7/igt@gem_exec_fair@basic-pace@bcs0.html>
> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
> *
>
> igt@gem_exec_fair@basic-pace@vcs0:
>
> o shard-kbl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs0.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl3/igt@gem_exec_fair@basic-pace@vcs0.html>
> (i915#2842 <https://gitlab.freedesktop.org/drm/intel/issues/2842>)
> *
>
> igt@gem_lmem_swapping@parallel-random-verify:
>
> o shard-kbl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl4/igt@gem_lmem_swapping@parallel-random-verify.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> i915#4613
> <https://gitlab.freedesktop.org/drm/intel/issues/4613>) +3
> similar issues
> *
>
> igt@gem_lmem_swapping@random-engines:
>
> o shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl3/igt@gem_lmem_swapping@random-engines.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> i915#4613 <https://gitlab.freedesktop.org/drm/intel/issues/4613>)
> *
>
> igt@gem_pread@exhaustion:
>
> o shard-apl: NOTRUN -> WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl3/igt@gem_pread@exhaustion.html>
> (i915#2658 <https://gitlab.freedesktop.org/drm/intel/issues/2658>)
> *
>
> igt@gem_pxp@reject-modify-context-protection-on:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb1/igt@gem_pxp@reject-modify-context-protection-on.html>
> (i915#4270 <https://gitlab.freedesktop.org/drm/intel/issues/4270>)
> *
>
> igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb3/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html>
> (i915#768 <https://gitlab.freedesktop.org/drm/intel/issues/768>)
> +1 similar issue
> *
>
> igt@i915_pm_dc@dc9-dpms:
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb3/igt@i915_pm_dc@dc9-dpms.html>
> (i915#4281 <https://gitlab.freedesktop.org/drm/intel/issues/4281>)
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb6/igt@i915_pm_dc@dc9-dpms.html>
> (i915#4281 <https://gitlab.freedesktop.org/drm/intel/issues/4281>)
>
> *
>
> igt@i915_pm_rc6_residency@rc6-idle:
>
> o shard-tglb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-tglb5/igt@i915_pm_rc6_residency@rc6-idle.html>
> -> WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb1/igt@i915_pm_rc6_residency@rc6-idle.html>
> (i915#2681 <https://gitlab.freedesktop.org/drm/intel/issues/2681>)
> *
>
> igt@i915_pm_rpm@pm-caching:
>
> o shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-snb6/igt@i915_pm_rpm@pm-caching.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +64
> similar issues
> *
>
> igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb1/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html>
> (i915#5286 <https://gitlab.freedesktop.org/drm/intel/issues/5286>)
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb5/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html>
> (i915#5286
> <https://gitlab.freedesktop.org/drm/intel/issues/5286>) +1
> similar issue
>
> *
>
> igt@kms_big_fb@4-tiled-addfb-size-overflow:
>
> o shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk7/igt@kms_big_fb@4-tiled-addfb-size-overflow.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +66
> similar issues
> *
>
> igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
>
> o shard-glk: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-glk7/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk9/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html>
> (i915#1888
> <https://gitlab.freedesktop.org/drm/intel/issues/1888> /
> i915#5138 <https://gitlab.freedesktop.org/drm/intel/issues/5138>)
> *
>
> igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb3/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html>
> (fdo#111615 <https://bugs.freedesktop.org/show_bug.cgi?id=111615>)
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb6/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html>
> (fdo#110723 <https://bugs.freedesktop.org/show_bug.cgi?id=110723>)
>
> *
>
> igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
>
> o
>
> shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk5/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> i915#3886
> <https://gitlab.freedesktop.org/drm/intel/issues/3886>) +3
> similar issues
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb1/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html>
> (fdo#109278
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278> /
> i915#3886
> <https://gitlab.freedesktop.org/drm/intel/issues/3886>) +3
> similar issues
>
> *
>
> igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb7/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html>
> (i915#3689
> <https://gitlab.freedesktop.org/drm/intel/issues/3689> /
> i915#3886
> <https://gitlab.freedesktop.org/drm/intel/issues/3886>) +1
> similar issue
> *
>
> igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb7/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs_cc.html>
> (i915#3689
> <https://gitlab.freedesktop.org/drm/intel/issues/3689> /
> i915#6095
> <https://gitlab.freedesktop.org/drm/intel/issues/6095>) +1
> similar issue
> *
>
> igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs_cc:
>
> o shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl1/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> i915#3886
> <https://gitlab.freedesktop.org/drm/intel/issues/3886>) +3
> similar issues
> *
>
> igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs:
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb7/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs.html>
> (fdo#109278
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278>) +8
> similar issues
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb1/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs.html>
> (i915#6095 <https://gitlab.freedesktop.org/drm/intel/issues/6095>)
>
> *
>
> igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
>
> o shard-kbl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl3/igt@kms_ccs@pipe-c-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> i915#3886
> <https://gitlab.freedesktop.org/drm/intel/issues/3886>) +5
> similar issues
> *
>
> igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_ccs:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb1/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_ccs.html>
> (i915#3689
> <https://gitlab.freedesktop.org/drm/intel/issues/3689>) +2
> similar issues
> *
>
> igt@kms_chamelium@hdmi-edid-read:
>
> o shard-snb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-snb7/igt@kms_chamelium@hdmi-edid-read.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3
> similar issues
> *
>
> igt@kms_chamelium@vga-hpd-without-ddc:
>
> o
>
> shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl1/igt@kms_chamelium@vga-hpd-without-ddc.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3
> similar issues
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb7/igt@kms_chamelium@vga-hpd-without-ddc.html>
> (fdo#109284
> <https://bugs.freedesktop.org/show_bug.cgi?id=109284> /
> fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3
> similar issues
>
> o
>
> shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk9/igt@kms_chamelium@vga-hpd-without-ddc.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +4
> similar issues
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb7/igt@kms_chamelium@vga-hpd-without-ddc.html>
> (fdo#109284
> <https://bugs.freedesktop.org/show_bug.cgi?id=109284> /
> fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +3
> similar issues
>
> *
>
> igt@kms_color@pipe-d-ctm-green-to-red:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb6/igt@kms_color@pipe-d-ctm-green-to-red.html>
> (fdo#109278
> <https://bugs.freedesktop.org/show_bug.cgi?id=109278> /
> i915#1149 <https://gitlab.freedesktop.org/drm/intel/issues/1149>)
> *
>
> igt@kms_color_chamelium@pipe-a-degamma:
>
> o shard-kbl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl6/igt@kms_color_chamelium@pipe-a-degamma.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> fdo#111827
> <https://bugs.freedesktop.org/show_bug.cgi?id=111827>) +9
> similar issues
> *
>
> igt@kms_content_protection@atomic-dpms:
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb2/igt@kms_content_protection@atomic-dpms.html>
> (i915#1063 <https://gitlab.freedesktop.org/drm/intel/issues/1063>)
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb7/igt@kms_content_protection@atomic-dpms.html>
> (fdo#109300
> <https://bugs.freedesktop.org/show_bug.cgi?id=109300> /
> fdo#111066 <https://bugs.freedesktop.org/show_bug.cgi?id=111066>)
>
> o
>
> shard-kbl: NOTRUN -> TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl4/igt@kms_content_protection@atomic-dpms.html>
> (i915#1319
> <https://gitlab.freedesktop.org/drm/intel/issues/1319>) +1
> similar issue
>
> o
>
> shard-apl: NOTRUN -> TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl7/igt@kms_content_protection@atomic-dpms.html>
> (i915#1319 <https://gitlab.freedesktop.org/drm/intel/issues/1319>)
>
> *
>
> igt@kms_cursor_crc@cursor-onscreen@pipe-a-edp-1-512x512:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb6/igt@kms_cursor_crc@cursor-onscreen@pipe-a-edp-1-512x512.html>
> (i915#3359
> <https://gitlab.freedesktop.org/drm/intel/issues/3359>) +7
> similar issues
> *
>
> igt@kms_cursor_crc@cursor-onscreen@pipe-c-edp-1-32x10:
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb6/igt@kms_cursor_crc@cursor-onscreen@pipe-c-edp-1-32x10.html>
> (i915#4462
> <https://gitlab.freedesktop.org/drm/intel/issues/4462>) +7
> similar issues
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb3/igt@kms_cursor_crc@cursor-onscreen@pipe-c-edp-1-32x10.html>
> (i915#4462
> <https://gitlab.freedesktop.org/drm/intel/issues/4462>) +5
> similar issues
>
> *
>
> igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
>
> o shard-glk: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-glk7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html>
> (i915#72 <https://gitlab.freedesktop.org/drm/intel/issues/72>)
> *
>
> igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions:
>
> o shard-iclb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb8/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions.html>
> (i915#2346 <https://gitlab.freedesktop.org/drm/intel/issues/2346>)
> *
>
> igt@kms_flip@2x-absolute-wf_vblank-interruptible:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb5/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html>
> (fdo#109274
> <https://bugs.freedesktop.org/show_bug.cgi?id=109274>) +2
> similar issues
> *
>
> igt@kms_flip@2x-flip-vs-expired-vblank:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb5/igt@kms_flip@2x-flip-vs-expired-vblank.html>
> (fdo#109274
> <https://bugs.freedesktop.org/show_bug.cgi?id=109274> /
> fdo#111825
> <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +1
> similar issue
> *
>
> igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2:
>
> o shard-glk: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html>
> (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
> *
>
> igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
>
> o shard-apl: NOTRUN -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl8/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html>
> (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>)
> +1 similar issue
> *
>
> igt@kms_flip@flip-vs-suspend@c-dp1:
>
> o shard-apl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-apl3/igt@kms_flip@flip-vs-suspend@c-dp1.html>
> -> DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl8/igt@kms_flip@flip-vs-suspend@c-dp1.html>
> (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>)
> +2 similar issues
> *
>
> igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
>
> o shard-glk: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-glk3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html>
> (i915#4911 <https://gitlab.freedesktop.org/drm/intel/issues/4911>)
> *
>
> igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
>
> o shard-glk: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html>
> (i915#1888
> <https://gitlab.freedesktop.org/drm/intel/issues/1888> /
> i915#2546
> <https://gitlab.freedesktop.org/drm/intel/issues/2546>) +1
> similar issue
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html>
> (fdo#109280
> <https://bugs.freedesktop.org/show_bug.cgi?id=109280> /
> fdo#111825
> <https://bugs.freedesktop.org/show_bug.cgi?id=111825>) +3
> similar issues
> *
>
> igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear:
>
> o shard-iclb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-linear.html>
> (i915#1888
> <https://gitlab.freedesktop.org/drm/intel/issues/1888> /
> i915#2546 <https://gitlab.freedesktop.org/drm/intel/issues/2546>)
> *
>
> igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt:
>
> o shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-plflip-blt.html>
> (fdo#109280
> <https://bugs.freedesktop.org/show_bug.cgi?id=109280>) +5
> similar issues
> *
>
> igt@kms_hdmi_inject@inject-audio:
>
> o shard-tglb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-tglb7/igt@kms_hdmi_inject@inject-audio.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb3/igt@kms_hdmi_inject@inject-audio.html>
> (i915#433 <https://gitlab.freedesktop.org/drm/intel/issues/433>)
> *
>
> igt@kms_hdr@bpc-switch@pipe-a-dp-1:
>
> o shard-kbl: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-kbl1/igt@kms_hdr@bpc-switch@pipe-a-dp-1.html>
> -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl6/igt@kms_hdr@bpc-switch@pipe-a-dp-1.html>
> (i915#1188 <https://gitlab.freedesktop.org/drm/intel/issues/1188>)
> *
>
> igt@kms_plane_alpha_blend@pipe-a-alpha-basic:
>
> o shard-kbl: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl7/igt@kms_plane_alpha_blend@pipe-a-alpha-basic.html>
> (fdo#108145
> <https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265
> <https://gitlab.freedesktop.org/drm/intel/issues/265>)
> *
>
> igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb:
>
> o shard-glk: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk6/igt@kms_plane_alpha_blend@pipe-a-alpha-opaque-fb.html>
> (fdo#108145
> <https://bugs.freedesktop.org/show_bug.cgi?id=108145> / i915#265
> <https://gitlab.freedesktop.org/drm/intel/issues/265>)
> *
>
> igt@kms_plane_cursor@pipe-d-overlay-size-64:
>
> o shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl7/igt@kms_plane_cursor@pipe-d-overlay-size-64.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +54
> similar issues
> *
>
> igt@kms_plane_multiple@atomic-pipe-c-tiling-4:
>
> o shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb6/igt@kms_plane_multiple@atomic-pipe-c-tiling-4.html>
> (i915#5288 <https://gitlab.freedesktop.org/drm/intel/issues/5288>)
> *
>
> igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-edp-1:
>
> o shard-iclb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-edp-1.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-a-edp-1.html>
> (i915#5235
> <https://gitlab.freedesktop.org/drm/intel/issues/5235>) +2
> similar issues
> *
>
> igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
>
> o
>
> shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl4/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658
> <https://gitlab.freedesktop.org/drm/intel/issues/658>) +1
> similar issue
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html>
> (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>)
>
> o
>
> shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk1/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658
> <https://gitlab.freedesktop.org/drm/intel/issues/658>)
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html>
> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
>
> o
>
> shard-kbl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl6/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> / i915#658
> <https://gitlab.freedesktop.org/drm/intel/issues/658>) +2
> similar issues
>
> *
>
> igt@kms_psr@cursor_render:
>
> o shard-kbl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl4/igt@kms_psr@cursor_render.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) +129
> similar issues
> *
>
> igt@kms_psr@psr2_primary_page_flip:
>
> o shard-iclb: PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb2/igt@kms_psr@psr2_primary_page_flip.html>
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb6/igt@kms_psr@psr2_primary_page_flip.html>
> (fdo#109441
> <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) +1
> similar issue
> *
>
> igt@kms_vblank@pipe-a-accuracy-idle:
>
> o shard-glk: NOTRUN -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk9/igt@kms_vblank@pipe-a-accuracy-idle.html>
> (i915#43 <https://gitlab.freedesktop.org/drm/intel/issues/43>)
> *
>
> igt@kms_writeback@writeback-invalid-parameters:
>
> o
>
> shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk8/igt@kms_writeback@writeback-invalid-parameters.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> i915#2437 <https://gitlab.freedesktop.org/drm/intel/issues/2437>)
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb8/igt@kms_writeback@writeback-invalid-parameters.html>
> (i915#2437 <https://gitlab.freedesktop.org/drm/intel/issues/2437>)
>
> *
>
> igt@nouveau_crc@pipe-c-source-outp-inactive:
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb2/igt@nouveau_crc@pipe-c-source-outp-inactive.html>
> (i915#2530 <https://gitlab.freedesktop.org/drm/intel/issues/2530>)
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb8/igt@nouveau_crc@pipe-c-source-outp-inactive.html>
> (i915#2530 <https://gitlab.freedesktop.org/drm/intel/issues/2530>)
>
> *
>
> igt@prime_nv_pcopy@test1_macro:
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb6/igt@prime_nv_pcopy@test1_macro.html>
> (fdo#109291
> <https://bugs.freedesktop.org/show_bug.cgi?id=109291>) +1
> similar issue
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb5/igt@prime_nv_pcopy@test1_macro.html>
> (fdo#109291 <https://bugs.freedesktop.org/show_bug.cgi?id=109291>)
>
> *
>
> igt@sysfs_clients@recycle:
>
> o shard-apl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl7/igt@sysfs_clients@recycle.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> i915#2994
> <https://gitlab.freedesktop.org/drm/intel/issues/2994>) +1
> similar issue
> *
>
> igt@sysfs_clients@split-50:
>
> o
>
> shard-tglb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb6/igt@sysfs_clients@split-50.html>
> (i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>)
>
> o
>
> shard-glk: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk9/igt@sysfs_clients@split-50.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>)
>
> o
>
> shard-iclb: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb2/igt@sysfs_clients@split-50.html>
> (i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>)
>
> o
>
> shard-kbl: NOTRUN -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl3/igt@sysfs_clients@split-50.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271> /
> i915#2994 <https://gitlab.freedesktop.org/drm/intel/issues/2994>)
>
>
> Possible fixes
>
> *
>
> igt@fbdev@pan:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-1/igt@fbdev@pan.html>
> (i915#2582
> <https://gitlab.freedesktop.org/drm/intel/issues/2582>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-1/igt@fbdev@pan.html>
> +1 similar issue
> *
>
> igt@gem_ctx_persistence@legacy-engines-hang@vebox:
>
> o {shard-dg1}: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-dg1-15/igt@gem_ctx_persistence@legacy-engines-hang@vebox.html>
> (i915#4883
> <https://gitlab.freedesktop.org/drm/intel/issues/4883>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-dg1-18/igt@gem_ctx_persistence@legacy-engines-hang@vebox.html>
> *
>
> igt@gem_eio@in-flight-contexts-immediate:
>
> o {shard-rkl}: TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-1/igt@gem_eio@in-flight-contexts-immediate.html>
> (i915#3063
> <https://gitlab.freedesktop.org/drm/intel/issues/3063>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-2/igt@gem_eio@in-flight-contexts-immediate.html>
> +1 similar issue
> *
>
> igt@gem_eio@in-flight-immediate:
>
> o shard-tglb: TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-tglb5/igt@gem_eio@in-flight-immediate.html>
> (i915#3063
> <https://gitlab.freedesktop.org/drm/intel/issues/3063>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb5/igt@gem_eio@in-flight-immediate.html>
> *
>
> igt@gem_eio@kms:
>
> o shard-tglb: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-tglb1/igt@gem_eio@kms.html>
> (i915#5784
> <https://gitlab.freedesktop.org/drm/intel/issues/5784>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb7/igt@gem_eio@kms.html>
> *
>
> igt@gem_eio@unwedge-stress:
>
> o
>
> shard-iclb: TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb2/igt@gem_eio@unwedge-stress.html>
> (i915#3070
> <https://gitlab.freedesktop.org/drm/intel/issues/3070>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb5/igt@gem_eio@unwedge-stress.html>
>
> o
>
> {shard-dg1}: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-dg1-17/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_7398/shard-dg1-16/igt@gem_eio@unwedge-stress.html>
>
> o
>
> {shard-tglu}: TIMEOUT
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-tglu-3/igt@gem_eio@unwedge-stress.html>
> (i915#3063
> <https://gitlab.freedesktop.org/drm/intel/issues/3063>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglu-6/igt@gem_eio@unwedge-stress.html>
>
> *
>
> igt@gem_exec_balancer@fairslice:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-5/igt@gem_exec_balancer@fairslice.html>
> (i915#6259
> <https://gitlab.freedesktop.org/drm/intel/issues/6259>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@gem_exec_balancer@fairslice.html>
> *
>
> igt@gem_exec_balancer@parallel-keep-submit-fence:
>
> o shard-iclb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb7/igt@gem_exec_balancer@parallel-keep-submit-fence.html>
> (i915#4525
> <https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb2/igt@gem_exec_balancer@parallel-keep-submit-fence.html>
> *
>
> igt@gem_exec_fair@basic-none-share@rcs0:
>
> o
>
> {shard-tglu}: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglu-3/igt@gem_exec_fair@basic-none-share@rcs0.html>
>
> o
>
> shard-iclb: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb2/igt@gem_exec_fair@basic-none-share@rcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb2/igt@gem_exec_fair@basic-none-share@rcs0.html>
>
> *
>
> igt@gem_exec_fair@basic-none@rcs0:
>
> o shard-kbl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-kbl7/igt@gem_exec_fair@basic-none@rcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl4/igt@gem_exec_fair@basic-none@rcs0.html>
> +1 similar issue
> *
>
> igt@gem_exec_fair@basic-none@vcs0:
>
> o shard-glk: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-glk2/igt@gem_exec_fair@basic-none@vcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk1/igt@gem_exec_fair@basic-none@vcs0.html>
> *
>
> igt@gem_exec_fair@basic-pace-share@rcs0:
>
> o shard-tglb: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-tglb3/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_7398/shard-tglb6/igt@gem_exec_fair@basic-pace-share@rcs0.html>
> *
>
> igt@gem_exec_fair@basic-pace-solo@rcs0:
>
> o {shard-rkl}: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-1/igt@gem_exec_fair@basic-pace-solo@rcs0.html>
> (i915#2842
> <https://gitlab.freedesktop.org/drm/intel/issues/2842>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-5/igt@gem_exec_fair@basic-pace-solo@rcs0.html>
> *
>
> igt@gem_exec_fair@basic-pace@vcs1:
>
> o shard-kbl: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-kbl4/igt@gem_exec_fair@basic-pace@vcs1.html>
> (fdo#109271
> <https://bugs.freedesktop.org/show_bug.cgi?id=109271>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl3/igt@gem_exec_fair@basic-pace@vcs1.html>
> *
>
> igt@gem_exec_reloc@basic-range-active:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-2/igt@gem_exec_reloc@basic-range-active.html>
> (i915#3281
> <https://gitlab.freedesktop.org/drm/intel/issues/3281>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-5/igt@gem_exec_reloc@basic-range-active.html>
> +4 similar issues
> *
>
> igt@gem_exec_whisper@basic-queues-forked-all:
>
> o shard-iclb: INCOMPLETE
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb2/igt@gem_exec_whisper@basic-queues-forked-all.html>
> (i915#5304
> <https://gitlab.freedesktop.org/drm/intel/issues/5304> /
> i915#5498
> <https://gitlab.freedesktop.org/drm/intel/issues/5498>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb7/igt@gem_exec_whisper@basic-queues-forked-all.html>
> *
>
> igt@gem_readwrite@write-bad-handle:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-2/igt@gem_readwrite@write-bad-handle.html>
> (i915#3282
> <https://gitlab.freedesktop.org/drm/intel/issues/3282>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-5/igt@gem_readwrite@write-bad-handle.html>
> *
>
> igt@gem_render_copy@y-tiled-ccs-to-y-tiled@lmem0:
>
> o {shard-dg1}: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-dg1-19/igt@gem_render_copy@y-tiled-ccs-to-y-tiled@lmem0.html>
> (i915#4842
> <https://gitlab.freedesktop.org/drm/intel/issues/4842>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-dg1-15/igt@gem_render_copy@y-tiled-ccs-to-y-tiled@lmem0.html>
> +13 similar issues
> *
>
> igt@gen9_exec_parse@allowed-all:
>
> o shard-glk: DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-glk6/igt@gen9_exec_parse@allowed-all.html>
> (i915#5566
> <https://gitlab.freedesktop.org/drm/intel/issues/5566> /
> i915#716 <https://gitlab.freedesktop.org/drm/intel/issues/716>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk3/igt@gen9_exec_parse@allowed-all.html>
> +1 similar issue
> *
>
> igt@gen9_exec_parse@batch-invalid-length:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-1/igt@gen9_exec_parse@batch-invalid-length.html>
> (i915#2527
> <https://gitlab.freedesktop.org/drm/intel/issues/2527>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html>
> +1 similar issue
> *
>
> igt@i915_pm_dc@dc5-psr:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-5/igt@i915_pm_dc@dc5-psr.html>
> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@i915_pm_dc@dc5-psr.html>
> +1 similar issue
> *
>
> igt@i915_pm_rpm@cursor-dpms:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-5/igt@i915_pm_rpm@cursor-dpms.html>
> (i915#1849
> <https://gitlab.freedesktop.org/drm/intel/issues/1849>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@i915_pm_rpm@cursor-dpms.html>
> *
>
> igt@i915_selftest@live@hangcheck:
>
> o shard-tglb: DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-tglb5/igt@i915_selftest@live@hangcheck.html>
> (i915#5591
> <https://gitlab.freedesktop.org/drm/intel/issues/5591>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-tglb7/igt@i915_selftest@live@hangcheck.html>
> *
>
> igt@kms_color@pipe-a-ctm-0-75:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-1/igt@kms_color@pipe-a-ctm-0-75.html>
> (i915#1149
> <https://gitlab.freedesktop.org/drm/intel/issues/1149> /
> i915#1849 <https://gitlab.freedesktop.org/drm/intel/issues/1849>
> / i915#4070
> <https://gitlab.freedesktop.org/drm/intel/issues/4070> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@kms_color@pipe-a-ctm-0-75.html>
> +1 similar issue
> *
>
> igt@kms_color@pipe-c-invalid-ctm-matrix-sizes:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-1/igt@kms_color@pipe-c-invalid-ctm-matrix-sizes.html>
> (i915#4070
> <https://gitlab.freedesktop.org/drm/intel/issues/4070>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-5/igt@kms_color@pipe-c-invalid-ctm-matrix-sizes.html>
> *
>
> igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1:
>
> o shard-kbl: DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-kbl7/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html>
> (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl6/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html>
> +4 similar issues
> *
>
> igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-2/igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled.html>
> (fdo#111314
> <https://bugs.freedesktop.org/show_bug.cgi?id=111314> /
> i915#4098 <https://gitlab.freedesktop.org/drm/intel/issues/4098>
> / i915#4369
> <https://gitlab.freedesktop.org/drm/intel/issues/4369>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled.html>
> +3 similar issues
> *
>
> igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2:
>
> o shard-glk: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-glk9/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html>
> (i915#79 <https://gitlab.freedesktop.org/drm/intel/issues/79>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-glk8/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html>
> +1 similar issue
> *
>
> igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
>
> o shard-iclb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html>
> (i915#3701
> <https://gitlab.freedesktop.org/drm/intel/issues/3701>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html>
> *
>
> igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html>
> (i915#1849
> <https://gitlab.freedesktop.org/drm/intel/issues/1849> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html>
> +26 similar issues
> *
>
> igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1:
>
> o shard-kbl: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-kbl3/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html>
> (i915#1188
> <https://gitlab.freedesktop.org/drm/intel/issues/1188>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-kbl3/igt@kms_hdr@bpc-switch-suspend@pipe-a-dp-1.html>
> *
>
> igt@kms_invalid_mode@zero-clock:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-5/igt@kms_invalid_mode@zero-clock.html>
> (i915#4278
> <https://gitlab.freedesktop.org/drm/intel/issues/4278>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@kms_invalid_mode@zero-clock.html>
> +1 similar issue
> *
>
> igt@kms_mmap_write_crc@main:
>
> o {shard-dg1}: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-dg1-18/igt@kms_mmap_write_crc@main.html>
> (i915#5303
> <https://gitlab.freedesktop.org/drm/intel/issues/5303>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-dg1-15/igt@kms_mmap_write_crc@main.html>
> *
>
> igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-2/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html>
> (i915#1849
> <https://gitlab.freedesktop.org/drm/intel/issues/1849> /
> i915#4070 <https://gitlab.freedesktop.org/drm/intel/issues/4070>
> / i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html>
> *
>
> igt@kms_psr@cursor_mmap_cpu:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-5/igt@kms_psr@cursor_mmap_cpu.html>
> (i915#1072
> <https://gitlab.freedesktop.org/drm/intel/issues/1072>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@kms_psr@cursor_mmap_cpu.html>
> +2 similar issues
> *
>
> igt@kms_psr@psr2_sprite_mmap_gtt:
>
> o shard-iclb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb6/igt@kms_psr@psr2_sprite_mmap_gtt.html>
> (fdo#109441
> <https://bugs.freedesktop.org/show_bug.cgi?id=109441>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html>
> +3 similar issues
> *
>
> igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
> (i915#5461
> <https://gitlab.freedesktop.org/drm/intel/issues/5461>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html>
> *
>
> igt@kms_universal_plane@cursor-fb-leak-pipe-b:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-2/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4070 <https://gitlab.freedesktop.org/drm/intel/issues/4070>
> / i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html>
> *
>
> igt@kms_vblank@pipe-a-wait-forked-busy-hang:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-5/igt@kms_vblank@pipe-a-wait-forked-busy-hang.html>
> (i915#1845
> <https://gitlab.freedesktop.org/drm/intel/issues/1845> /
> i915#4098
> <https://gitlab.freedesktop.org/drm/intel/issues/4098>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-6/igt@kms_vblank@pipe-a-wait-forked-busy-hang.html>
> +25 similar issues
> *
>
> igt@kms_vblank@pipe-b-ts-continuation-suspend:
>
> o shard-apl: DMESG-WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-apl8/igt@kms_vblank@pipe-b-ts-continuation-suspend.html>
> (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>)
> -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl4/igt@kms_vblank@pipe-b-ts-continuation-suspend.html>
> *
>
> igt@perf@gen12-mi-rpc:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-5/igt@perf@gen12-mi-rpc.html>
> (fdo#109289
> <https://bugs.freedesktop.org/show_bug.cgi?id=109289>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-2/igt@perf@gen12-mi-rpc.html>
> *
>
> igt@prime_vgem@basic-fence-read:
>
> o {shard-rkl}: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-rkl-1/igt@prime_vgem@basic-fence-read.html>
> (fdo#109295
> <https://bugs.freedesktop.org/show_bug.cgi?id=109295> /
> i915#3291 <https://gitlab.freedesktop.org/drm/intel/issues/3291>
> / i915#3708
> <https://gitlab.freedesktop.org/drm/intel/issues/3708>) -> PASS
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-rkl-5/igt@prime_vgem@basic-fence-read.html>
>
>
> Warnings
>
> *
>
> igt@gem_exec_balancer@parallel-ordering:
>
> o shard-iclb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb7/igt@gem_exec_balancer@parallel-ordering.html>
> (i915#4525
> <https://gitlab.freedesktop.org/drm/intel/issues/4525>) -> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb2/igt@gem_exec_balancer@parallel-ordering.html>
> (i915#6117 <https://gitlab.freedesktop.org/drm/intel/issues/6117>)
> *
>
> igt@i915_pm_rc6_residency@rc6-idle:
>
> o shard-iclb: FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb8/igt@i915_pm_rc6_residency@rc6-idle.html>
> (i915#2680
> <https://gitlab.freedesktop.org/drm/intel/issues/2680> /
> i915#2684
> <https://gitlab.freedesktop.org/drm/intel/issues/2684>) -> WARN
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb5/igt@i915_pm_rc6_residency@rc6-idle.html>
> (i915#2684 <https://gitlab.freedesktop.org/drm/intel/issues/2684>)
> *
>
> igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
>
> o shard-iclb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb5/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html>
> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
> -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html>
> (i915#2920 <https://gitlab.freedesktop.org/drm/intel/issues/2920>)
> *
>
> igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
>
> o shard-iclb: SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-iclb2/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html>
> (i915#2920
> <https://gitlab.freedesktop.org/drm/intel/issues/2920>) -> SKIP
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-iclb8/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html>
> (i915#658 <https://gitlab.freedesktop.org/drm/intel/issues/658>)
> *
>
> igt@runner@aborted:
>
> o shard-apl: (FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-apl4/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-apl8/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11813/shard-apl4/igt@runner@aborted.html>)
> (i915#3002
> <https://gitlab.freedesktop.org/drm/intel/issues/3002> /
> i915#4312 <https://gitlab.freedesktop.org/drm/intel/issues/4312>
> / i915#5257
> <https://gitlab.freedesktop.org/drm/intel/issues/5257>) -> (FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl8/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl3/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl8/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl7/igt@runner@aborted.html>,
> FAIL
> <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/shard-apl8/igt@runner@aborted.html>)
> (i915#180 <https://gitlab.freedesktop.org/drm/intel/issues/180>
> / i915#3002
> <https://gitlab.freedesktop.org/drm/intel/issues/3002> /
> i915#4312 <https://gitlab.freedesktop.org/drm/intel/issues/4312>
> / i915#5257 <https://gitlab.freedesktop.org/drm/intel/issues/5257>)
>
> {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_6542 -> IGTPW_7398
> * Piglit: piglit_4509 -> None
>
> CI-20190529: 20190529
> CI_DRM_11813: 650ceff1f00b3be875397326625c0a90fa8ee42b @
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_7398: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_7398/index.html
> IGT_6542: d38a476ee4b9f9a95d8f452de0d66cc52f7f079b @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @
> git://anongit.freedesktop.org/piglit
>
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2022-06-28 14:41 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-06-27 16:10 [igt-dev] [PATCH i-g-t 1/3] tests/i915/gem_eio: fix uaf Matthew Auld
2022-06-27 16:10 ` [igt-dev] [PATCH i-g-t 2/3] tests/i915/kms_mmap_write_crc: handle missing gem_get_caching() Matthew Auld
2022-06-28 12:26 ` Gwan-gyeong Mun
2022-06-27 16:10 ` [igt-dev] [PATCH i-g-t 3/3] tests/i915: adapt __copy_ccs for discrete Matthew Auld
2022-06-27 18:10 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] tests/i915/gem_eio: fix uaf Patchwork
2022-06-28 4:46 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-06-28 14:41 ` Matthew Auld
2022-06-28 10:24 ` [igt-dev] [PATCH i-g-t 1/3] " Das, Nirmoy
2022-06-28 10:24 ` Gwan-gyeong Mun
2022-06-28 12:47 ` Matthew Auld
2022-06-28 13:59 ` Gwan-gyeong Mun
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox