* [PATCH] drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl
@ 2025-09-18 21:45 Jonathan Cavitt
2025-09-19 0:43 ` ✓ i915.CI.BAT: success for " Patchwork
` (6 more replies)
0 siblings, 7 replies; 8+ messages in thread
From: Jonathan Cavitt @ 2025-09-18 21:45 UTC (permalink / raw)
To: intel-gfx; +Cc: saurabhg.gupta, alex.zuo, jonathan.cavitt, andi.shyti
We do not need a case switch to check cap_type_id in intel_vgpu_ioctl
for various reasons (it's impossible to hit the default case in the
current code, there's only one valid case to check, the error handling
code overlaps in both cases, etc.). Simplify the case switch into a
single if statement. This has the additional effect of simplifying the
error handling code.
Note that it is still currently impossible for
'if (cap_type_id == VFIO_REGION_INFO_CAP_SPARSE_MMAP)'
to fail, but we should still guard against the possibility of this
changing in the future.
Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
Cc: Andi Shyti <andi.shyti@linux.intel.com>
---
drivers/gpu/drm/i915/gvt/kvmgt.c | 13 ++++---------
1 file changed, 4 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/i915/gvt/kvmgt.c b/drivers/gpu/drm/i915/gvt/kvmgt.c
index 69830a5c49d3..70af86d46fe8 100644
--- a/drivers/gpu/drm/i915/gvt/kvmgt.c
+++ b/drivers/gpu/drm/i915/gvt/kvmgt.c
@@ -1279,20 +1279,15 @@ static long intel_vgpu_ioctl(struct vfio_device *vfio_dev, unsigned int cmd,
}
if ((info.flags & VFIO_REGION_INFO_FLAG_CAPS) && sparse) {
- switch (cap_type_id) {
- case VFIO_REGION_INFO_CAP_SPARSE_MMAP:
+ ret = -EINVAL;
+ if (cap_type_id == VFIO_REGION_INFO_CAP_SPARSE_MMAP)
ret = vfio_info_add_capability(&caps,
&sparse->header,
struct_size(sparse, areas,
sparse->nr_areas));
- if (ret) {
- kfree(sparse);
- return ret;
- }
- break;
- default:
+ if (ret) {
kfree(sparse);
- return -EINVAL;
+ return ret;
}
}
--
2.43.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* ✓ i915.CI.BAT: success for drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl
2025-09-18 21:45 [PATCH] drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl Jonathan Cavitt
@ 2025-09-19 0:43 ` Patchwork
2025-09-19 10:22 ` [PATCH] " Andi Shyti
` (5 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-09-19 0:43 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 5677 bytes --]
== Series Details ==
Series: drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl
URL : https://patchwork.freedesktop.org/series/154742/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_17237 -> Patchwork_154742v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/index.html
Participating hosts (42 -> 42)
------------------------------
Additional (1): fi-elk-e7500
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_154742v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- bat-rpls-4: [PASS][1] -> [DMESG-WARN][2] ([i915#13400])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/bat-rpls-4/igt@core_hotunplug@unbind-rebind.html
* igt@gem_lmem_swapping@basic:
- bat-arlh-2: NOTRUN -> [SKIP][3] ([i915#10213] / [i915#11346] / [i915#11671]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/bat-arlh-2/igt@gem_lmem_swapping@basic.html
* igt@i915_module_load@load:
- bat-mtlp-9: [PASS][4] -> [DMESG-WARN][5] ([i915#13494])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/bat-mtlp-9/igt@i915_module_load@load.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/bat-mtlp-9/igt@i915_module_load@load.html
* igt@i915_selftest@live:
- bat-adlp-6: [PASS][6] -> [ABORT][7] ([i915#14365]) +1 other test abort
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/bat-adlp-6/igt@i915_selftest@live.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/bat-adlp-6/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-9: [PASS][8] -> [DMESG-FAIL][9] ([i915#12061]) +1 other test dmesg-fail
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1:
- fi-elk-e7500: NOTRUN -> [SKIP][10] +25 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/fi-elk-e7500/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- bat-arlh-2: [INCOMPLETE][11] -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/bat-arlh-2/igt@core_hotunplug@unbind-rebind.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/bat-arlh-2/igt@core_hotunplug@unbind-rebind.html
* igt@dmabuf@all-tests:
- bat-apl-1: [ABORT][13] ([i915#12904]) -> [PASS][14] +1 other test pass
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/bat-apl-1/igt@dmabuf@all-tests.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/bat-apl-1/igt@dmabuf@all-tests.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [DMESG-FAIL][15] ([i915#12061]) -> [PASS][16] +1 other test pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- bat-mtlp-6: [DMESG-FAIL][17] ([i915#12061]) -> [PASS][18] +1 other test pass
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
- bat-dg2-11: [DMESG-FAIL][19] ([i915#12061]) -> [PASS][20] +1 other test pass
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/bat-dg2-11/igt@i915_selftest@live@workarounds.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/bat-dg2-11/igt@i915_selftest@live@workarounds.html
* igt@kms_pm_rpm@basic-rte:
- bat-rpls-4: [DMESG-WARN][21] ([i915#13400]) -> [PASS][22]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html
[i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213
[i915#11346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11346
[i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400
[i915#13494]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13494
[i915#14365]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14365
Build changes
-------------
* Linux: CI_DRM_17237 -> Patchwork_154742v1
CI-20190529: 20190529
CI_DRM_17237: 3e79699fa1b216e9246e406a8649235e894772d2 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8543: 8543
Patchwork_154742v1: 3e79699fa1b216e9246e406a8649235e894772d2 @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/index.html
[-- Attachment #2: Type: text/html, Size: 6827 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl
2025-09-18 21:45 [PATCH] drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl Jonathan Cavitt
2025-09-19 0:43 ` ✓ i915.CI.BAT: success for " Patchwork
@ 2025-09-19 10:22 ` Andi Shyti
2025-09-19 22:10 ` ✗ i915.CI.Full: failure for " Patchwork
` (4 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Andi Shyti @ 2025-09-19 10:22 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: intel-gfx, saurabhg.gupta, alex.zuo, andi.shyti
Hi Jonathan,
On Thu, Sep 18, 2025 at 09:45:16PM +0000, Jonathan Cavitt wrote:
> We do not need a case switch to check cap_type_id in intel_vgpu_ioctl
> for various reasons (it's impossible to hit the default case in the
> current code, there's only one valid case to check, the error handling
> code overlaps in both cases, etc.). Simplify the case switch into a
> single if statement. This has the additional effect of simplifying the
> error handling code.
>
> Note that it is still currently impossible for
> 'if (cap_type_id == VFIO_REGION_INFO_CAP_SPARSE_MMAP)'
> to fail, but we should still guard against the possibility of this
> changing in the future.
>
> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> Cc: Andi Shyti <andi.shyti@linux.intel.com>
Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
Thanks,
Andi
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.Full: failure for drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl
2025-09-18 21:45 [PATCH] drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl Jonathan Cavitt
2025-09-19 0:43 ` ✓ i915.CI.BAT: success for " Patchwork
2025-09-19 10:22 ` [PATCH] " Andi Shyti
@ 2025-09-19 22:10 ` Patchwork
2025-09-22 2:50 ` [PATCH] " Zhenyu Wang
` (3 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-09-19 22:10 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 139199 bytes --]
== Series Details ==
Series: drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl
URL : https://patchwork.freedesktop.org/series/154742/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_17237_full -> Patchwork_154742v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_154742v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_154742v1_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (11 -> 12)
------------------------------
Additional (1): shard-dg2-set2
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_154742v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-rkl: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
Known issues
------------
Here are the changes found in Patchwork_154742v1_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2-9: NOTRUN -> [SKIP][3] ([i915#8411])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu-1: NOTRUN -> [SKIP][4] ([i915#11078])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_ccs@block-copy-compressed:
- shard-dg1: NOTRUN -> [SKIP][5] ([i915#3555] / [i915#9323])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-14/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-tglu: NOTRUN -> [SKIP][6] ([i915#3555] / [i915#9323])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-8/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@suspend-resume:
- shard-dg2-9: NOTRUN -> [INCOMPLETE][7] ([i915#13356])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-smem-lmem0:
- shard-dg2-9: NOTRUN -> [INCOMPLETE][8] ([i915#12392] / [i915#13356])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-smem-lmem0.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-glk10: NOTRUN -> [INCOMPLETE][9] ([i915#12353]) +1 other test incomplete
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-glk10/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_persistence@legacy-engines-cleanup:
- shard-snb: NOTRUN -> [SKIP][10] ([i915#1099])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-snb1/igt@gem_ctx_persistence@legacy-engines-cleanup.html
* igt@gem_ctx_sseu@engines:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#280])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-7/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@in-flight-suspend:
- shard-dg1: [PASS][12] -> [DMESG-WARN][13] ([i915#4391] / [i915#4423])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg1-14/igt@gem_eio@in-flight-suspend.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-17/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_balancer@bonded-pair:
- shard-dg2: NOTRUN -> [SKIP][14] ([i915#4771])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_capture@capture-invisible:
- shard-glk10: NOTRUN -> [SKIP][15] ([i915#6334]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-glk10/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#3539] / [i915#4852]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_reloc@basic-softpin:
- shard-dg2: NOTRUN -> [SKIP][17] ([i915#3281]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_reloc@basic-write-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][18] ([i915#3281]) +4 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@gem_exec_reloc@basic-write-gtt.html
* igt@gem_fence_thrash@bo-write-verify-x:
- shard-dg2: NOTRUN -> [SKIP][19] ([i915#4860]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@gem_fence_thrash@bo-write-verify-x.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#4860])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-14/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglu-1: NOTRUN -> [SKIP][21] ([i915#4613])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#284])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@gem_media_vme.html
* igt@gem_mmap@big-bo:
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#4083])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-14/igt@gem_mmap@big-bo.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-dg2-9: NOTRUN -> [SKIP][24] ([i915#4077]) +3 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_gtt@hang-user:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#4077])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@gem_mmap_gtt@hang-user.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [PASS][26] -> [ABORT][27] ([i915#14809]) +1 other test abort
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-mtlp-2/igt@gem_mmap_offset@clear-via-pagefault.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-mtlp-8/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@gem_mmap_wc@coherency:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#4083]) +3 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@gem_mmap_wc@coherency.html
* igt@gem_mmap_wc@copy:
- shard-dg2-9: NOTRUN -> [SKIP][29] ([i915#4083]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@set-cache-level:
- shard-rkl: [PASS][30] -> [SKIP][31] ([i915#14544] / [i915#1850])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-7/igt@gem_mmap_wc@set-cache-level.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2-9: NOTRUN -> [SKIP][32] ([i915#3282]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@write-snoop:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#3282]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@gem_partial_pwrite_pread@write-snoop.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#3282])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-14/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu: NOTRUN -> [SKIP][35] ([i915#13398])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-8/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4270]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-dg2-9: NOTRUN -> [SKIP][37] ([i915#4270]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@gem_pxp@reject-modify-context-protection-off-2.html
- shard-rkl: [PASS][38] -> [TIMEOUT][39] ([i915#12917] / [i915#12964])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-8/igt@gem_pxp@reject-modify-context-protection-off-2.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-2/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][40] ([i915#5190] / [i915#8428])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html
* igt@gem_render_copy@yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#5190] / [i915#8428]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@gem_render_copy@yf-tiled.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#4885])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@gem_softpin@evict-snoop.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: NOTRUN -> [INCOMPLETE][43] ([i915#13809])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-glk5/igt@gem_softpin@noreloc-s3.html
* igt@gem_tiled_pread_basic:
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#4079])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@gem_tiled_pread_basic.html
* igt@gem_userptr_blits@coherency-sync:
- shard-tglu: NOTRUN -> [SKIP][45] ([i915#3297]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-7/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3297])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@gem_userptr_blits@readonly-unsync.html
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#3297])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-14/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_workarounds@suspend-resume:
- shard-tglu: NOTRUN -> [ABORT][48] ([i915#14850])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-8/igt@gem_workarounds@suspend-resume.html
* igt@gen3_mixed_blits:
- shard-dg2-9: NOTRUN -> [SKIP][49] +5 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@gen3_mixed_blits.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglu: NOTRUN -> [SKIP][50] ([i915#2527] / [i915#2856]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-7/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#2856])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@cmd-crossing-page:
- shard-dg2-9: NOTRUN -> [SKIP][52] ([i915#2856]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@gen9_exec_parse@cmd-crossing-page.html
* igt@i915_drm_fdinfo@all-busy-idle-check-all:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#14123])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@i915_drm_fdinfo@all-busy-idle-check-all.html
- shard-dg1: NOTRUN -> [SKIP][54] ([i915#14123])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-14/igt@i915_drm_fdinfo@all-busy-idle-check-all.html
* igt@i915_drm_fdinfo@most-busy-check-all@vecs0:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#14073]) +7 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@i915_drm_fdinfo@most-busy-check-all@vecs0.html
* igt@i915_drm_fdinfo@virtual-busy:
- shard-dg2-9: NOTRUN -> [SKIP][56] ([i915#14118])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@i915_drm_fdinfo@virtual-busy.html
* igt@i915_drm_fdinfo@virtual-busy-idle:
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#14118])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@i915_drm_fdinfo@virtual-busy-idle.html
* igt@i915_module_load@reload-no-display:
- shard-dg1: [PASS][58] -> [DMESG-WARN][59] ([i915#13029] / [i915#14545])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg1-17/igt@i915_module_load@reload-no-display.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-13/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@resize-bar:
- shard-dg2: NOTRUN -> [DMESG-WARN][60] ([i915#14545])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: NOTRUN -> [WARN][61] ([i915#13790] / [i915#2681]) +1 other test warn
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rpm@system-suspend:
- shard-dg1: [PASS][62] -> [DMESG-WARN][63] ([i915#4423]) +1 other test dmesg-warn
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg1-12/igt@i915_pm_rpm@system-suspend.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-18/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rps@basic-api:
- shard-dg2-9: NOTRUN -> [SKIP][64] ([i915#11681] / [i915#6621])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#11681] / [i915#6621])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_query@hwconfig_table:
- shard-tglu-1: NOTRUN -> [SKIP][66] ([i915#6245])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-1/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: NOTRUN -> [DMESG-FAIL][67] ([i915#12061]) +1 other test dmesg-fail
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@i915_selftest@live@workarounds.html
- shard-mtlp: [PASS][68] -> [DMESG-FAIL][69] ([i915#12061]) +1 other test dmesg-fail
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-mtlp-4/igt@i915_selftest@live@workarounds.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-mtlp-4/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@fence-restore-untiled:
- shard-glk: NOTRUN -> [INCOMPLETE][70] ([i915#4817])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-glk1/igt@i915_suspend@fence-restore-untiled.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu: NOTRUN -> [SKIP][71] ([i915#7707])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-8/igt@intel_hwmon@hwmon-read.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg2: [PASS][72] -> [FAIL][73] ([i915#5956]) +1 other test fail
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#5286]) +2 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-7/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#4538] / [i915#5286])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg2-9: NOTRUN -> [SKIP][76] ([i915#4538] / [i915#5190]) +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#4538])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4538] / [i915#5190]) +4 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#6095]) +192 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-18/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][80] +121 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-glk1/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][81] ([i915#12313])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#6095]) +41 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][83] ([i915#14098] / [i915#6095]) +41 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#10307] / [i915#6095]) +117 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-11/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][85] ([i915#6095]) +19 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][86] ([i915#6095]) +24 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-8/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-glk: NOTRUN -> [INCOMPLETE][87] ([i915#12796] / [i915#14694]) +1 other test incomplete
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#6095]) +13 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][89] ([i915#12796])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-glk8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][91] ([i915#4423] / [i915#6095])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-19/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][92] ([i915#10307] / [i915#6095]) +24 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][93] ([i915#11151] / [i915#7828]) +4 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-8/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@ctm-max:
- shard-dg2: NOTRUN -> [SKIP][94] +4 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#11151] / [i915#7828]) +4 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#11151] / [i915#7828])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-14/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-dg2-9: NOTRUN -> [SKIP][97] ([i915#11151] / [i915#7828]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-tglu-1: NOTRUN -> [SKIP][98] ([i915#11151] / [i915#7828])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_color@ctm-0-25:
- shard-rkl: [PASS][99] -> [SKIP][100] ([i915#12655] / [i915#14544]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@kms_color@ctm-0-25.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_color@ctm-0-25.html
* igt@kms_content_protection@atomic@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][101] ([i915#7173])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-10/igt@kms_content_protection@atomic@pipe-a-dp-3.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-tglu-1: NOTRUN -> [SKIP][102] ([i915#3116] / [i915#3299])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2-9: NOTRUN -> [SKIP][103] ([i915#3299])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#9424])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-tglu: NOTRUN -> [SKIP][105] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-7/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-tglu: NOTRUN -> [SKIP][106] ([i915#3555]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-8/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#13049]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][108] ([i915#13049])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-rkl: [PASS][109] -> [FAIL][110] ([i915#13566]) +1 other test fail
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-256x85.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#3555]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#13049])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][113] ([i915#13566]) +1 other test fail
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-8/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#13046] / [i915#5354]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#4103])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- shard-dg2-9: NOTRUN -> [SKIP][116] ([i915#13046] / [i915#5354]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-rkl: [PASS][117] -> [FAIL][118] ([i915#2346]) +1 other test fail
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-9: NOTRUN -> [SKIP][119] ([i915#4103] / [i915#4213])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@torture-bo@pipe-a:
- shard-rkl: [PASS][120] -> [DMESG-WARN][121] ([i915#12964]) +13 other tests dmesg-warn
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@kms_cursor_legacy@torture-bo@pipe-a.html
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-4/igt@kms_cursor_legacy@torture-bo@pipe-a.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#13691])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2-9: NOTRUN -> [SKIP][123] ([i915#13749])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#13749])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#3555] / [i915#3840])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_fbcon_fbt@fbc:
- shard-rkl: [PASS][126] -> [SKIP][127] ([i915#14544] / [i915#14561]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@kms_fbcon_fbt@fbc.html
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_fbcon_fbt@fbc.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][128] ([i915#2065] / [i915#4854])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-7/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#1839])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-1/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#1839])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#658])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-14/igt@kms_feature_discovery@psr2.html
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#658])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#9934]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#3637] / [i915#9934])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-7/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#3637] / [i915#9934]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-1/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#9934])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-8/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-dg2-9: NOTRUN -> [SKIP][137] ([i915#9934]) +5 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@blocking-wf_vblank@a-hdmi-a1:
- shard-tglu: [PASS][138] -> [FAIL][139] ([i915#10826]) +1 other test fail
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-tglu-4/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-8/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html
* igt@kms_flip@flip-vs-blocking-wf-vblank:
- shard-snb: [PASS][140] -> [FAIL][141] ([i915#10826]) +1 other test fail
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-snb6/igt@kms_flip@flip-vs-blocking-wf-vblank.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-snb5/igt@kms_flip@flip-vs-blocking-wf-vblank.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#8381])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-rkl: [PASS][143] -> [SKIP][144] ([i915#14544] / [i915#3637]) +7 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-8/igt@kms_flip@flip-vs-suspend.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#2672] / [i915#3555])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#2587] / [i915#2672])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2-9: NOTRUN -> [SKIP][147] ([i915#2672] / [i915#3555]) +2 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2-9: NOTRUN -> [SKIP][148] ([i915#2672]) +2 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#2672] / [i915#3555] / [i915#5190])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#2672])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#2672]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-rkl: [PASS][152] -> [SKIP][153] ([i915#14544] / [i915#3555]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#2672] / [i915#3555]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-glk: [PASS][155] -> [SKIP][156] +7 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-glk3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-glk8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen:
- shard-tglu-1: NOTRUN -> [SKIP][157] +22 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
- shard-rkl: [PASS][158] -> [SKIP][159] ([i915#14544] / [i915#1849] / [i915#5354]) +12 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#10055])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-glk10: NOTRUN -> [SKIP][161] +193 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#8708])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#3458]) +8 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][164] ([i915#8708]) +5 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][165] +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][166] ([i915#8708]) +6 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary:
- shard-dg2-9: NOTRUN -> [SKIP][167] ([i915#3458]) +6 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][168] +36 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff:
- shard-dg2-9: NOTRUN -> [SKIP][169] ([i915#5354]) +13 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#5354]) +12 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_hdr@static-swap:
- shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#8228])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-1/igt@kms_hdr@static-swap.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#10656])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#12394])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-14/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24:
- shard-rkl: [PASS][174] -> [SKIP][175] ([i915#11190] / [i915#14544]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xr24.html
* igt@kms_plane_alpha_blend@alpha-7efc:
- shard-rkl: [PASS][176] -> [SKIP][177] ([i915#14544] / [i915#7294])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-4/igt@kms_plane_alpha_blend@alpha-7efc.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_plane_alpha_blend@alpha-7efc.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#8821])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-dg2-9: NOTRUN -> [SKIP][179] ([i915#13958])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#14259])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#14259])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-8/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#12247]) +4 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#12247]) +4 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b:
- shard-rkl: [PASS][184] -> [SKIP][185] ([i915#12247] / [i915#14544] / [i915#8152]) +2 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75:
- shard-rkl: [PASS][186] -> [SKIP][187] ([i915#12247] / [i915#14544] / [i915#3555] / [i915#6953] / [i915#8152])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling:
- shard-rkl: [PASS][188] -> [SKIP][189] ([i915#14544] / [i915#3555] / [i915#8152]) +1 other test skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_plane_scaling@planes-scaler-unity-scaling.html
* igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a:
- shard-rkl: [PASS][190] -> [SKIP][191] ([i915#12247] / [i915#14544]) +2 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a.html
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_plane_scaling@planes-scaler-unity-scaling@pipe-a.html
* igt@kms_pm_backlight@fade:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#5354])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-14/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-dg2-9: NOTRUN -> [SKIP][193] ([i915#3828])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#9685])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-7/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2: [PASS][195] -> [SKIP][196] ([i915#9519])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [PASS][197] -> [SKIP][198] ([i915#14544] / [i915#9519])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-rkl: [PASS][199] -> [SKIP][200] ([i915#9519])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg2-9: NOTRUN -> [SKIP][201] ([i915#6524] / [i915#6805])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-dg2-9: NOTRUN -> [SKIP][202] ([i915#11520]) +2 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
- shard-glk: NOTRUN -> [SKIP][203] ([i915#11520]) +3 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-glk1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#11520]) +3 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-tglu: NOTRUN -> [SKIP][205] ([i915#11520]) +2 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-7/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][206] ([i915#11520])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-14/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#11520]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-glk10: NOTRUN -> [SKIP][208] ([i915#11520]) +4 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-glk10/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#9683])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-dg2-9: NOTRUN -> [SKIP][210] ([i915#1072] / [i915#9732]) +7 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@kms_psr@fbc-pr-primary-render.html
* igt@kms_psr@fbc-psr-primary-render:
- shard-snb: NOTRUN -> [SKIP][211] +6 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-snb1/igt@kms_psr@fbc-psr-primary-render.html
* igt@kms_psr@pr-sprite-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#9732]) +9 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-8/igt@kms_psr@pr-sprite-mmap-cpu.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#1072] / [i915#9732]) +9 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr-sprite-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#9732]) +4 other tests skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html
* igt@kms_psr@psr2-cursor-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#1072] / [i915#9732])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-14/igt@kms_psr@psr2-cursor-mmap-cpu.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#5289])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-7/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2-9: NOTRUN -> [SKIP][217] ([i915#5190])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#12755] / [i915#5190])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#12755])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk: NOTRUN -> [FAIL][220] ([i915#10959])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-glk3/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@query-forked-busy:
- shard-rkl: [PASS][221] -> [SKIP][222] ([i915#14544]) +46 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-7/igt@kms_vblank@query-forked-busy.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_vblank@query-forked-busy.html
* igt@kms_vblank@wait-forked-busy-hang@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [DMESG-WARN][223] ([i915#12964]) +5 other tests dmesg-warn
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-2/igt@kms_vblank@wait-forked-busy-hang@pipe-b-hdmi-a-1.html
* igt@kms_vrr@flip-basic-fastset:
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#9906]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-8/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flip-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#3555])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-1/igt@kms_vrr@flip-dpms.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-9: NOTRUN -> [SKIP][226] ([i915#2437] / [i915#9412])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-glk: NOTRUN -> [SKIP][227] ([i915#2437])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-glk1/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#2437] / [i915#9412])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-7/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2-9: NOTRUN -> [FAIL][229] ([i915#4349]) +4 other tests fail
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@interrupts-sync:
- shard-rkl: [PASS][230] -> [FAIL][231] ([i915#14470])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-8/igt@perf_pmu@interrupts-sync.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@perf_pmu@interrupts-sync.html
* igt@perf_pmu@module-unload:
- shard-tglu: NOTRUN -> [FAIL][232] ([i915#14433])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-8/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6@runtime-pm-gt0:
- shard-rkl: [PASS][233] -> [SKIP][234] ([i915#15010])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@perf_pmu@rc6@runtime-pm-gt0.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-7/igt@perf_pmu@rc6@runtime-pm-gt0.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2-9: NOTRUN -> [SKIP][235] ([i915#3708] / [i915#4077])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-9/igt@prime_vgem@coherency-gtt.html
* igt@sriov_basic@bind-unbind-vf@vf-4:
- shard-tglu: NOTRUN -> [FAIL][236] ([i915#12910]) +9 other tests fail
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-8/igt@sriov_basic@bind-unbind-vf@vf-4.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2:
- shard-tglu-1: NOTRUN -> [FAIL][237] ([i915#12910]) +8 other tests fail
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2.html
#### Possible fixes ####
* igt@fbdev@read:
- shard-rkl: [SKIP][238] ([i915#14544] / [i915#2582]) -> [PASS][239] +1 other test pass
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@fbdev@read.html
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-7/igt@fbdev@read.html
* igt@gem_exec_endless@dispatch@bcs0:
- shard-dg1: [TIMEOUT][240] ([i915#3778]) -> [PASS][241] +1 other test pass
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg1-18/igt@gem_exec_endless@dispatch@bcs0.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-14/igt@gem_exec_endless@dispatch@bcs0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [TIMEOUT][242] ([i915#5493]) -> [PASS][243] +1 other test pass
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html
- shard-dg1: [TIMEOUT][244] ([i915#5493]) -> [PASS][245] +1 other test pass
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_pxp@create-regular-context-1:
- shard-rkl: [TIMEOUT][246] ([i915#12917] / [i915#12964]) -> [PASS][247]
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-3/igt@gem_pxp@create-regular-context-1.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-rkl: [SKIP][248] ([i915#14544] / [i915#4270]) -> [PASS][249]
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][250] ([i915#7984]) -> [PASS][251]
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-mtlp-6/igt@i915_power@sanity.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-mtlp-3/igt@i915_power@sanity.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-dg1: [DMESG-WARN][252] ([i915#4391] / [i915#4423]) -> [PASS][253]
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg1-17/igt@i915_suspend@basic-s2idle-without-i915.html
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-13/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [FAIL][254] ([i915#5138]) -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_color@legacy-gamma-reset:
- shard-rkl: [SKIP][256] ([i915#12655] / [i915#14544]) -> [PASS][257] +2 other tests pass
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_color@legacy-gamma-reset.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-7/igt@kms_color@legacy-gamma-reset.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-rkl: [FAIL][258] ([i915#13566]) -> [PASS][259] +1 other test pass
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-4/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
- shard-rkl: [SKIP][260] ([i915#11190] / [i915#14544]) -> [PASS][261] +1 other test pass
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-rkl: [FAIL][262] ([i915#2346]) -> [PASS][263]
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: [SKIP][264] ([i915#13707]) -> [PASS][265]
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg2-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-10/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@basic-flip-vs-dpms:
- shard-rkl: [SKIP][266] ([i915#14544] / [i915#3637]) -> [PASS][267] +7 other tests pass
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_flip@basic-flip-vs-dpms.html
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-7/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-rkl: [SKIP][268] ([i915#14544] / [i915#3555]) -> [PASS][269] +4 other tests pass
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite:
- shard-rkl: [SKIP][270] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][271] +13 other tests pass
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg2: [SKIP][272] ([i915#3555] / [i915#8228]) -> [PASS][273]
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg2-1/igt@kms_hdr@bpc-switch-suspend.html
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-11/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_invalid_mode@bad-hsync-end:
- shard-rkl: [SKIP][274] ([i915#14544] / [i915#3555] / [i915#8826]) -> [PASS][275]
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_invalid_mode@bad-hsync-end.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-5/igt@kms_invalid_mode@bad-hsync-end.html
* {igt@kms_pipe_stress@stress-xrgb8888-xtiled}:
- shard-rkl: [SKIP][276] ([i915#14544]) -> [PASS][277] +50 other tests pass
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html
* igt@kms_plane@pixel-format:
- shard-rkl: [SKIP][278] ([i915#14544] / [i915#8825]) -> [PASS][279]
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_plane@pixel-format.html
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-5/igt@kms_plane@pixel-format.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-rkl: [SKIP][280] ([i915#14544] / [i915#7294]) -> [PASS][281]
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_plane_alpha_blend@alpha-basic.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-7/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers:
- shard-rkl: [SKIP][282] ([i915#14544] / [i915#8152]) -> [PASS][283] +2 other tests pass
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-rkl: [SKIP][284] ([i915#14544] / [i915#6953] / [i915#8152]) -> [PASS][285]
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a:
- shard-rkl: [SKIP][286] ([i915#12247] / [i915#14544]) -> [PASS][287] +5 other tests pass
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a.html
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75:
- shard-rkl: [SKIP][288] ([i915#14544] / [i915#3555] / [i915#6953] / [i915#8152]) -> [PASS][289]
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b:
- shard-rkl: [SKIP][290] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][291] +6 other tests pass
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b.html
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-b.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][292] ([i915#9519]) -> [PASS][293]
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_properties@plane-properties-atomic:
- shard-rkl: [SKIP][294] ([i915#11521] / [i915#14544]) -> [PASS][295]
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_properties@plane-properties-atomic.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-3/igt@kms_properties@plane-properties-atomic.html
* igt@kms_rotation_crc@primary-x-tiled-reflect-x-180:
- shard-dg1: [DMESG-WARN][296] ([i915#4423]) -> [PASS][297] +4 other tests pass
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg1-15/igt@kms_rotation_crc@primary-x-tiled-reflect-x-180.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-15/igt@kms_rotation_crc@primary-x-tiled-reflect-x-180.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-mtlp: [FAIL][298] ([i915#9196]) -> [PASS][299] +1 other test pass
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak.html
* igt@perf@polling@0-rcs0:
- shard-rkl: [DMESG-WARN][300] ([i915#12964]) -> [PASS][301] +8 other tests pass
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-3/igt@perf@polling@0-rcs0.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@perf@polling@0-rcs0.html
* igt@perf_pmu@most-busy-check-all:
- shard-rkl: [FAIL][302] ([i915#4349]) -> [PASS][303] +1 other test pass
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@perf_pmu@most-busy-check-all.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-4/igt@perf_pmu@most-busy-check-all.html
* igt@prime_vgem@basic-fence-flip:
- shard-rkl: [SKIP][304] ([i915#14544] / [i915#3708]) -> [PASS][305]
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@prime_vgem@basic-fence-flip.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-3/igt@prime_vgem@basic-fence-flip.html
#### Warnings ####
* igt@device_reset@cold-reset-bound:
- shard-rkl: [SKIP][306] ([i915#11078]) -> [SKIP][307] ([i915#11078] / [i915#14544])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-7/igt@device_reset@cold-reset-bound.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@device_reset@cold-reset-bound.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-rkl: [SKIP][308] ([i915#11078] / [i915#14544]) -> [SKIP][309] ([i915#11078])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@device_reset@unbind-cold-reset-rebind.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-3/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: [SKIP][310] ([i915#14544] / [i915#7697]) -> [SKIP][311] ([i915#7697])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-5/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: [SKIP][312] ([i915#6335]) -> [SKIP][313] ([i915#14544] / [i915#6335])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-8/igt@gem_create@create-ext-cpu-access-sanity-check.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: [SKIP][314] ([i915#8562]) -> [SKIP][315] ([i915#14544] / [i915#8562])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-4/igt@gem_create@create-ext-set-pat.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: [SKIP][316] ([i915#280]) -> [SKIP][317] ([i915#14544] / [i915#280]) +1 other test skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-7/igt@gem_ctx_sseu@invalid-sseu.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: [SKIP][318] ([i915#14544] / [i915#280]) -> [SKIP][319] ([i915#280])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-7/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: [SKIP][320] ([i915#4525]) -> [SKIP][321] ([i915#14544] / [i915#4525])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@gem_exec_balancer@parallel-out-fence.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: [SKIP][322] ([i915#6334]) -> [SKIP][323] ([i915#14544] / [i915#6334]) +1 other test skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-8/igt@gem_exec_capture@capture-invisible@smem0.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: [SKIP][324] ([i915#3281]) -> [SKIP][325] ([i915#14544] / [i915#3281]) +16 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-8/igt@gem_exec_reloc@basic-write-read.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: [SKIP][326] ([i915#14544] / [i915#3281]) -> [SKIP][327] ([i915#3281]) +7 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-7/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: [SKIP][328] ([i915#14544] / [i915#4613]) -> [SKIP][329] ([i915#4613]) +3 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-rkl: [SKIP][330] ([i915#4613]) -> [SKIP][331] ([i915#14544] / [i915#4613]) +3 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-8/igt@gem_lmem_swapping@verify-ccs.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-rkl: [SKIP][332] ([i915#3282]) -> [SKIP][333] ([i915#14544] / [i915#3282]) +4 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pxp@fail-invalid-protected-context:
- shard-rkl: [SKIP][334] ([i915#4270]) -> [TIMEOUT][335] ([i915#12964])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-8/igt@gem_pxp@fail-invalid-protected-context.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@gem_pxp@fail-invalid-protected-context.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-rkl: [SKIP][336] ([i915#14544] / [i915#4270]) -> [TIMEOUT][337] ([i915#12917] / [i915#12964])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@gem_pxp@verify-pxp-stale-buf-execution.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-5/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_set_tiling_vs_blt@untiled-to-tiled:
- shard-rkl: [SKIP][338] ([i915#8411]) -> [SKIP][339] ([i915#14544] / [i915#8411]) +1 other test skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html
* igt@gem_set_tiling_vs_pwrite:
- shard-rkl: [SKIP][340] ([i915#14544] / [i915#3282]) -> [SKIP][341] ([i915#3282]) +5 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@gem_set_tiling_vs_pwrite.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-5/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-rkl: [SKIP][342] ([i915#14544] / [i915#3282] / [i915#3297]) -> [SKIP][343] ([i915#3282] / [i915#3297])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-5/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-rkl: [SKIP][344] ([i915#14544] / [i915#3297]) -> [SKIP][345] ([i915#3297])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@gem_userptr_blits@readonly-pwrite-unsync.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-5/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: [SKIP][346] ([i915#14544] / [i915#2527]) -> [SKIP][347] ([i915#2527])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@gen9_exec_parse@batch-invalid-length.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-7/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: [SKIP][348] ([i915#2527]) -> [SKIP][349] ([i915#14544] / [i915#2527]) +4 other tests skip
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-7/igt@gen9_exec_parse@bb-start-param.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: [SKIP][350] ([i915#8399]) -> [SKIP][351] ([i915#14544] / [i915#8399])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@i915_pm_freq_api@freq-basic-api.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: [SKIP][352] ([i915#14544] / [i915#8399]) -> [SKIP][353] ([i915#8399])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-5/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-rkl: [SKIP][354] ([i915#14498]) -> [SKIP][355] ([i915#14498] / [i915#14544])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-4/igt@i915_pm_rc6_residency@rc6-idle.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: [SKIP][356] ([i915#4387]) -> [SKIP][357] ([i915#14544] / [i915#4387])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-8/igt@i915_pm_sseu@full-enable.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@hwconfig_table:
- shard-rkl: [SKIP][358] ([i915#14544] / [i915#6245]) -> [SKIP][359] ([i915#6245])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@i915_query@hwconfig_table.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-3/igt@i915_query@hwconfig_table.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg1: [SKIP][360] ([i915#4212] / [i915#4423]) -> [SKIP][361] ([i915#4212])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg1-18/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-14/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: [SKIP][362] ([i915#12454] / [i915#12712] / [i915#14544]) -> [SKIP][363] ([i915#12454] / [i915#12712])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: [SKIP][364] ([i915#9531]) -> [SKIP][365] ([i915#14544])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: [SKIP][366] ([i915#14544]) -> [SKIP][367] ([i915#5286]) +5 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][368] ([i915#5286]) -> [SKIP][369] ([i915#14544]) +5 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-rkl: [SKIP][370] ([i915#14544]) -> [SKIP][371] ([i915#3638]) +2 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-rkl: [SKIP][372] ([i915#3638]) -> [SKIP][373] ([i915#14544]) +2 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: [SKIP][374] ([i915#4538]) -> [SKIP][375] ([i915#4423] / [i915#4538])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg1-14/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][376] ([i915#14098] / [i915#6095]) -> [SKIP][377] ([i915#6095]) +2 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-3/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs:
- shard-rkl: [SKIP][378] ([i915#14544]) -> [SKIP][379] ([i915#14098] / [i915#6095]) +12 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-glk: [INCOMPLETE][380] ([i915#12796] / [i915#14694]) -> [INCOMPLETE][381] ([i915#12796])
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-glk3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-glk8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][382] ([i915#12313]) -> [SKIP][383] ([i915#14544])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][384] ([i915#14544]) -> [SKIP][385] ([i915#12313]) +2 other tests skip
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: [SKIP][386] ([i915#14098] / [i915#6095]) -> [SKIP][387] ([i915#14544]) +14 other tests skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-rkl: [SKIP][388] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][389] ([i915#11151] / [i915#7828]) +7 other tests skip
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-7/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-rkl: [SKIP][390] ([i915#11151] / [i915#7828]) -> [SKIP][391] ([i915#11151] / [i915#14544] / [i915#7828]) +7 other tests skip
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-dg1: [SKIP][392] ([i915#11151] / [i915#7828]) -> [SKIP][393] ([i915#11151] / [i915#4423] / [i915#7828])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg1-14/igt@kms_chamelium_hpd@dp-hpd-fast.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-17/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_content_protection@atomic:
- shard-dg2: [SKIP][394] ([i915#7118] / [i915#9424]) -> [FAIL][395] ([i915#7173])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg2-7/igt@kms_content_protection@atomic.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-10/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: [SKIP][396] ([i915#14544]) -> [SKIP][397] ([i915#3116])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-1.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@type1:
- shard-rkl: [SKIP][398] ([i915#14544]) -> [SKIP][399] ([i915#7118] / [i915#9424]) +1 other test skip
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_content_protection@type1.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-7/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-dg2: [FAIL][400] ([i915#1339] / [i915#7173]) -> [SKIP][401] ([i915#7118] / [i915#9424])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg2-11/igt@kms_content_protection@uevent.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-4/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-256x256:
- shard-rkl: [DMESG-WARN][402] ([i915#12917] / [i915#12964]) -> [SKIP][403] ([i915#14544])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-256x256.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-256x256.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: [SKIP][404] ([i915#14544]) -> [SKIP][405] ([i915#13049]) +1 other test skip
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [FAIL][406] ([i915#13566]) -> [SKIP][407] ([i915#14544])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: [SKIP][408] ([i915#14544]) -> [SKIP][409] ([i915#3555]) +4 other tests skip
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-rkl: [SKIP][410] ([i915#3555]) -> [SKIP][411] ([i915#14544]) +3 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: [SKIP][412] ([i915#11190] / [i915#14544]) -> [SKIP][413] ([i915#4103])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: [SKIP][414] ([i915#4103]) -> [SKIP][415] ([i915#11190] / [i915#14544])
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: [SKIP][416] ([i915#4103]) -> [SKIP][417] ([i915#14544]) +1 other test skip
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-rkl: [SKIP][418] -> [SKIP][419] ([i915#14544]) +18 other tests skip
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-8/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-legacy:
- shard-rkl: [SKIP][420] ([i915#14544]) -> [SKIP][421] +15 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-rkl: [SKIP][422] ([i915#14544]) -> [FAIL][423] ([i915#2346])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-rkl: [SKIP][424] ([i915#14544]) -> [SKIP][425] ([i915#4103])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: [SKIP][426] ([i915#9723]) -> [SKIP][427] ([i915#14544]) +1 other test skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_aux_dev:
- shard-rkl: [SKIP][428] ([i915#1257]) -> [SKIP][429] ([i915#1257] / [i915#14544])
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@kms_dp_aux_dev.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: [SKIP][430] ([i915#14544]) -> [SKIP][431] ([i915#13748])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-7/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-rkl: [SKIP][432] ([i915#14544]) -> [SKIP][433] ([i915#13707])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: [SKIP][434] ([i915#14544]) -> [SKIP][435] ([i915#3555] / [i915#3840])
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-3/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_feature_discovery@display-2x:
- shard-rkl: [SKIP][436] ([i915#14544] / [i915#1839]) -> [SKIP][437] ([i915#1839])
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_feature_discovery@display-2x.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-3/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: [SKIP][438] ([i915#1839]) -> [SKIP][439] ([i915#14544] / [i915#1839])
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-4/igt@kms_feature_discovery@display-4x.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: [SKIP][440] ([i915#9337]) -> [SKIP][441] ([i915#14544] / [i915#9337])
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@kms_feature_discovery@dp-mst.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: [SKIP][442] ([i915#14544] / [i915#9934]) -> [SKIP][443] ([i915#9934]) +11 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_flip@2x-plain-flip.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-5/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: [SKIP][444] ([i915#9934]) -> [SKIP][445] ([i915#14544] / [i915#9934]) +6 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@kms_flip@2x-plain-flip-interruptible.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-rkl: [SKIP][446] ([i915#2672] / [i915#3555]) -> [SKIP][447] ([i915#14544] / [i915#3555]) +2 other tests skip
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-rkl: [SKIP][448] ([i915#14544] / [i915#3555]) -> [SKIP][449] ([i915#2672] / [i915#3555]) +1 other test skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: [SKIP][450] -> [SKIP][451] ([i915#14544] / [i915#1849] / [i915#5354])
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: [SKIP][452] ([i915#3023]) -> [SKIP][453] ([i915#14544] / [i915#1849] / [i915#5354]) +23 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: [SKIP][454] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][455]
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render:
- shard-dg1: [SKIP][456] ([i915#4423]) -> [SKIP][457]
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: [SKIP][458] ([i915#1825]) -> [SKIP][459] ([i915#14544] / [i915#1849] / [i915#5354]) +35 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: [SKIP][460] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][461] ([i915#3023]) +20 other tests skip
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render:
- shard-dg2: [SKIP][462] ([i915#10433] / [i915#3458]) -> [SKIP][463] ([i915#3458]) +4 other tests skip
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: [SKIP][464] ([i915#3458]) -> [SKIP][465] ([i915#10433] / [i915#3458]) +3 other tests skip
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move:
- shard-rkl: [SKIP][466] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][467] ([i915#1825]) +31 other tests skip
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: [SKIP][468] ([i915#12713]) -> [SKIP][469] ([i915#1187] / [i915#12713])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-mtlp-2/igt@kms_hdr@brightness-with-hdr.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html
- shard-dg2: [SKIP][470] ([i915#12713]) -> [SKIP][471] ([i915#13331])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg2-7/igt@kms_hdr@brightness-with-hdr.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg2-10/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle:
- shard-rkl: [SKIP][472] ([i915#14544]) -> [SKIP][473] ([i915#3555] / [i915#8228]) +3 other tests skip
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_hdr@static-toggle.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-7/igt@kms_hdr@static-toggle.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: [SKIP][474] ([i915#3555] / [i915#8228]) -> [SKIP][475] ([i915#14544]) +2 other tests skip
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@kms_hdr@static-toggle-suspend.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_invalid_mode@bad-vsync-end:
- shard-rkl: [DMESG-WARN][476] ([i915#12964]) -> [SKIP][477] ([i915#14544] / [i915#3555] / [i915#8826])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-4/igt@kms_invalid_mode@bad-vsync-end.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_invalid_mode@bad-vsync-end.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: [SKIP][478] ([i915#12388] / [i915#14544]) -> [SKIP][479] ([i915#12388]) +1 other test skip
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: [SKIP][480] ([i915#12339]) -> [SKIP][481] ([i915#12339] / [i915#14544])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][482] ([i915#4816]) -> [SKIP][483] ([i915#1839] / [i915#4816])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: [SKIP][484] ([i915#14544]) -> [SKIP][485] ([i915#6301])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-rkl: [DMESG-WARN][486] ([i915#12964]) -> [SKIP][487] ([i915#14544] / [i915#8825])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-4/igt@kms_plane@pixel-format-source-clamping.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-rkl: [SKIP][488] ([i915#13958]) -> [SKIP][489] ([i915#14544])
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-none.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-rkl: [SKIP][490] ([i915#14544]) -> [SKIP][491] ([i915#13958])
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-yf.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: [SKIP][492] ([i915#14259]) -> [SKIP][493] ([i915#14544])
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-8/igt@kms_plane_multiple@tiling-4.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-rkl: [SKIP][494] ([i915#12247] / [i915#14544]) -> [SKIP][495] ([i915#12247]) +1 other test skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b:
- shard-rkl: [SKIP][496] ([i915#12247] / [i915#14544] / [i915#8152]) -> [SKIP][497] ([i915#12247]) +3 other tests skip
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: [SKIP][498] ([i915#3555]) -> [SKIP][499] ([i915#14544] / [i915#3555] / [i915#8152])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-7/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: [SKIP][500] ([i915#12247]) -> [SKIP][501] ([i915#12247] / [i915#14544]) +2 other tests skip
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b:
- shard-rkl: [SKIP][502] ([i915#12247]) -> [SKIP][503] ([i915#12247] / [i915#14544] / [i915#8152]) +4 other tests skip
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: [SKIP][504] ([i915#5354]) -> [SKIP][505] ([i915#14544] / [i915#5354])
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-7/igt@kms_pm_backlight@basic-brightness.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: [SKIP][506] ([i915#9685]) -> [SKIP][507] ([i915#14544] / [i915#9685])
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-8/igt@kms_pm_dc@dc3co-vpb-simulation.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: [SKIP][508] ([i915#3361]) -> [SKIP][509] ([i915#14544] / [i915#4281])
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-8/igt@kms_pm_dc@dc9-dpms.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: [SKIP][510] ([i915#8430]) -> [SKIP][511] ([i915#14544] / [i915#8430])
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@kms_pm_lpsp@screens-disabled.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@cursor:
- shard-rkl: [SKIP][512] ([i915#14544] / [i915#1849]) -> [DMESG-WARN][513] ([i915#12964])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_pm_rpm@cursor.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-5/igt@kms_pm_rpm@cursor.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-rkl: [SKIP][514] ([i915#9519]) -> [SKIP][515] ([i915#14544] / [i915#9519])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-7/igt@kms_pm_rpm@dpms-non-lpsp.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [SKIP][516] ([i915#14544] / [i915#9519]) -> [SKIP][517] ([i915#9519]) +1 other test skip
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [DMESG-WARN][518] ([i915#12964]) -> [SKIP][519] ([i915#9519])
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-hybrid:
- shard-dg1: [SKIP][520] ([i915#4423] / [i915#6524]) -> [SKIP][521] ([i915#6524])
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg1-13/igt@kms_prime@basic-crc-hybrid.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-19/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: [SKIP][522] ([i915#14544] / [i915#6524]) -> [SKIP][523] ([i915#6524])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-7/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-rkl: [SKIP][524] ([i915#11520]) -> [SKIP][525] ([i915#11520] / [i915#14544]) +8 other tests skip
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-8/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
- shard-dg1: [SKIP][526] ([i915#11520]) -> [SKIP][527] ([i915#11520] / [i915#4423])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-dg1-18/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-dg1-14/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][528] ([i915#11520] / [i915#14544]) -> [SKIP][529] ([i915#11520]) +7 other tests skip
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-7/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-rkl: [SKIP][530] ([i915#9683]) -> [SKIP][531] ([i915#14544] / [i915#9683])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-4/igt@kms_psr2_su@page_flip-p010.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-rkl: [SKIP][532] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][533] ([i915#1072] / [i915#9732]) +20 other tests skip
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-plane-move.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: [SKIP][534] ([i915#1072] / [i915#9732]) -> [SKIP][535] ([i915#1072] / [i915#14544] / [i915#9732]) +18 other tests skip
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@kms_psr@psr2-cursor-mmap-gtt.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-rkl: [SKIP][536] ([i915#14544] / [i915#9685]) -> [SKIP][537] ([i915#9685])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: [SKIP][538] ([i915#5289]) -> [SKIP][539] ([i915#14544]) +1 other test skip
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-rkl: [SKIP][540] ([i915#3555]) -> [SKIP][541] ([i915#14544] / [i915#3555])
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@kms_setmode@invalid-clone-exclusive-crtc.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: [SKIP][542] ([i915#14544]) -> [SKIP][543] ([i915#8623])
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@wait-forked:
- shard-rkl: [DMESG-WARN][544] ([i915#12964]) -> [SKIP][545] ([i915#14544])
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-7/igt@kms_vblank@wait-forked.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_vblank@wait-forked.html
* igt@kms_vrr@lobf:
- shard-rkl: [SKIP][546] ([i915#11920]) -> [SKIP][547] ([i915#14544])
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-8/igt@kms_vrr@lobf.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-rkl: [SKIP][548] ([i915#3555] / [i915#9906]) -> [SKIP][549] ([i915#14544])
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-4/igt@kms_vrr@negative-basic.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-rkl: [SKIP][550] ([i915#14544]) -> [SKIP][551] ([i915#9906])
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_writeback@writeback-check-output:
- shard-rkl: [SKIP][552] ([i915#2437]) -> [SKIP][553] ([i915#14544] / [i915#2437])
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@kms_writeback@writeback-check-output.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-fb-id:
- shard-rkl: [SKIP][554] ([i915#14544] / [i915#2437]) -> [SKIP][555] ([i915#2437])
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_writeback@writeback-fb-id.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-5/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-rkl: [SKIP][556] ([i915#14544] / [i915#2437] / [i915#9412]) -> [SKIP][557] ([i915#2437] / [i915#9412])
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@kms_writeback@writeback-pixel-formats.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-5/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@mi-rpc:
- shard-rkl: [SKIP][558] ([i915#14544] / [i915#2434]) -> [SKIP][559] ([i915#2434])
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@perf@mi-rpc.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-3/igt@perf@mi-rpc.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: [SKIP][560] ([i915#14544] / [i915#2433]) -> [SKIP][561] ([i915#2433])
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-8/igt@perf@unprivileged-single-ctx-counters.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: [SKIP][562] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][563] ([i915#3291] / [i915#3708]) +1 other test skip
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@prime_vgem@basic-fence-read.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-3/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: [SKIP][564] ([i915#3708]) -> [SKIP][565] ([i915#14544] / [i915#3708])
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-2/igt@prime_vgem@fence-read-hang.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-6/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-rkl: [SKIP][566] ([i915#14544] / [i915#9917]) -> [SKIP][567] ([i915#9917])
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17237/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/shard-rkl-3/igt@sriov_basic@enable-vfs-bind-unbind-each.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12353]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#1339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1339
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433
[i915#14470]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14470
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14561]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14561
[i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14809
[i915#14850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14850
[i915#15010]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15010
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#1850]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1850
[i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
[i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* Linux: CI_DRM_17237 -> Patchwork_154742v1
CI-20190529: 20190529
CI_DRM_17237: 3e79699fa1b216e9246e406a8649235e894772d2 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8543: 8543
Patchwork_154742v1: 3e79699fa1b216e9246e406a8649235e894772d2 @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v1/index.html
[-- Attachment #2: Type: text/html, Size: 188197 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl
2025-09-18 21:45 [PATCH] drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl Jonathan Cavitt
` (2 preceding siblings ...)
2025-09-19 22:10 ` ✗ i915.CI.Full: failure for " Patchwork
@ 2025-09-22 2:50 ` Zhenyu Wang
2025-09-23 23:44 ` ✓ i915.CI.BAT: success for drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl (rev2) Patchwork
` (2 subsequent siblings)
6 siblings, 0 replies; 8+ messages in thread
From: Zhenyu Wang @ 2025-09-22 2:50 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: intel-gfx, saurabhg.gupta, alex.zuo, andi.shyti
On Thu, Sep 18, 2025 at 09:45:16PM +0000, Jonathan Cavitt wrote:
> We do not need a case switch to check cap_type_id in intel_vgpu_ioctl
> for various reasons (it's impossible to hit the default case in the
> current code, there's only one valid case to check, the error handling
> code overlaps in both cases, etc.). Simplify the case switch into a
> single if statement. This has the additional effect of simplifying the
> error handling code.
>
> Note that it is still currently impossible for
> 'if (cap_type_id == VFIO_REGION_INFO_CAP_SPARSE_MMAP)'
> to fail, but we should still guard against the possibility of this
> changing in the future.
>
> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> Cc: Andi Shyti <andi.shyti@linux.intel.com>
> ---
Reviewed-by: Zhenyu Wang <zhenyuw.linux@gmail.com>
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ i915.CI.BAT: success for drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl (rev2)
2025-09-18 21:45 [PATCH] drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl Jonathan Cavitt
` (3 preceding siblings ...)
2025-09-22 2:50 ` [PATCH] " Zhenyu Wang
@ 2025-09-23 23:44 ` Patchwork
2025-09-24 14:36 ` ✗ i915.CI.Full: failure " Patchwork
2025-09-25 22:24 ` [PATCH] drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl Andi Shyti
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-09-23 23:44 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 8503 bytes --]
== Series Details ==
Series: drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl (rev2)
URL : https://patchwork.freedesktop.org/series/154742/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_17263 -> Patchwork_154742v2
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/index.html
Participating hosts (42 -> 42)
------------------------------
Additional (1): bat-adls-6
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_154742v2 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_fence@basic-busy@vecs0:
- bat-rpls-4: [PASS][1] -> [DMESG-WARN][2] ([i915#13400]) +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/bat-rpls-4/igt@gem_exec_fence@basic-busy@vecs0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/bat-rpls-4/igt@gem_exec_fence@basic-busy@vecs0.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic:
- bat-adls-6: NOTRUN -> [SKIP][4] ([i915#3282])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/bat-adls-6/igt@gem_tiled_pread_basic.html
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/bat-mtlp-8/igt@i915_selftest@live.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][7] -> [DMESG-FAIL][8] ([i915#12061])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- bat-arls-5: [PASS][9] -> [DMESG-FAIL][10] ([i915#12061]) +1 other test dmesg-fail
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/bat-arls-5/igt@i915_selftest@live@workarounds.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/bat-arls-5/igt@i915_selftest@live@workarounds.html
* igt@intel_hwmon@hwmon-read:
- bat-adls-6: NOTRUN -> [SKIP][11] ([i915#7707]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/bat-adls-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adls-6: NOTRUN -> [SKIP][12] ([i915#4103]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-adls-6: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#3840])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/bat-adls-6/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-adls-6: NOTRUN -> [SKIP][14]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-adls-6: NOTRUN -> [SKIP][15] ([i915#5354])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-adls-6: NOTRUN -> [SKIP][16] ([i915#1072] / [i915#9732]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-adls-6: NOTRUN -> [SKIP][17] ([i915#3555])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][18] ([i915#3291]) +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/bat-adls-6/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@i915_selftest@live@late_gt_pm:
- bat-arlh-3: [INCOMPLETE][19] ([i915#14917]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/bat-arlh-3/igt@i915_selftest@live@late_gt_pm.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/bat-arlh-3/igt@i915_selftest@live@late_gt_pm.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [DMESG-FAIL][21] ([i915#12061]) -> [PASS][22] +1 other test pass
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
- bat-dg2-9: [DMESG-FAIL][23] ([i915#12061]) -> [PASS][24] +1 other test pass
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/bat-dg2-9/igt@i915_selftest@live@workarounds.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/bat-dg2-9/igt@i915_selftest@live@workarounds.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-arlh-3: [INCOMPLETE][25] ([i915#14764] / [i915#14818] / [i915#14837]) -> [DMESG-FAIL][26] ([i915#12061])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/bat-arlh-3/igt@i915_selftest@live.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/bat-arlh-3/igt@i915_selftest@live.html
- bat-atsm-1: [DMESG-FAIL][27] ([i915#12061] / [i915#13929]) -> [DMESG-FAIL][28] ([i915#12061] / [i915#14204])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/bat-atsm-1/igt@i915_selftest@live.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/bat-atsm-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@mman:
- bat-atsm-1: [DMESG-FAIL][29] ([i915#13929]) -> [DMESG-FAIL][30] ([i915#14204])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/bat-atsm-1/igt@i915_selftest@live@mman.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/bat-atsm-1/igt@i915_selftest@live@mman.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400
[i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929
[i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204
[i915#14764]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14764
[i915#14818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14818
[i915#14837]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14837
[i915#14917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14917
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* Linux: CI_DRM_17263 -> Patchwork_154742v2
CI-20190529: 20190529
CI_DRM_17263: af3cdefd0a1ad2dad29fcde0854ccbce494cc28a @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8550: 4f8c7886ad02e116804ec08714f17bce1755c6e4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_154742v2: af3cdefd0a1ad2dad29fcde0854ccbce494cc28a @ git://anongit.freedesktop.org/gfx-ci/linux
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/index.html
[-- Attachment #2: Type: text/html, Size: 10280 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.Full: failure for drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl (rev2)
2025-09-18 21:45 [PATCH] drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl Jonathan Cavitt
` (4 preceding siblings ...)
2025-09-23 23:44 ` ✓ i915.CI.BAT: success for drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl (rev2) Patchwork
@ 2025-09-24 14:36 ` Patchwork
2025-09-25 22:24 ` [PATCH] drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl Andi Shyti
6 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2025-09-24 14:36 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 175209 bytes --]
== Series Details ==
Series: drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl (rev2)
URL : https://patchwork.freedesktop.org/series/154742/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_17263_full -> Patchwork_154742v2_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_154742v2_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_154742v2_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_154742v2_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-dg2: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-d-dp-3:
- shard-dg2: NOTRUN -> [ABORT][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-d-dp-3.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-mtlp: [PASS][4] -> [FAIL][5] +1 other test fail
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-mtlp-3/igt@perf@non-zero-reason@0-rcs0.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-6/igt@perf@non-zero-reason@0-rcs0.html
Known issues
------------
Here are the changes found in Patchwork_154742v2_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#11078])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-3/igt@device_reset@cold-reset-bound.html
* igt@fbdev@pan:
- shard-rkl: [PASS][8] -> [SKIP][9] ([i915#14544] / [i915#2582])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-4/igt@fbdev@pan.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@fbdev@pan.html
* igt@gem_basic@multigpu-create-close:
- shard-dg2: NOTRUN -> [SKIP][10] ([i915#7697])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-tglu-1: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: NOTRUN -> [INCOMPLETE][12] ([i915#13356])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-1/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][13] ([i915#12392] / [i915#13356])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: [PASS][14] -> [ABORT][15] ([i915#13427])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-6/igt@gem_create@create-ext-cpu-access-big.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-tglu-1: NOTRUN -> [SKIP][16] ([i915#8562])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_shared@q-smoketest-all:
- shard-snb: NOTRUN -> [SKIP][17] +5 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-snb1/igt@gem_ctx_shared@q-smoketest-all.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2-9: NOTRUN -> [SKIP][18] ([i915#280])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@mmap-args:
- shard-tglu: NOTRUN -> [SKIP][19] ([i915#280])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][20] -> [FAIL][21] ([i915#5784])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg1-12/igt@gem_eio@unwedge-stress.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg1-19/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@parallel-balancer:
- shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#4525]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@gem_exec_balancer@parallel-balancer.html
* igt@gem_exec_capture@capture-invisible:
- shard-glk10: NOTRUN -> [SKIP][23] ([i915#6334]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-glk10/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][24] ([i915#11965]) +3 other tests fail
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_fence@concurrent:
- shard-dg2-9: NOTRUN -> [SKIP][25] ([i915#4812])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_fence@submit:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#4812])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-1/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2-9: NOTRUN -> [SKIP][27] ([i915#3539])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-uc-rw-default:
- shard-dg2-9: NOTRUN -> [SKIP][28] ([i915#3539] / [i915#4852]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@gem_exec_flush@basic-uc-rw-default.html
* igt@gem_exec_flush@basic-wb-rw-default:
- shard-dg2: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@gem_exec_flush@basic-wb-rw-default.html
* igt@gem_exec_reloc@basic-active:
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#3281]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-7/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-range-active:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#3281]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-3/igt@gem_exec_reloc@basic-range-active.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-dg2-9: NOTRUN -> [SKIP][32] ([i915#3281]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#4860]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@gem_fence_thrash@bo-copy.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-glk: NOTRUN -> [SKIP][34] ([i915#4613])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-glk1/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#4613]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@verify-random:
- shard-tglu: NOTRUN -> [SKIP][36] ([i915#4613]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-9/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#4083])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@zero-extend:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#4077]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@gem_mmap_gtt@zero-extend.html
* igt@gem_mmap_wc@read-write-distinct:
- shard-dg2-9: NOTRUN -> [SKIP][39] ([i915#4083])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@gem_mmap_wc@read-write-distinct.html
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4083])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-7/igt@gem_mmap_wc@read-write-distinct.html
* igt@gem_pread@exhaustion:
- shard-glk10: NOTRUN -> [WARN][41] ([i915#2658])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-glk10/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk10: NOTRUN -> [WARN][42] ([i915#14702] / [i915#2658])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-glk10/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-regular-context-1:
- shard-rkl: [PASS][43] -> [TIMEOUT][44] ([i915#12917] / [i915#12964])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-8/igt@gem_pxp@create-regular-context-1.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-4/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@hw-rejects-pxp-buffer:
- shard-tglu: NOTRUN -> [SKIP][45] ([i915#13398])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@gem_pxp@hw-rejects-pxp-buffer.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-tglu-1: NOTRUN -> [SKIP][46] ([i915#13398])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4270]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg2-9: NOTRUN -> [SKIP][48] ([i915#4270]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_readwrite@new-obj:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#3282]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#8428])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-7/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-dg2-9: NOTRUN -> [SKIP][51] ([i915#5190] / [i915#8428]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#5190] / [i915#8428]) +2 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#4079]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2-9: NOTRUN -> [SKIP][54] ([i915#4079])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4079])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: [PASS][56] -> [INCOMPLETE][57] ([i915#13809])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@gem_softpin@noreloc-s3.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-3/igt@gem_softpin@noreloc-s3.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][58] ([i915#3297])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate:
- shard-dg2-9: NOTRUN -> [SKIP][59] ([i915#3297] / [i915#4880]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@gem_userptr_blits@map-fixed-invalidate.html
* igt@gem_userptr_blits@relocations:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#3281] / [i915#3297])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-1/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-tglu: NOTRUN -> [SKIP][61] ([i915#3297])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-9/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_workarounds@suspend-resume:
- shard-rkl: [PASS][62] -> [INCOMPLETE][63] ([i915#13356])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-4/igt@gem_workarounds@suspend-resume.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-3/igt@gem_workarounds@suspend-resume.html
* igt@gen3_render_tiledy_blits:
- shard-dg2: NOTRUN -> [SKIP][64] +5 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@gen3_render_tiledy_blits.html
* igt@gen9_exec_parse@allowed-all:
- shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#2527] / [i915#2856]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-tglu: NOTRUN -> [SKIP][66] ([i915#2527] / [i915#2856]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-start-far:
- shard-dg2-9: NOTRUN -> [SKIP][67] ([i915#2856]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#2856])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_drm_fdinfo@virtual-busy-hang-all:
- shard-dg2-9: NOTRUN -> [SKIP][69] ([i915#14118])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@i915_drm_fdinfo@virtual-busy-hang-all.html
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#14118])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-7/igt@i915_drm_fdinfo@virtual-busy-hang-all.html
* igt@i915_module_load@reload-no-display:
- shard-dg2: [PASS][71] -> [DMESG-WARN][72] ([i915#13029] / [i915#14545])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-8/igt@i915_module_load@reload-no-display.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@i915_module_load@reload-no-display.html
- shard-tglu-1: NOTRUN -> [DMESG-WARN][73] ([i915#13029] / [i915#14545])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@i915_module_load@reload-no-display.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg2: [PASS][74] -> [DMESG-WARN][75] ([i915#13447])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-8/igt@i915_module_load@reload-with-fault-injection.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-4/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#11681] / [i915#6621])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@thresholds:
- shard-dg2-9: NOTRUN -> [SKIP][77] ([i915#11681])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@i915_pm_rps@thresholds.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4212])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2-9: NOTRUN -> [SKIP][79] ([i915#4212]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][80] ([i915#12761]) +1 other test incomplete
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu-1: NOTRUN -> [SKIP][81] ([i915#9531])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-dg2: [PASS][82] -> [FAIL][83] ([i915#5956])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][84] ([i915#1769] / [i915#3555])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1:
- shard-dg2: NOTRUN -> [FAIL][85] ([i915#5956])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][86] ([i915#5286]) +4 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#5286]) +2 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2-9: NOTRUN -> [SKIP][88] +8 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-mtlp: NOTRUN -> [SKIP][89] +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-7/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#4538] / [i915#5190]) +4 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-dg2-9: NOTRUN -> [SKIP][91] ([i915#4538] / [i915#5190]) +4 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2-9: NOTRUN -> [SKIP][92] ([i915#5190])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
- shard-mtlp: NOTRUN -> [SKIP][93] ([i915#6187])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][94] +56 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#6095]) +44 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][96] ([i915#12313])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][97] ([i915#14098] / [i915#6095]) +44 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][98] ([i915#6095]) +9 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-7/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2:
- shard-dg2-9: NOTRUN -> [SKIP][99] ([i915#10307] / [i915#6095]) +19 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#10307] / [i915#6095]) +172 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-7/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#12805])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-dg2-9: NOTRUN -> [SKIP][102] ([i915#12805])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#6095]) +12 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][104] ([i915#6095]) +44 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [DMESG-WARN][105] ([i915#4423])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg1-14/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#12313])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#6095]) +49 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#12313]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-9/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#6095]) +119 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@mode-transition:
- shard-glk: NOTRUN -> [SKIP][111] +67 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-glk1/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#3742]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#13781]) +4 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#11151] / [i915#7828]) +7 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-mtlp: NOTRUN -> [SKIP][115] ([i915#11151] / [i915#7828]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-7/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][116] ([i915#11151] / [i915#7828]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-dg2-9: NOTRUN -> [SKIP][117] ([i915#11151] / [i915#7828]) +3 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-tglu: NOTRUN -> [SKIP][118] ([i915#11151] / [i915#7828]) +6 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_color@ctm-max:
- shard-rkl: [PASS][119] -> [SKIP][120] ([i915#12655] / [i915#14544])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@kms_color@ctm-max.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_color@ctm-max.html
* igt@kms_color@deep-color:
- shard-dg2: [PASS][121] -> [SKIP][122] ([i915#12655] / [i915#3555])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_color@deep-color.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-7/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#7118] / [i915#9424]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][125] ([i915#7173])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-3.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-tglu: NOTRUN -> [SKIP][126] ([i915#3116] / [i915#3299])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6944] / [i915#9424])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-7/igt@kms_content_protection@lic-type-1.html
- shard-dg2-9: NOTRUN -> [SKIP][128] ([i915#9424])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-tglu-1: NOTRUN -> [SKIP][129] ([i915#6944] / [i915#7116] / [i915#7118])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-rkl: [PASS][130] -> [SKIP][131] ([i915#14544]) +37 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-256x85.html
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][132] ([i915#13566]) +3 other tests fail
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html
- shard-rkl: NOTRUN -> [FAIL][133] ([i915#13566])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#13049]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-3/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#13049]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-rkl: [PASS][136] -> [FAIL][137] ([i915#13566]) +1 other test fail
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-64x21.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#3555]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-9/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-tglu-1: NOTRUN -> [SKIP][139] ([i915#3555]) +2 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2-9: NOTRUN -> [SKIP][140] ([i915#3555]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-mtlp: NOTRUN -> [SKIP][141] ([i915#3555] / [i915#8814])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-9: NOTRUN -> [SKIP][142] ([i915#13049])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [DMESG-WARN][143] ([i915#12964]) +2 other tests dmesg-warn
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-dg2-9: NOTRUN -> [SKIP][144] ([i915#13046] / [i915#5354]) +2 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#13046] / [i915#5354]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#4103]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-atomic:
- shard-glk10: NOTRUN -> [SKIP][147] ([i915#11190]) +2 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-glk10/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html
* igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size:
- shard-rkl: [PASS][148] -> [SKIP][149] ([i915#11190] / [i915#14544]) +2 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_cursor_legacy@basic-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-glk: [PASS][150] -> [FAIL][151] ([i915#2346])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#4103])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#9723])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#13691])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_aux_dev:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#1257])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-1/igt@kms_dp_aux_dev.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#13748])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#13707])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-9/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#3555] / [i915#3840]) +1 other test skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-mtlp: NOTRUN -> [SKIP][159] ([i915#3555] / [i915#3840])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-7/igt@kms_dsc@dsc-with-output-formats.html
- shard-dg2-9: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#3840])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@psr:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#3469])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-3/igt@kms_fbcon_fbt@psr.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#3469])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-9: NOTRUN -> [SKIP][163] ([i915#4854])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#1839])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-9/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#1839])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#9337])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][167] ([i915#4839])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-wf_vblank-interruptible:
- shard-dg2-9: NOTRUN -> [SKIP][168] ([i915#9934]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3637] / [i915#9934])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][170] ([i915#3637] / [i915#9934]) +8 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg2: NOTRUN -> [SKIP][171] ([i915#9934]) +4 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#3637] / [i915#9934]) +6 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@absolute-wf_vblank-interruptible:
- shard-rkl: [PASS][173] -> [SKIP][174] ([i915#14544] / [i915#3637]) +6 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-4/igt@kms_flip@absolute-wf_vblank-interruptible.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_flip@absolute-wf_vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][175] ([i915#12745] / [i915#4839]) +1 other test incomplete
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-glk5/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][176] ([i915#12745])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-glk5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#8810] / [i915#8813])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#8810] / [i915#8813])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#2672]) +2 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2-9: NOTRUN -> [SKIP][180] ([i915#2672] / [i915#3555])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2-9: NOTRUN -> [SKIP][181] ([i915#2672]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-rkl: [PASS][182] -> [SKIP][183] ([i915#14544] / [i915#3555]) +3 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#2587] / [i915#2672] / [i915#3555])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#2587] / [i915#2672])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#2672] / [i915#3555] / [i915#5190])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#2672]) +4 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#2672] / [i915#3555]) +4 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][189] ([i915#2587] / [i915#2672]) +4 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#2672] / [i915#3555])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-9: NOTRUN -> [SKIP][191] ([i915#2672] / [i915#3555] / [i915#5190])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-rkl: [PASS][192] -> [SKIP][193] ([i915#14544] / [i915#1849] / [i915#5354]) +5 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#8708]) +7 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#5354]) +10 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-glk10: NOTRUN -> [SKIP][196] +310 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#3458]) +5 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2-9: NOTRUN -> [SKIP][198] ([i915#3458]) +9 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-9: NOTRUN -> [SKIP][199] ([i915#8708]) +5 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#10055])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#8708]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render:
- shard-tglu: NOTRUN -> [SKIP][202] +55 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2-9: NOTRUN -> [SKIP][203] ([i915#5354]) +15 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][204] ([i915#1825]) +3 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#3555] / [i915#8228])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@static-swap:
- shard-tglu: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#8228])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: [PASS][207] -> [SKIP][208] ([i915#3555] / [i915#8228])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_hdr@static-toggle-dpms.html
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-7/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_hdr@static-toggle-suspend:
- shard-dg2-9: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8228]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_invalid_mode@bad-htotal:
- shard-rkl: [PASS][210] -> [SKIP][211] ([i915#14544] / [i915#3555] / [i915#8826]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@kms_invalid_mode@bad-htotal.html
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_invalid_mode@bad-htotal.html
* igt@kms_joiner@basic-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#10656])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#12388])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-1/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][214] ([i915#12388])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-9: NOTRUN -> [SKIP][215] ([i915#12339]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2-9: NOTRUN -> [SKIP][216] ([i915#13522])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane@planar-pixel-format-settings:
- shard-rkl: [PASS][217] -> [SKIP][218] ([i915#14544] / [i915#9581])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@kms_plane@planar-pixel-format-settings.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_plane@planar-pixel-format-settings.html
* igt@kms_plane@plane-position-hole-dpms:
- shard-rkl: [PASS][219] -> [SKIP][220] ([i915#14544] / [i915#8825]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-4/igt@kms_plane@plane-position-hole-dpms.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_plane@plane-position-hole-dpms.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-dg2-9: NOTRUN -> [SKIP][221] ([i915#13958])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_plane_multiple@2x-tiling-4.html
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#13958])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-7/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#13958]) +1 other test skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#13958])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-tglu: NOTRUN -> [SKIP][225] ([i915#14259])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-9/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2-9: NOTRUN -> [SKIP][226] ([i915#13046] / [i915#5354] / [i915#9423])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-mtlp: NOTRUN -> [SKIP][227] ([i915#12247]) +4 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#12247]) +4 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling:
- shard-rkl: [PASS][229] -> [SKIP][230] ([i915#12247] / [i915#14544] / [i915#8152]) +5 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a:
- shard-rkl: [PASS][231] -> [SKIP][232] ([i915#12247] / [i915#14544]) +3 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- shard-rkl: [PASS][233] -> [SKIP][234] ([i915#12247] / [i915#14544] / [i915#3555] / [i915#6953] / [i915#8152])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-rkl: [PASS][235] -> [SKIP][236] ([i915#12247] / [i915#14544] / [i915#6953] / [i915#8152])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@bad-brightness:
- shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#9812])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2-9: NOTRUN -> [SKIP][238] ([i915#9685])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#9292])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-dpms-negative:
- shard-rkl: [PASS][240] -> [SKIP][241] ([i915#13441] / [i915#14544])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-4/igt@kms_pm_dc@dc5-dpms-negative.html
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_pm_dc@dc5-dpms-negative.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#9685])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-1/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#3828])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-tglu: NOTRUN -> [SKIP][244] ([i915#3828])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-9/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu: NOTRUN -> [SKIP][245] ([i915#8430])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [PASS][246] -> [SKIP][247] ([i915#9519])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@fences-dpms:
- shard-dg2-9: NOTRUN -> [SKIP][248] ([i915#4077]) +6 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_pm_rpm@fences-dpms.html
* igt@kms_pm_rpm@i2c:
- shard-dg1: [PASS][249] -> [DMESG-WARN][250] ([i915#4423]) +2 other tests dmesg-warn
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg1-16/igt@kms_pm_rpm@i2c.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg1-15/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [PASS][251] -> [SKIP][252] ([i915#14544] / [i915#9519]) +2 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [PASS][253] -> [SKIP][254] ([i915#9519]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#6524])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-dg2-9: NOTRUN -> [SKIP][256] ([i915#6524] / [i915#6805])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_prime@d3hot:
- shard-tglu: NOTRUN -> [SKIP][257] ([i915#6524])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-glk: NOTRUN -> [SKIP][258] ([i915#11520]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-glk1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#11520]) +4 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#11520]) +5 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-glk10: NOTRUN -> [SKIP][261] ([i915#11520]) +7 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-glk10/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb:
- shard-dg2-9: NOTRUN -> [SKIP][262] ([i915#11520]) +3 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#11520]) +3 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-3/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#9683])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr2-dpms:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#9688]) +2 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-7/igt@kms_psr@fbc-psr2-dpms.html
* igt@kms_psr@psr-primary-render:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#9732]) +14 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-9/igt@kms_psr@psr-primary-render.html
* igt@kms_psr@psr-suspend:
- shard-dg2-9: NOTRUN -> [SKIP][267] ([i915#1072] / [i915#9732]) +10 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_psr@psr-suspend.html
* igt@kms_psr@psr2-cursor-blt:
- shard-dg2: NOTRUN -> [SKIP][268] ([i915#1072] / [i915#9732]) +9 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_psr@psr2-sprite-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#9732]) +15 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#9685])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2: NOTRUN -> [SKIP][271] ([i915#12755])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-3/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#4235])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#5190]) +1 other test skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2-9: NOTRUN -> [SKIP][274] ([i915#12755] / [i915#5190])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#5289]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-tglu: NOTRUN -> [SKIP][276] ([i915#5289])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2-9: NOTRUN -> [ABORT][277] ([i915#13179]) +1 other test abort
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][278] ([i915#3555]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_vrr@flip-basic-fastset:
- shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#9906])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@lobf:
- shard-tglu: NOTRUN -> [SKIP][280] ([i915#11920])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-dg2: NOTRUN -> [SKIP][281] ([i915#9906])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-3/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-tglu: NOTRUN -> [SKIP][282] ([i915#9906])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-9/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@mi-rpc:
- shard-dg2-9: NOTRUN -> [SKIP][283] ([i915#2434])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-9/igt@perf@mi-rpc.html
* igt@perf@non-zero-reason:
- shard-dg2: NOTRUN -> [FAIL][284] ([i915#9100]) +1 other test fail
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-1/igt@perf@non-zero-reason.html
* igt@perf_pmu@busy-accuracy-50@vecs0:
- shard-rkl: [PASS][285] -> [DMESG-WARN][286] ([i915#12964]) +16 other tests dmesg-warn
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-8/igt@perf_pmu@busy-accuracy-50@vecs0.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-4/igt@perf_pmu@busy-accuracy-50@vecs0.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][287] -> [FAIL][288] ([i915#4349]) +4 other tests fail
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@module-unload:
- shard-glk10: NOTRUN -> [FAIL][289] ([i915#14433])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-glk10/igt@perf_pmu@module-unload.html
* igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6:
- shard-tglu: NOTRUN -> [FAIL][290] ([i915#12910]) +9 other tests fail
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-7/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#9917])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@sriov_basic@enable-vfs-autoprobe-on.html
#### Possible fixes ####
* igt@fbdev@write:
- shard-dg2: [SKIP][292] ([i915#2582]) -> [PASS][293]
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@fbdev@write.html
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@fbdev@write.html
- shard-rkl: [SKIP][294] ([i915#14544] / [i915#2582]) -> [PASS][295]
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@fbdev@write.html
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@fbdev@write.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][296] ([i915#5784]) -> [PASS][297] +1 other test pass
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg1-17/igt@gem_eio@reset-stress.html
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg1-12/igt@gem_eio@reset-stress.html
* igt@gem_exec_fence@syncobj-timeline-unused-fence:
- shard-dg2: [SKIP][298] ([i915#2575]) -> [PASS][299] +79 other tests pass
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@gem_exec_fence@syncobj-timeline-unused-fence.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@gem_exec_fence@syncobj-timeline-unused-fence.html
* igt@gem_exec_suspend@basic-s3-devices:
- shard-dg1: [DMESG-WARN][300] ([i915#4423]) -> [PASS][301] +1 other test pass
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg1-15/igt@gem_exec_suspend@basic-s3-devices.html
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg1-18/igt@gem_exec_suspend@basic-s3-devices.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-dg2: [SKIP][302] ([i915#14964]) -> [PASS][303]
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@gem_lmem_swapping@parallel-multi.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_mmap_offset@clear-via-pagefault:
- shard-mtlp: [ABORT][304] ([i915#14809]) -> [PASS][305] +1 other test pass
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-mtlp-2/igt@gem_mmap_offset@clear-via-pagefault.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-7/igt@gem_mmap_offset@clear-via-pagefault.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: [TIMEOUT][306] ([i915#12964]) -> [PASS][307]
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-8/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@i915_module_load@load:
- shard-dg2: ([PASS][308], [PASS][309], [PASS][310], [FAIL][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [PASS][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [FAIL][323], [FAIL][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330]) ([i915#14957]) -> ([PASS][331], [PASS][332], [PASS][333], [PASS][334], [PASS][335], [PASS][336], [PASS][337], [PASS][338], [PASS][339], [PASS][340], [PASS][341], [PASS][342], [PASS][343], [PASS][344], [PASS][345], [PASS][346], [PASS][347], [PASS][348], [PASS][349], [PASS][350], [PASS][351], [PASS][352])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-10/igt@i915_module_load@load.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-8/igt@i915_module_load@load.html
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-10/igt@i915_module_load@load.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@i915_module_load@load.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-6/igt@i915_module_load@load.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-6/igt@i915_module_load@load.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-1/igt@i915_module_load@load.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-4/igt@i915_module_load@load.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-7/igt@i915_module_load@load.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-3/igt@i915_module_load@load.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-1/igt@i915_module_load@load.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-4/igt@i915_module_load@load.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-3/igt@i915_module_load@load.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-8/igt@i915_module_load@load.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-4/igt@i915_module_load@load.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@i915_module_load@load.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@i915_module_load@load.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-5/igt@i915_module_load@load.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-6/igt@i915_module_load@load.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@i915_module_load@load.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-5/igt@i915_module_load@load.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-8/igt@i915_module_load@load.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-7/igt@i915_module_load@load.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-10/igt@i915_module_load@load.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-10/igt@i915_module_load@load.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@i915_module_load@load.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@i915_module_load@load.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@i915_module_load@load.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-1/igt@i915_module_load@load.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-1/igt@i915_module_load@load.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-3/igt@i915_module_load@load.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-3/igt@i915_module_load@load.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-4/igt@i915_module_load@load.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-4/igt@i915_module_load@load.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-4/igt@i915_module_load@load.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-5/igt@i915_module_load@load.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-5/igt@i915_module_load@load.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-5/igt@i915_module_load@load.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@i915_module_load@load.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@i915_module_load@load.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-7/igt@i915_module_load@load.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-7/igt@i915_module_load@load.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-7/igt@i915_module_load@load.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@i915_module_load@load.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@i915_module_load@load.html
* igt@i915_pm_rpm@system-suspend-devices:
- shard-dg2: [ABORT][353] -> [PASS][354]
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-10/igt@i915_pm_rpm@system-suspend-devices.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-3/igt@i915_pm_rpm@system-suspend-devices.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-dg2: [SKIP][355] ([i915#14962]) -> [PASS][356]
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@i915_pm_rpm@system-suspend-execbuf.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_selftest@live@objects:
- shard-dg2: [FAIL][357] ([i915#15024]) -> [PASS][358] +35 other tests pass
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@i915_selftest@live@objects.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@i915_selftest@live@objects.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-dg1: [DMESG-WARN][359] ([i915#4391] / [i915#4423]) -> [PASS][360]
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg1-17/igt@i915_suspend@basic-s2idle-without-i915.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg1-14/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [FAIL][361] ([i915#5138]) -> [PASS][362]
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: [SKIP][363] ([i915#14544]) -> [PASS][364] +35 other tests pass
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_color@ctm-0-75:
- shard-rkl: [SKIP][365] ([i915#12655] / [i915#14544]) -> [PASS][366] +2 other tests pass
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_color@ctm-0-75.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@kms_color@ctm-0-75.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-tglu: [FAIL][367] ([i915#13566]) -> [PASS][368] +1 other test pass
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-128x42.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_dp_link_training@non-uhbr-sst:
- shard-dg2: [SKIP][369] ([i915#13749]) -> [PASS][370]
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-4/igt@kms_dp_link_training@non-uhbr-sst.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-10/igt@kms_dp_link_training@non-uhbr-sst.html
* igt@kms_flip@bo-too-big-interruptible:
- shard-rkl: [SKIP][371] ([i915#14544] / [i915#3637]) -> [PASS][372] +6 other tests pass
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_flip@bo-too-big-interruptible.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@kms_flip@bo-too-big-interruptible.html
* igt@kms_flip@flip-vs-dpms-on-nop:
- shard-rkl: [SKIP][373] ([i915#14544] / [i915#14553]) -> [PASS][374]
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_flip@flip-vs-dpms-on-nop.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@kms_flip@flip-vs-dpms-on-nop.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling:
- shard-rkl: [SKIP][375] ([i915#14544] / [i915#3555]) -> [PASS][376] +2 other tests pass
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-rkl: [SKIP][377] ([i915#14544] / [i915#1849] / [i915#5354]) -> [PASS][378] +8 other tests pass
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][379] -> [PASS][380] +16 other tests pass
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html
* igt@kms_invalid_mode@bad-vtotal:
- shard-rkl: [SKIP][381] ([i915#14544] / [i915#3555] / [i915#8826]) -> [PASS][382]
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_invalid_mode@bad-vtotal.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@kms_invalid_mode@bad-vtotal.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- shard-rkl: [SKIP][383] ([i915#11190] / [i915#14544]) -> [PASS][384] +1 other test pass
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
* igt@kms_plane@plane-panning-top-left:
- shard-rkl: [SKIP][385] ([i915#14544] / [i915#8825]) -> [PASS][386]
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_plane@plane-panning-top-left.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@kms_plane@plane-panning-top-left.html
* igt@kms_plane_alpha_blend@constant-alpha-min:
- shard-rkl: [SKIP][387] ([i915#14544] / [i915#7294]) -> [PASS][388] +1 other test pass
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_plane_alpha_blend@constant-alpha-min.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@kms_plane_alpha_blend@constant-alpha-min.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-rkl: [SKIP][389] ([i915#12247] / [i915#14544] / [i915#8152]) -> [PASS][390] +1 other test pass
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a:
- shard-rkl: [SKIP][391] ([i915#12247] / [i915#14544]) -> [PASS][392]
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-dg2: [SKIP][393] ([i915#14958] / [i915#9423]) -> [PASS][394] +5 other tests pass
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [SKIP][395] ([i915#14960]) -> [PASS][396] +1 other test pass
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@fences-dpms:
- shard-rkl: [SKIP][397] ([i915#14544] / [i915#1849]) -> [PASS][398]
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_pm_rpm@fences-dpms.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_pm_rpm@fences-dpms.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-rkl: [SKIP][399] ([i915#9519]) -> [PASS][400]
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_prime@basic-crc-vgem:
- shard-rkl: [SKIP][401] ([i915#14544] / [i915#6524]) -> [PASS][402]
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_prime@basic-crc-vgem.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_prime@basic-crc-vgem.html
* igt@kms_properties@plane-properties-atomic:
- shard-rkl: [SKIP][403] ([i915#11521] / [i915#14544]) -> [PASS][404]
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_properties@plane-properties-atomic.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_properties@plane-properties-atomic.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1:
- shard-mtlp: [FAIL][405] ([i915#9196]) -> [PASS][406] +1 other test pass
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-snb: [ABORT][407] ([i915#14871]) -> [PASS][408] +1 other test pass
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-snb4/igt@kms_vblank@ts-continuation-suspend.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-snb1/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vblank@ts-continuation-suspend@pipe-b-hdmi-a-1:
- shard-snb: [DMESG-WARN][409] -> [PASS][410]
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-snb4/igt@kms_vblank@ts-continuation-suspend@pipe-b-hdmi-a-1.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-snb1/igt@kms_vblank@ts-continuation-suspend@pipe-b-hdmi-a-1.html
* igt@kms_vrr@negative-basic:
- shard-dg2: [SKIP][411] ([i915#3555] / [i915#9906]) -> [PASS][412]
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-4/igt@kms_vrr@negative-basic.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-10/igt@kms_vrr@negative-basic.html
* igt@perf_pmu@all-busy-check-all:
- shard-dg2: [SKIP][413] ([i915#14959]) -> [PASS][414] +6 other tests pass
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@perf_pmu@all-busy-check-all.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@perf_pmu@all-busy-check-all.html
* igt@syncobj_timeline@invalid-signal-illegal-handle:
- shard-rkl: [DMESG-WARN][415] ([i915#12964]) -> [PASS][416] +3 other tests pass
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-2/igt@syncobj_timeline@invalid-signal-illegal-handle.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@syncobj_timeline@invalid-signal-illegal-handle.html
* igt@syncobj_timeline@wait-all-for-submit-delayed-submit:
- shard-dg2: [SKIP][417] ([i915#14958]) -> [PASS][418] +76 other tests pass
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@syncobj_timeline@wait-all-for-submit-delayed-submit.html
#### Warnings ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: [SKIP][419] ([i915#2575]) -> [SKIP][420] ([i915#8411])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@api_intel_bb@blit-reloc-purge-cache.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@crc32:
- shard-rkl: [SKIP][421] ([i915#6230]) -> [SKIP][422] ([i915#14544] / [i915#6230])
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@api_intel_bb@crc32.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: [SKIP][423] ([i915#8411]) -> [SKIP][424] ([i915#14544] / [i915#8411]) +1 other test skip
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@api_intel_bb@object-reloc-keep-cache.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@gem_ccs@block-copy-compressed:
- shard-rkl: [SKIP][425] ([i915#14544] / [i915#3555] / [i915#9323]) -> [SKIP][426] ([i915#3555] / [i915#9323])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@gem_ccs@block-copy-compressed.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: [SKIP][427] ([i915#3555] / [i915#9323]) -> [SKIP][428] ([i915#14544] / [i915#3555] / [i915#9323])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-4/igt@gem_ccs@block-multicopy-inplace.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: [SKIP][429] ([i915#2575]) -> [SKIP][430] ([i915#7697])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@gem_close_race@multigpu-basic-threads.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: [SKIP][431] ([i915#2575]) -> [SKIP][432] ([i915#8555])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-close.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: [SKIP][433] ([i915#14544] / [i915#280]) -> [SKIP][434] ([i915#280]) +1 other test skip
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@gem_ctx_sseu@engines.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@gem_ctx_sseu@engines.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: [SKIP][435] ([i915#2575]) -> [SKIP][436] ([i915#4812]) +1 other test skip
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@gem_exec_balancer@bonded-true-hang.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: [SKIP][437] ([i915#14544] / [i915#4525]) -> [SKIP][438] ([i915#4525])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@gem_exec_balancer@parallel-bb-first.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: [SKIP][439] ([i915#4525]) -> [SKIP][440] ([i915#14544] / [i915#4525]) +1 other test skip
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-4/igt@gem_exec_balancer@parallel-keep-submit-fence.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_capture@capture:
- shard-dg2: [SKIP][441] ([i915#2575]) -> [FAIL][442] ([i915#11965])
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@gem_exec_capture@capture.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@gem_exec_capture@capture.html
* igt@gem_exec_capture@capture-invisible:
- shard-rkl: [SKIP][443] ([i915#14544] / [i915#6334]) -> [SKIP][444] ([i915#6334]) +1 other test skip
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@gem_exec_capture@capture-invisible.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: [SKIP][445] ([i915#6344]) -> [SKIP][446] ([i915#14544] / [i915#6344])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@gem_exec_capture@capture-recoverable.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: [SKIP][447] ([i915#2575]) -> [SKIP][448] ([i915#3539] / [i915#4852])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@gem_exec_flush@basic-uc-ro-default.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: [SKIP][449] ([i915#14544] / [i915#3281]) -> [SKIP][450] ([i915#3281]) +5 other tests skip
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@gem_exec_reloc@basic-wc-read-noreloc.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_reloc@basic-write-gtt:
- shard-dg2: [SKIP][451] ([i915#2575]) -> [SKIP][452] ([i915#3281]) +7 other tests skip
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@gem_exec_reloc@basic-write-gtt.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@gem_exec_reloc@basic-write-gtt.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: [SKIP][453] ([i915#3281]) -> [SKIP][454] ([i915#14544] / [i915#3281]) +7 other tests skip
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@gem_exec_reloc@basic-write-read-active.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-dg2: [SKIP][455] ([i915#2575]) -> [SKIP][456] ([i915#4860]) +1 other test skip
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@gem_fenced_exec_thrash@too-many-fences.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: [SKIP][457] ([i915#2190]) -> [SKIP][458] ([i915#14544] / [i915#2190])
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@gem_huc_copy@huc-copy.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_evict@dontneed-evict-race:
- shard-rkl: [SKIP][459] ([i915#14544] / [i915#4613] / [i915#7582]) -> [SKIP][460] ([i915#4613] / [i915#7582])
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@gem_lmem_evict@dontneed-evict-race.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: [SKIP][461] ([i915#4613]) -> [SKIP][462] ([i915#14544] / [i915#4613]) +2 other tests skip
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@gem_lmem_swapping@parallel-multi.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@verify:
- shard-rkl: [SKIP][463] ([i915#14544] / [i915#4613]) -> [SKIP][464] ([i915#4613]) +1 other test skip
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@gem_lmem_swapping@verify.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@gem_lmem_swapping@verify.html
* igt@gem_media_vme:
- shard-dg2: [SKIP][465] ([i915#2575]) -> [SKIP][466] ([i915#284])
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@gem_media_vme.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@gem_media_vme.html
- shard-rkl: [SKIP][467] ([i915#14544] / [i915#284]) -> [SKIP][468] ([i915#284])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@gem_media_vme.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@gem_media_vme.html
* igt@gem_mmap_gtt@big-copy-odd:
- shard-dg2: [SKIP][469] ([i915#2575]) -> [SKIP][470] ([i915#4077]) +5 other tests skip
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@gem_mmap_gtt@big-copy-odd.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@gem_mmap_gtt@big-copy-odd.html
* igt@gem_mmap_wc@copy:
- shard-dg2: [SKIP][471] ([i915#2575]) -> [SKIP][472] ([i915#4083]) +3 other tests skip
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@gem_mmap_wc@copy.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@gem_mmap_wc@copy.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg2: [SKIP][473] ([i915#2575]) -> [SKIP][474] ([i915#3282]) +3 other tests skip
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@gem_partial_pwrite_pread@write-uncached.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: [SKIP][475] ([i915#14544] / [i915#3282]) -> [SKIP][476] ([i915#3282]) +3 other tests skip
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@gem_pwrite@basic-exhaustion.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite_snooped:
- shard-rkl: [SKIP][477] ([i915#3282]) -> [SKIP][478] ([i915#14544] / [i915#3282]) +3 other tests skip
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@gem_pwrite_snooped.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@gem_pwrite_snooped.html
* igt@gem_pxp@hw-rejects-pxp-context:
- shard-rkl: [SKIP][479] ([i915#13717]) -> [TIMEOUT][480] ([i915#12917] / [i915#12964])
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-8/igt@gem_pxp@hw-rejects-pxp-context.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-context.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: [SKIP][481] ([i915#2575]) -> [SKIP][482] ([i915#4270]) +2 other tests skip
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@gem_pxp@protected-raw-src-copy-not-readible.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@reject-modify-context-protection-off-1:
- shard-rkl: [SKIP][483] ([i915#4270]) -> [TIMEOUT][484] ([i915#12917] / [i915#12964])
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-off-1.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@gem_pxp@reject-modify-context-protection-off-1.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
- shard-dg2: [SKIP][485] ([i915#2575] / [i915#5190]) -> [SKIP][486] ([i915#5190] / [i915#8428]) +3 other tests skip
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: [SKIP][487] ([i915#14544] / [i915#8411]) -> [SKIP][488] ([i915#8411]) +1 other test skip
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg2: [SKIP][489] ([i915#2575]) -> [SKIP][490] ([i915#4079])
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@gem_set_tiling_vs_gtt.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: [SKIP][491] ([i915#2575]) -> [SKIP][492] ([i915#4885])
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@gem_softpin@evict-snoop-interruptible.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-rkl: [SKIP][493] ([i915#3297] / [i915#3323]) -> [SKIP][494] ([i915#14544] / [i915#3297] / [i915#3323])
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-4/igt@gem_userptr_blits@dmabuf-sync.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: [SKIP][495] ([i915#2575]) -> [SKIP][496] ([i915#3297] / [i915#4880])
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg2: [SKIP][497] ([i915#2575]) -> [SKIP][498] ([i915#3297]) +3 other tests skip
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@gem_userptr_blits@unsync-unmap.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: [SKIP][499] ([i915#14544] / [i915#3297]) -> [SKIP][500] ([i915#3297])
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-rkl: [SKIP][501] ([i915#3297]) -> [SKIP][502] ([i915#14544] / [i915#3297])
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap-cycles.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gen7_exec_parse@load-register-reg:
- shard-dg2: [SKIP][503] ([i915#2575]) -> [SKIP][504] +1 other test skip
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@gen7_exec_parse@load-register-reg.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@gen7_exec_parse@load-register-reg.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: [SKIP][505] ([i915#2527]) -> [SKIP][506] ([i915#14544] / [i915#2527])
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@gen9_exec_parse@bb-oversize.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2: [SKIP][507] ([i915#2575]) -> [SKIP][508] ([i915#2856]) +3 other tests skip
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@gen9_exec_parse@unaligned-access.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@gen9_exec_parse@unaligned-access.html
- shard-rkl: [SKIP][509] ([i915#14544] / [i915#2527]) -> [SKIP][510] ([i915#2527]) +1 other test skip
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@gen9_exec_parse@unaligned-access.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_drm_fdinfo@virtual-busy-all:
- shard-dg2: [SKIP][511] ([i915#14959]) -> [SKIP][512] ([i915#14118])
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@i915_drm_fdinfo@virtual-busy-all.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@i915_drm_fdinfo@virtual-busy-all.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: [SKIP][513] ([i915#8399]) -> [SKIP][514] ([i915#14544] / [i915#8399])
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@i915_pm_freq_api@freq-basic-api.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-rkl: [SKIP][515] ([i915#14498] / [i915#14544]) -> [SKIP][516] ([i915#14498])
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@i915_pm_rc6_residency@rc6-idle.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: [SKIP][517] ([i915#2575]) -> [SKIP][518] ([i915#11681])
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@i915_pm_rps@thresholds-park.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@i915_pm_rps@thresholds-park.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: [FAIL][519] ([i915#15024]) -> [DMESG-FAIL][520] ([i915#12061]) +1 other test dmesg-fail
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@i915_selftest@live@workarounds.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@i915_selftest@live@workarounds.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: [SKIP][521] ([i915#7707]) -> [SKIP][522] ([i915#14544] / [i915#7707])
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@intel_hwmon@hwmon-read.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@intel_hwmon@hwmon-read.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: [SKIP][523] ([i915#14544] / [i915#7707]) -> [SKIP][524] ([i915#7707])
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@intel_hwmon@hwmon-write.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: [SKIP][525] ([i915#14958]) -> [SKIP][526] ([i915#4212])
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_addfb_basic@clobberred-modifier.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][527] ([i915#5286]) -> [SKIP][528] ([i915#14544]) +3 other tests skip
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@kms_big_fb@4-tiled-addfb.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][529] ([i915#14544]) -> [SKIP][530] ([i915#5286]) +4 other tests skip
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-rkl: [SKIP][531] ([i915#3638]) -> [SKIP][532] ([i915#14544]) +1 other test skip
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-4/igt@kms_big_fb@linear-16bpp-rotate-270.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg1: [SKIP][533] ([i915#3638]) -> [SKIP][534] ([i915#3638] / [i915#4423])
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg1-18/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg1-16/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-rkl: [SKIP][535] ([i915#14544]) -> [SKIP][536] ([i915#3638]) +3 other tests skip
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-dg2: [SKIP][537] ([i915#5190]) -> [SKIP][538] ([i915#4538] / [i915#5190]) +8 other tests skip
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs:
- shard-dg2: [SKIP][539] -> [SKIP][540] ([i915#10307] / [i915#6095]) +9 other tests skip
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2: [SKIP][541] -> [SKIP][542] ([i915#12313]) +1 other test skip
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][543] ([i915#14098] / [i915#6095]) -> [SKIP][544] ([i915#6095]) +2 other tests skip
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-8/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][545] ([i915#14544]) -> [SKIP][546] ([i915#12313]) +1 other test skip
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][547] ([i915#14544]) -> [SKIP][548] ([i915#12805])
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-rkl: [SKIP][549] ([i915#14098] / [i915#6095]) -> [SKIP][550] ([i915#14544]) +9 other tests skip
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs:
- shard-rkl: [SKIP][551] ([i915#14544]) -> [SKIP][552] ([i915#14098] / [i915#6095]) +8 other tests skip
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs:
- shard-rkl: [DMESG-WARN][553] ([i915#12964]) -> [SKIP][554] ([i915#14544]) +1 other test skip
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg2: [SKIP][555] ([i915#14958]) -> [SKIP][556] +1 other test skip
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_chamelium_color@ctm-0-50.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-rkl: [SKIP][557] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][558] ([i915#11151] / [i915#7828]) +4 other tests skip
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-dg1: [SKIP][559] ([i915#11151] / [i915#4423] / [i915#7828]) -> [SKIP][560] ([i915#11151] / [i915#7828]) +1 other test skip
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg1-16/igt@kms_chamelium_frames@dp-crc-single.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg1-17/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-rkl: [SKIP][561] ([i915#11151] / [i915#7828]) -> [SKIP][562] ([i915#11151] / [i915#14544] / [i915#7828]) +6 other tests skip
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@kms_chamelium_frames@vga-frame-dump.html
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2: [SKIP][563] ([i915#14958]) -> [SKIP][564] ([i915#11151] / [i915#7828]) +4 other tests skip
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_color@deep-color:
- shard-rkl: [SKIP][565] ([i915#12655] / [i915#3555]) -> [SKIP][566] ([i915#12655] / [i915#14544] / [i915#3555])
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-4/igt@kms_color@deep-color.html
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-dg2: [SKIP][567] ([i915#7118] / [i915#9424]) -> [FAIL][568] ([i915#7173])
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-8/igt@kms_content_protection@atomic.html
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-rkl: [SKIP][569] ([i915#3116]) -> [SKIP][570] ([i915#14544])
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0.html
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html
- shard-dg2: [SKIP][571] ([i915#14958]) -> [SKIP][572] ([i915#3299])
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_content_protection@dp-mst-type-0.html
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-rkl: [SKIP][573] ([i915#14544]) -> [SKIP][574] ([i915#9424])
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_content_protection@lic-type-1.html
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_content_protection@lic-type-1.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-dg2: [SKIP][575] ([i915#14958]) -> [SKIP][576] ([i915#3555]) +3 other tests skip
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-32x10.html
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-rkl: [FAIL][577] ([i915#13566]) -> [SKIP][578] ([i915#14544])
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg2: [SKIP][579] ([i915#14958]) -> [SKIP][580] ([i915#13049]) +2 other tests skip
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-rkl: [SKIP][581] ([i915#13049]) -> [SKIP][582] ([i915#14544])
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x512.html
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-rkl: [SKIP][583] ([i915#14544]) -> [SKIP][584] ([i915#13049])
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-rkl: [SKIP][585] ([i915#3555]) -> [SKIP][586] ([i915#14544]) +3 other tests skip
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
[586]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: [SKIP][587] ([i915#14544]) -> [SKIP][588] ([i915#3555]) +6 other tests skip
[587]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html
[588]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_edge_walk@256x256-top-edge:
- shard-rkl: [SKIP][589] ([i915#14544]) -> [DMESG-WARN][590] ([i915#12964])
[589]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_cursor_edge_walk@256x256-top-edge.html
[590]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_cursor_edge_walk@256x256-top-edge.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-rkl: [SKIP][591] ([i915#4103]) -> [SKIP][592] ([i915#11190] / [i915#14544])
[591]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[592]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-rkl: [SKIP][593] ([i915#14544]) -> [SKIP][594] +12 other tests skip
[593]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
[594]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-rkl: [SKIP][595] -> [SKIP][596] ([i915#14544]) +14 other tests skip
[595]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[596]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-dg2: [SKIP][597] ([i915#14958]) -> [SKIP][598] ([i915#13046] / [i915#5354]) +2 other tests skip
[597]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[598]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-rkl: [SKIP][599] ([i915#14544]) -> [FAIL][600] ([i915#2346]) +1 other test fail
[599]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[600]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: [SKIP][601] ([i915#9067]) -> [SKIP][602] ([i915#14544])
[601]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
[602]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: [SKIP][603] ([i915#3555] / [i915#3804]) -> [SKIP][604] ([i915#14544])
[603]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[604]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2: [SKIP][605] -> [SKIP][606] ([i915#13749])
[605]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_dp_link_training@non-uhbr-mst.html
[606]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-rkl: [SKIP][607] ([i915#14544]) -> [SKIP][608] ([i915#13749])
[607]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-mst.html
[608]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_draw_crc@draw-method-mmap-gtt:
- shard-dg2: [SKIP][609] -> [SKIP][610] ([i915#8812])
[609]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_draw_crc@draw-method-mmap-gtt.html
[610]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@kms_draw_crc@draw-method-mmap-gtt.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: [SKIP][611] -> [SKIP][612] ([i915#3840])
[611]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[612]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-rkl: [SKIP][613] ([i915#3840]) -> [SKIP][614] ([i915#14544])
[613]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[614]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: [SKIP][615] ([i915#3555] / [i915#3840]) -> [SKIP][616] ([i915#14544])
[615]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@kms_dsc@dsc-with-bpc-formats.html
[616]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-rkl: [SKIP][617] ([i915#14544]) -> [SKIP][618] ([i915#3555] / [i915#3840])
[617]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html
[618]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: [SKIP][619] ([i915#3840] / [i915#9053]) -> [SKIP][620] ([i915#14544])
[619]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[620]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@psr2:
- shard-dg2: [SKIP][621] ([i915#14958]) -> [SKIP][622] ([i915#658])
[621]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_feature_discovery@psr2.html
[622]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_feature_discovery@psr2.html
- shard-rkl: [SKIP][623] ([i915#14544] / [i915#658]) -> [SKIP][624] ([i915#658])
[623]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_feature_discovery@psr2.html
[624]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_feature_discovery@psr2.html
* igt@kms_fence_pin_leak:
- shard-dg2: [SKIP][625] ([i915#2575]) -> [SKIP][626] ([i915#4881])
[625]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_fence_pin_leak.html
[626]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_fence_pin_leak.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: [SKIP][627] ([i915#14544] / [i915#9934]) -> [SKIP][628] ([i915#9934]) +4 other tests skip
[627]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html
[628]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: [SKIP][629] ([i915#9934]) -> [SKIP][630] ([i915#14544] / [i915#9934]) +2 other tests skip
[629]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@kms_flip@2x-plain-flip-interruptible.html
[630]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg2: [SKIP][631] ([i915#14958]) -> [SKIP][632] ([i915#9934]) +6 other tests skip
[631]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
[632]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-rkl: [SKIP][633] ([i915#2672] / [i915#3555]) -> [SKIP][634] ([i915#14544] / [i915#3555])
[633]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
[634]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-dg2: [SKIP][635] -> [SKIP][636] ([i915#2672] / [i915#3555])
[635]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
[636]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: [SKIP][637] ([i915#14544] / [i915#3555]) -> [SKIP][638] ([i915#2672] / [i915#3555]) +2 other tests skip
[637]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[638]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2: [SKIP][639] ([i915#5190]) -> [SKIP][640] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[639]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
[640]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: [SKIP][641] -> [SKIP][642] ([i915#8708]) +8 other tests skip
[641]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
[642]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-dg2: [SKIP][643] -> [SKIP][644] ([i915#5354]) +23 other tests skip
[643]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
[644]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][645] ([i915#3458]) -> [SKIP][646] ([i915#10433] / [i915#3458]) +3 other tests skip
[645]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html
[646]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: [SKIP][647] -> [SKIP][648] ([i915#3458]) +13 other tests skip
[647]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
[648]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: [SKIP][649] ([i915#10433] / [i915#3458]) -> [SKIP][650] ([i915#3458])
[649]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
[650]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][651] ([i915#1825]) -> [SKIP][652] ([i915#14544] / [i915#1849] / [i915#5354]) +26 other tests skip
[651]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
[652]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: [SKIP][653] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][654] ([i915#1825]) +28 other tests skip
[653]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
[654]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-rkl: [SKIP][655] ([i915#9766]) -> [SKIP][656] ([i915#14544] / [i915#1849] / [i915#5354])
[655]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[656]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
- shard-dg2: [SKIP][657] -> [SKIP][658] ([i915#9766])
[657]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
[658]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt:
- shard-rkl: [SKIP][659] ([i915#3023]) -> [SKIP][660] ([i915#14544] / [i915#1849] / [i915#5354]) +18 other tests skip
[659]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
[660]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][661] ([i915#14544] / [i915#1849] / [i915#5354]) -> [SKIP][662] ([i915#3023]) +17 other tests skip
[661]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
[662]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg1: [SKIP][663] ([i915#4423]) -> [SKIP][664]
[663]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html
[664]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: [SKIP][665] ([i915#14544]) -> [SKIP][666] ([i915#3555] / [i915#8228]) +1 other test skip
[665]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_hdr@bpc-switch-dpms.html
[666]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: [SKIP][667] ([i915#1187] / [i915#12713]) -> [SKIP][668] ([i915#12713])
[667]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
[668]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg1-14/igt@kms_hdr@brightness-with-hdr.html
- shard-tglu: [SKIP][669] ([i915#12713]) -> [SKIP][670] ([i915#1187] / [i915#12713])
[669]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-tglu-8/igt@kms_hdr@brightness-with-hdr.html
[670]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle-dpms:
- shard-rkl: [SKIP][671] ([i915#3555] / [i915#8228]) -> [SKIP][672] ([i915#14544])
[671]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-4/igt@kms_hdr@static-toggle-dpms.html
[672]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_invalid_mode@bad-hsync-start:
- shard-rkl: [SKIP][673] ([i915#14544] / [i915#3555] / [i915#8826]) -> [DMESG-WARN][674] ([i915#12964])
[673]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_invalid_mode@bad-hsync-start.html
[674]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_invalid_mode@bad-hsync-start.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: [SKIP][675] ([i915#12394]) -> [SKIP][676] ([i915#12394] / [i915#14544])
[675]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[676]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-rkl: [SKIP][677] ([i915#12339] / [i915#14544]) -> [SKIP][678] ([i915#12339])
[677]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html
[678]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: [SKIP][679] ([i915#6301]) -> [SKIP][680] ([i915#14544])
[679]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-4/igt@kms_panel_fitting@legacy.html
[680]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_panel_fitting@legacy.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: [SKIP][681] ([i915#14958]) -> [SKIP][682] ([i915#8821])
[681]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_plane_lowres@tiling-y.html
[682]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: [SKIP][683] ([i915#14958]) -> [SKIP][684] ([i915#3555] / [i915#8821])
[683]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_plane_lowres@tiling-yf.html
[684]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: [SKIP][685] ([i915#14544]) -> [SKIP][686] ([i915#13958])
[685]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html
[686]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-rkl: [SKIP][687] ([i915#12247] / [i915#14544] / [i915#8152]) -> [SKIP][688] ([i915#12247]) +3 other tests skip
[687]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
[688]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a:
- shard-rkl: [SKIP][689] ([i915#12247] / [i915#14544]) -> [SKIP][690] ([i915#12247]) +1 other test skip
[689]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
[690]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: [SKIP][691] ([i915#14544] / [i915#5354]) -> [SKIP][692] ([i915#5354])
[691]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html
[692]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-rkl: [SKIP][693] ([i915#14544] / [i915#9685]) -> [SKIP][694] ([i915#9685])
[693]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html
[694]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: [FAIL][695] ([i915#9295]) -> [SKIP][696] ([i915#3361])
[695]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html
[696]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-8/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][697] ([i915#3828]) -> [SKIP][698] ([i915#9340])
[697]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html
[698]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [SKIP][699] ([i915#14544] / [i915#9519]) -> [SKIP][700] ([i915#9519])
[699]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[700]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][701] ([i915#14960]) -> [SKIP][702] ([i915#9519])
[701]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp.html
[702]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-pc8-residency-stress:
- shard-dg2: [SKIP][703] ([i915#14960]) -> [SKIP][704]
[703]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_pm_rpm@modeset-pc8-residency-stress.html
[704]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@kms_pm_rpm@modeset-pc8-residency-stress.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: [SKIP][705] ([i915#15026]) -> [SKIP][706] ([i915#6524] / [i915#6805])
[705]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_prime@basic-crc-vgem.html
[706]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-dg2: [SKIP][707] -> [SKIP][708] ([i915#11520]) +5 other tests skip
[707]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
[708]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
- shard-rkl: [SKIP][709] ([i915#11520]) -> [SKIP][710] ([i915#11520] / [i915#14544]) +5 other tests skip
[709]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
[710]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-rkl: [SKIP][711] ([i915#11520] / [i915#14544]) -> [SKIP][712] ([i915#11520]) +5 other tests skip
[711]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
[712]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: [SKIP][713] -> [SKIP][714] ([i915#9683]) +1 other test skip
[713]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_psr2_su@page_flip-p010.html
[714]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@kms_psr2_su@page_flip-p010.html
- shard-rkl: [SKIP][715] ([i915#9683]) -> [SKIP][716] ([i915#14544] / [i915#9683])
[715]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@kms_psr2_su@page_flip-p010.html
[716]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr2-sprite-blt:
- shard-rkl: [SKIP][717] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][718] ([i915#1072] / [i915#9732]) +14 other tests skip
[717]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-blt.html
[718]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_psr@fbc-psr2-sprite-blt.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: [SKIP][719] ([i915#1072] / [i915#9732]) -> [SKIP][720] ([i915#1072] / [i915#14544] / [i915#9732]) +14 other tests skip
[719]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@kms_psr@fbc-psr2-sprite-render.html
[720]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr2-primary-mmap-gtt:
- shard-dg2: [SKIP][721] -> [SKIP][722] ([i915#1072] / [i915#9732]) +12 other tests skip
[721]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_psr@psr2-primary-mmap-gtt.html
[722]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@kms_psr@psr2-primary-mmap-gtt.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: [SKIP][723] ([i915#14958]) -> [SKIP][724] ([i915#12755])
[723]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-270.html
[724]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: [SKIP][725] ([i915#14544]) -> [SKIP][726] ([i915#5289])
[725]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[726]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: [SKIP][727] ([i915#8623]) -> [SKIP][728] ([i915#14544])
[727]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[728]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: [SKIP][729] ([i915#14958]) -> [SKIP][730] ([i915#2437]) +1 other test skip
[729]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_writeback@writeback-check-output.html
[730]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@kms_writeback@writeback-check-output.html
- shard-rkl: [SKIP][731] ([i915#14544] / [i915#2437]) -> [SKIP][732] ([i915#2437])
[731]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@kms_writeback@writeback-check-output.html
[732]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-rkl: [SKIP][733] ([i915#2437] / [i915#9412]) -> [SKIP][734] ([i915#14544] / [i915#2437] / [i915#9412]) +1 other test skip
[733]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@kms_writeback@writeback-check-output-xrgb2101010.html
[734]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-rkl: [SKIP][735] ([i915#2437]) -> [SKIP][736] ([i915#14544] / [i915#2437])
[735]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-7/igt@kms_writeback@writeback-fb-id.html
[736]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2: [SKIP][737] ([i915#14958]) -> [SKIP][738] ([i915#2437] / [i915#9412])
[737]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
[738]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-6/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: [SKIP][739] ([i915#2436]) -> [SKIP][740] ([i915#14544] / [i915#2436])
[739]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html
[740]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf_pmu@module-unload:
- shard-dg2: [SKIP][741] ([i915#14959]) -> [FAIL][742] ([i915#14433])
[741]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@perf_pmu@module-unload.html
[742]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-11/igt@perf_pmu@module-unload.html
* igt@prime_vgem@fence-flip-hang:
- shard-dg2: [SKIP][743] ([i915#2575]) -> [SKIP][744] ([i915#3708])
[743]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@prime_vgem@fence-flip-hang.html
[744]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@prime_vgem@fence-flip-hang.html
- shard-rkl: [SKIP][745] ([i915#14544] / [i915#3708]) -> [SKIP][746] ([i915#3708])
[745]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html
[746]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: [SKIP][747] ([i915#3708]) -> [SKIP][748] ([i915#14544] / [i915#3708])
[747]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-5/igt@prime_vgem@fence-read-hang.html
[748]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-6/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg2: [SKIP][749] ([i915#14958]) -> [SKIP][750] ([i915#9917])
[749]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-dg2-11/igt@sriov_basic@enable-vfs-bind-unbind-each.html
[750]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-dg2-8/igt@sriov_basic@enable-vfs-bind-unbind-each.html
- shard-rkl: [SKIP][751] ([i915#14544] / [i915#9917]) -> [SKIP][752] ([i915#9917])
[751]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17263/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html
[752]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/shard-rkl-7/igt@sriov_basic@enable-vfs-bind-unbind-each.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11190
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11521]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11521
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398
[i915#13427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427
[i915#13441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13441
[i915#13447]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13447
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14553
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[i915#14809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14809
[i915#14871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14871
[i915#14957]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14957
[i915#14958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14958
[i915#14959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14959
[i915#14960]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14960
[i915#14962]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14962
[i915#14964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14964
[i915#15024]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15024
[i915#15026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15026
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#1849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1849
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
[i915#2582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4881]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4881
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7294]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7294
[i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#8152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8152
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825
[i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9292
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9581]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9581
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* Linux: CI_DRM_17263 -> Patchwork_154742v2
CI-20190529: 20190529
CI_DRM_17263: af3cdefd0a1ad2dad29fcde0854ccbce494cc28a @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_8550: 4f8c7886ad02e116804ec08714f17bce1755c6e4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_154742v2: af3cdefd0a1ad2dad29fcde0854ccbce494cc28a @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_154742v2/index.html
[-- Attachment #2: Type: text/html, Size: 236250 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl
2025-09-18 21:45 [PATCH] drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl Jonathan Cavitt
` (5 preceding siblings ...)
2025-09-24 14:36 ` ✗ i915.CI.Full: failure " Patchwork
@ 2025-09-25 22:24 ` Andi Shyti
6 siblings, 0 replies; 8+ messages in thread
From: Andi Shyti @ 2025-09-25 22:24 UTC (permalink / raw)
To: Jonathan Cavitt; +Cc: intel-gfx, saurabhg.gupta, alex.zuo, andi.shyti
Hi Jonathan,
On Thu, Sep 18, 2025 at 09:45:16PM +0000, Jonathan Cavitt wrote:
> We do not need a case switch to check cap_type_id in intel_vgpu_ioctl
> for various reasons (it's impossible to hit the default case in the
> current code, there's only one valid case to check, the error handling
> code overlaps in both cases, etc.). Simplify the case switch into a
> single if statement. This has the additional effect of simplifying the
> error handling code.
>
> Note that it is still currently impossible for
> 'if (cap_type_id == VFIO_REGION_INFO_CAP_SPARSE_MMAP)'
> to fail, but we should still guard against the possibility of this
> changing in the future.
>
> Signed-off-by: Jonathan Cavitt <jonathan.cavitt@intel.com>
> Cc: Andi Shyti <andi.shyti@linux.intel.com>
pushed to drm-intel-next.
Thanks,
Andi
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2025-09-25 22:24 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-18 21:45 [PATCH] drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl Jonathan Cavitt
2025-09-19 0:43 ` ✓ i915.CI.BAT: success for " Patchwork
2025-09-19 10:22 ` [PATCH] " Andi Shyti
2025-09-19 22:10 ` ✗ i915.CI.Full: failure for " Patchwork
2025-09-22 2:50 ` [PATCH] " Zhenyu Wang
2025-09-23 23:44 ` ✓ i915.CI.BAT: success for drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl (rev2) Patchwork
2025-09-24 14:36 ` ✗ i915.CI.Full: failure " Patchwork
2025-09-25 22:24 ` [PATCH] drm/i915/gvt: Simplify case switch in intel_vgpu_ioctl Andi Shyti
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.