* [PATCH i-g-t] lib/amdgpu: fix sdma linear copy command
@ 2024-09-26 7:35 Jesse.zhang@amd.com
2024-09-26 11:23 ` ✓ Fi.CI.BAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Jesse.zhang@amd.com @ 2024-09-26 7:35 UTC (permalink / raw)
To: igt-dev
Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig,
Jesse.zhang@amd.com, Jesse Zhang
Fix page fault when using sdma linear copy:
[ 4606.313448] amdgpu 0000:1a:00.0: amdgpu: [mmhub0] no-retry page fault (src_id:0 ring:24 vmid:1 pasid:32772)
[ 4606.313463] amdgpu 0000:1a:00.0: amdgpu: for process amd_deadlock pid 4440 thread amd_deadlock pid 4440)
[ 4606.313475] amdgpu 0000:1a:00.0: amdgpu: in page starting at address 0x0000000000001000 from IH client 0x12 (VMC)
[ 4606.313490] amdgpu 0000:1a:00.0: amdgpu: VM_L2_PROTECTION_FAULT_STATUS:0x00120231
[ 4606.313501] amdgpu 0000:1a:00.0: amdgpu: Faulty UTCL2 client ID: SDMA1 (0x101)
[ 4606.313511] amdgpu 0000:1a:00.0: amdgpu: MORE_FAULTS: 0x1
[ 4606.313519] amdgpu 0000:1a:00.0: amdgpu: WALKER_ERROR: 0x0
[ 4606.313527] amdgpu 0000:1a:00.0: amdgpu: PERMISSION_FAULTS: 0x3
[ 4606.313535] amdgpu 0000:1a:00.0: amdgpu: MAPPING_ERROR: 0x0
[ 4606.313543] amdgpu 0000:1a:00.0: amdgpu: RW: 0x0
For old AI asics, the sdma copy count is shorter than newer ones.
So add count check in case the max range is exceeded.
Cc: Vitaly Prosyak <vitaly.prosyak@amd.com>
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: Christian Koenig <christian.koenig@amd.com>
Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
---
lib/amdgpu/amd_ip_blocks.c | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/lib/amdgpu/amd_ip_blocks.c b/lib/amdgpu/amd_ip_blocks.c
index 3f8f28483..f22a322e5 100644
--- a/lib/amdgpu/amd_ip_blocks.c
+++ b/lib/amdgpu/amd_ip_blocks.c
@@ -189,10 +189,17 @@ sdma_ring_copy_linear(const struct amdgpu_ip_funcs *func,
context->pm4[i++] = SDMA_PACKET(SDMA_OPCODE_COPY,
SDMA_COPY_SUB_OPCODE_LINEAR,
context->secure ? 0x4 : 0);
- if (func->family_id >= AMDGPU_FAMILY_AI)
- context->pm4[i++] = context->write_length - 1;
- else
+ if (func->family_id >= AMDGPU_FAMILY_AI) {
+ /* For FAMILY AI, the maximum copy range supported by sdma is 4MB */
+ if (func->family_id >= AMDGPU_FAMILY_AI && context->write_length > 0x3fffff) {
+ context->pm4[i++] = 0x3fffff;
+ igt_warn("sdma copy count exceeds the maximum limit of 4MB\n");
+ } else {
+ context->pm4[i++] = context->write_length - 1;
+ }
+ } else {
context->pm4[i++] = context->write_length;
+ }
context->pm4[i++] = 0;
context->pm4[i++] = lower_32_bits(context->bo_mc);
context->pm4[i++] = upper_32_bits(context->bo_mc);
--
2.25.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✓ Fi.CI.BAT: success for lib/amdgpu: fix sdma linear copy command
2024-09-26 7:35 [PATCH i-g-t] lib/amdgpu: fix sdma linear copy command Jesse.zhang@amd.com
@ 2024-09-26 11:23 ` Patchwork
2024-09-26 11:42 ` ✗ CI.xeBAT: failure " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-09-26 11:23 UTC (permalink / raw)
To: Jesse.zhang@amd.com; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 13625 bytes --]
== Series Details ==
Series: lib/amdgpu: fix sdma linear copy command
URL : https://patchwork.freedesktop.org/series/139135/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_15446 -> IGTPW_11809
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with IGTPW_11809 need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11809, 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.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/index.html
Participating hosts (38 -> 36)
------------------------------
Additional (1): bat-dg1-7
Missing (3): bat-rpls-4 fi-snb-2520m fi-kbl-8809g
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11809:
### IGT changes ###
#### Warnings ####
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- bat-twl-2: [SKIP][1] ([i915#11731]) -> [SKIP][2] +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-twl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-twl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-twl-1: [SKIP][3] ([i915#11731]) -> [SKIP][4] +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-twl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-twl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
Known issues
------------
Here are the changes found in IGTPW_11809 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_mmap@basic:
- bat-dg1-7: NOTRUN -> [SKIP][5] ([i915#4083])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-dg1-7/igt@gem_mmap@basic.html
* igt@gem_tiled_fence_blits@basic:
- bat-dg1-7: NOTRUN -> [SKIP][6] ([i915#4077]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-dg1-7/igt@gem_tiled_fence_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-dg1-7: NOTRUN -> [SKIP][7] ([i915#4079]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-dg1-7/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg1-7: NOTRUN -> [SKIP][8] ([i915#6621])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-dg1-7/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live:
- bat-arls-2: [PASS][9] -> [DMESG-WARN][10] ([i915#10341] / [i915#12133])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-arls-2/igt@i915_selftest@live.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-arls-2/igt@i915_selftest@live.html
- bat-mtlp-6: [PASS][11] -> [DMESG-WARN][12] ([i915#10341])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-mtlp-6/igt@i915_selftest@live.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-mtlp-6/igt@i915_selftest@live.html
* igt@i915_selftest@live@hangcheck:
- bat-arls-2: [PASS][13] -> [DMESG-WARN][14] ([i915#11349])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-arls-2/igt@i915_selftest@live@hangcheck.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-arls-2/igt@i915_selftest@live@hangcheck.html
- bat-mtlp-6: [PASS][15] -> [DMESG-WARN][16] ([i915#11349])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-mtlp-6/igt@i915_selftest@live@hangcheck.html
* igt@i915_selftest@live@sanitycheck:
- bat-apl-1: [PASS][17] -> [DMESG-WARN][18] ([i915#11621]) +46 other tests dmesg-warn
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@i915_selftest@live@sanitycheck.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-apl-1/igt@i915_selftest@live@sanitycheck.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- bat-dg1-7: NOTRUN -> [SKIP][19] ([i915#4212]) +7 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-dg1-7/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg1-7: NOTRUN -> [SKIP][20] ([i915#4215])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-dg1-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_busy@basic@flip:
- bat-apl-1: [PASS][21] -> [DMESG-WARN][22] ([i915#180] / [i915#1982]) +4 other tests dmesg-warn
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@kms_busy@basic@flip.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-apl-1/igt@kms_busy@basic@flip.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg1-7: NOTRUN -> [SKIP][23] ([i915#4103] / [i915#4213]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-dg1-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-dg1-7: NOTRUN -> [SKIP][24] ([i915#3555] / [i915#3840])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-dg1-7/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-modeset@b-dp1:
- bat-apl-1: [PASS][25] -> [DMESG-WARN][26] ([i915#11621] / [i915#180]) +32 other tests dmesg-warn
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@kms_flip@basic-flip-vs-modeset@b-dp1.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-apl-1/igt@kms_flip@basic-flip-vs-modeset@b-dp1.html
* igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1:
- bat-apl-1: [PASS][27] -> [DMESG-WARN][28] ([i915#11621] / [i915#180] / [i915#1982])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-apl-1/igt@kms_flip@basic-flip-vs-wf_vblank@a-dp1.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg1-7: NOTRUN -> [SKIP][29]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-dg1-7/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_hdmi_inject@inject-audio:
- bat-dg1-7: NOTRUN -> [SKIP][30] ([i915#433])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-dg1-7/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence:
- bat-apl-1: [PASS][31] -> [DMESG-WARN][32] ([i915#180]) +9 other tests dmesg-warn
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-apl-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html
* igt@kms_pm_backlight@basic-brightness:
- bat-dg1-7: NOTRUN -> [SKIP][33] ([i915#5354])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-dg1-7/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-page-flip:
- bat-dg1-7: NOTRUN -> [SKIP][34] ([i915#1072] / [i915#9732]) +3 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-dg1-7/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg1-7: NOTRUN -> [SKIP][35] ([i915#3555])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-dg1-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg1-7: NOTRUN -> [SKIP][36] ([i915#3708]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-dg1-7/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg1-7: NOTRUN -> [SKIP][37] ([i915#3708] / [i915#4077]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-dg1-7/igt@prime_vgem@basic-fence-mmap.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-mtlp-8: [ABORT][38] ([i915#12216]) -> [PASS][39] +1 other test pass
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-mtlp-8/igt@i915_selftest@live.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-mtlp-8/igt@i915_selftest@live.html
- bat-twl-1: [INCOMPLETE][40] ([i915#9413]) -> [PASS][41]
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-twl-1/igt@i915_selftest@live.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-twl-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_lrc:
- bat-twl-1: [INCOMPLETE][42] ([i915#10886] / [i915#9413]) -> [PASS][43]
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-twl-1/igt@i915_selftest@live@gt_lrc.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-twl-1/igt@i915_selftest@live@gt_lrc.html
#### Warnings ####
* igt@gem_mmap@basic:
- bat-arls-2: [SKIP][44] ([i915#4083]) -> [SKIP][45] ([i915#11343] / [i915#4083])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-arls-2/igt@gem_mmap@basic.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-arls-2/igt@gem_mmap@basic.html
- bat-arls-1: [SKIP][46] ([i915#4083]) -> [SKIP][47] ([i915#11343] / [i915#4083])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-arls-1/igt@gem_mmap@basic.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-arls-1/igt@gem_mmap@basic.html
- bat-arls-5: [SKIP][48] ([i915#4083]) -> [SKIP][49] ([i915#11343] / [i915#4083])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-arls-5/igt@gem_mmap@basic.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-arls-5/igt@gem_mmap@basic.html
* igt@i915_module_load@reload:
- bat-arls-5: [DMESG-WARN][50] ([i915#11637]) -> [DMESG-WARN][51] ([i915#11637] / [i915#1982])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-arls-5/igt@i915_module_load@reload.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-arls-5/igt@i915_module_load@reload.html
* igt@i915_pm_rpm@module-reload:
- bat-apl-1: [DMESG-WARN][52] ([i915#11621]) -> [DMESG-WARN][53] ([i915#11621] / [i915#180])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/bat-apl-1/igt@i915_pm_rpm@module-reload.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/bat-apl-1/igt@i915_pm_rpm@module-reload.html
[i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10886
[i915#11343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11343
[i915#11349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11349
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#11637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11637
[i915#11731]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11731
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[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#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8032 -> IGTPW_11809
CI-20190529: 20190529
CI_DRM_15446: 6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11809: 04e21d897aac85fdbb696e47c7abaa9e17eca79a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8032: 8032
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/index.html
[-- Attachment #2: Type: text/html, Size: 16909 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ CI.xeBAT: failure for lib/amdgpu: fix sdma linear copy command
2024-09-26 7:35 [PATCH i-g-t] lib/amdgpu: fix sdma linear copy command Jesse.zhang@amd.com
2024-09-26 11:23 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2024-09-26 11:42 ` Patchwork
2024-09-26 14:26 ` ✗ Fi.CI.IGT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-09-26 11:42 UTC (permalink / raw)
To: Jesse.zhang@amd.com; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4927 bytes --]
== Series Details ==
Series: lib/amdgpu: fix sdma linear copy command
URL : https://patchwork.freedesktop.org/series/139135/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8032_BAT -> XEIGTPW_11809_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11809_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11809_BAT, 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 (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11809_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-bmg-1: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
#### Warnings ####
* igt@xe_pat@pat-index-xelpg:
- bat-bmg-1: [SKIP][3] ([Intel XE#2236]) -> [SKIP][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-bmg-1/igt@xe_pat@pat-index-xelpg.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/bat-bmg-1/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm_residency@gt-c6-on-idle:
- bat-adlp-vf: [SKIP][5] ([Intel XE#2468]) -> [SKIP][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-adlp-vf/igt@xe_pm_residency@gt-c6-on-idle.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/bat-adlp-vf/igt@xe_pm_residency@gt-c6-on-idle.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@xe_pat@pat-index-xelpg:
- {bat-bmg-2}: [SKIP][7] ([Intel XE#2236]) -> [SKIP][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html
Known issues
------------
Here are the changes found in XEIGTPW_11809_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_psr@psr-primary-page-flip@edp-1:
- bat-lnl-1: [PASS][9] -> [FAIL][10] ([Intel XE#1649]) +5 other tests fail
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-lnl-1/igt@kms_psr@psr-primary-page-flip@edp-1.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/bat-lnl-1/igt@kms_psr@psr-primary-page-flip@edp-1.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-adlp-7: [PASS][11] -> [INCOMPLETE][12] ([Intel XE#2874]) +1 other test incomplete
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@basic:
- bat-lnl-2: [SKIP][13] ([Intel XE#2235]) -> [SKIP][14] ([Intel XE#2235] / [Intel XE#2548])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/bat-lnl-2/igt@kms_frontbuffer_tracking@basic.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/bat-lnl-2/igt@kms_frontbuffer_tracking@basic.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
[Intel XE#2235]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2235
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2468
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874
Build changes
-------------
* IGT: IGT_8032 -> IGTPW_11809
* Linux: xe-1975-abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47 -> xe-1978-6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da
IGTPW_11809: 04e21d897aac85fdbb696e47c7abaa9e17eca79a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8032: 8032
xe-1975-abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47: abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47
xe-1978-6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da: 6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/index.html
[-- Attachment #2: Type: text/html, Size: 5826 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Fi.CI.IGT: failure for lib/amdgpu: fix sdma linear copy command
2024-09-26 7:35 [PATCH i-g-t] lib/amdgpu: fix sdma linear copy command Jesse.zhang@amd.com
2024-09-26 11:23 ` ✓ Fi.CI.BAT: success for " Patchwork
2024-09-26 11:42 ` ✗ CI.xeBAT: failure " Patchwork
@ 2024-09-26 14:26 ` Patchwork
2024-09-26 21:59 ` [PATCH i-g-t] " vitaly prosyak
2024-09-27 5:09 ` ✗ CI.xeFULL: failure for " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-09-26 14:26 UTC (permalink / raw)
To: Jesse.zhang@amd.com; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100260 bytes --]
== Series Details ==
Series: lib/amdgpu: fix sdma linear copy command
URL : https://patchwork.freedesktop.org/series/139135/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15446_full -> IGTPW_11809_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11809_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11809_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.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/index.html
Participating hosts (8 -> 8)
------------------------------
Additional (1): shard-glk-0
Missing (1): shard-glk
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11809_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_busy@close-race:
- shard-tglu: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-2/igt@gem_busy@close-race.html
* igt@gem_eio@suspend:
- shard-dg2: [PASS][2] -> [DMESG-FAIL][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-11/igt@gem_eio@suspend.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@gem_eio@suspend.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][4] +17 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-6/igt@i915_pm_rps@thresholds-park.html
* igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing:
- shard-tglu: [PASS][5] -> [SKIP][6] +47 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_atomic_transition@plane-all-transition-nonblocking-fencing.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1:
- shard-snb: NOTRUN -> [FAIL][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-snb5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-vga-1.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][8] +10 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][9] +24 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-16/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][10] +32 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@perf@polling:
- shard-dg1: [PASS][11] -> [FAIL][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-13/igt@perf@polling.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-18/igt@perf@polling.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-rkl: NOTRUN -> [SKIP][13] +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-3/igt@sriov_basic@enable-vfs-autoprobe-on.html
#### Warnings ####
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu: [SKIP][14] ([i915#1769] / [i915#3555]) -> [SKIP][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-tglu: [SKIP][16] ([i915#5286]) -> [SKIP][17] +4 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-tglu: [SKIP][18] ([i915#12042]) -> [SKIP][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: [SKIP][20] ([i915#6095]) -> [SKIP][21] +9 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu: [SKIP][22] ([i915#6944] / [i915#9424]) -> [SKIP][23]
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_content_protection@lic-type-0.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-tglu: [SKIP][24] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) -> [SKIP][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_content_protection@uevent.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: [SKIP][26] ([i915#11453]) -> [SKIP][27] +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-9/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-tglu: [SKIP][28] ([i915#3555]) -> [SKIP][29] +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-5/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu: [SKIP][30] ([i915#4103]) -> [SKIP][31]
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dsc@dsc-basic:
- shard-tglu: [SKIP][32] ([i915#3555] / [i915#3840]) -> [SKIP][33]
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-2/igt@kms_dsc@dsc-basic.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-tglu: [SKIP][34] ([i915#3840] / [i915#9053]) -> [SKIP][35]
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt:
- shard-dg2: [SKIP][36] ([i915#5354]) -> [SKIP][37] +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-farfromfence-mmap-gtt.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-tglu: [SKIP][38] ([i915#3555] / [i915#8228]) -> [SKIP][39]
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-10/igt@kms_hdr@invalid-metadata-sizes.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu: [SKIP][40] ([i915#8623]) -> [SKIP][41]
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-6/igt@kms_tiled_display@basic-test-pattern.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_tiled_display@basic-test-pattern.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
- {shard-tglu-1}: NOTRUN -> [SKIP][42] +64 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-1/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html
New tests
---------
New tests have been introduced between CI_DRM_15446_full and IGTPW_11809_full:
### New IGT tests (4) ###
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [4.78] s
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [4.70] s
* igt@kms_color@ctm-max@pipe-a-dp-3:
- Statuses : 1 pass(s)
- Exec time: [0.65] s
* igt@kms_color@ctm-max@pipe-b-dp-3:
- Statuses : 1 pass(s)
- Exec time: [0.55] s
Known issues
------------
Here are the changes found in IGTPW_11809_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#8411])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-12/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-dg2: NOTRUN -> [SKIP][44] ([i915#8411])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-6/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#8411])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-2/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@drm_fdinfo@most-busy-idle-check-all:
- shard-rkl: [PASS][46] -> [FAIL][47] ([i915#12179])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-5/igt@drm_fdinfo@most-busy-idle-check-all.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-3/igt@drm_fdinfo@most-busy-idle-check-all.html
* igt@drm_fdinfo@most-busy-idle-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][48] ([i915#8414]) +6 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-18/igt@drm_fdinfo@most-busy-idle-check-all@bcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [PASS][49] -> [FAIL][50] ([i915#7742])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-5/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-3/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][51] ([i915#8414]) +7 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-11/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@drm_fdinfo@virtual-busy-idle:
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#8414]) +14 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-5/igt@drm_fdinfo@virtual-busy-idle.html
* igt@drm_fdinfo@virtual-idle:
- shard-rkl: [PASS][53] -> [FAIL][54] ([i915#11900] / [i915#7742])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-2/igt@drm_fdinfo@virtual-idle.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#9323])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-14/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-tglu: NOTRUN -> [SKIP][56] ([i915#9323])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0:
- shard-dg2: [PASS][57] -> [INCOMPLETE][58] ([i915#7297])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-4/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-1/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-smem-lmem0.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-tglu: NOTRUN -> [SKIP][59] ([i915#6335])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-3/igt@gem_create@create-ext-cpu-access-big.html
- shard-mtlp: NOTRUN -> [SKIP][60] ([i915#6335])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-big.html
- shard-dg2: NOTRUN -> [ABORT][61] ([i915#9846])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#6335])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-3/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_ctx_engines@invalid-engines:
- shard-rkl: [PASS][63] -> [FAIL][64] ([i915#12027])
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-4/igt@gem_ctx_engines@invalid-engines.html
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-7/igt@gem_ctx_engines@invalid-engines.html
- shard-tglu: NOTRUN -> [FAIL][65] ([i915#12027])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#8555])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@hostile:
- shard-dg2: NOTRUN -> [FAIL][67] ([i915#11980])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-10/igt@gem_ctx_persistence@hostile.html
- shard-rkl: NOTRUN -> [FAIL][68] ([i915#11980])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-5/igt@gem_ctx_persistence@hostile.html
- shard-snb: NOTRUN -> [SKIP][69] ([i915#1099])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-snb1/igt@gem_ctx_persistence@hostile.html
- shard-tglu: NOTRUN -> [FAIL][70] ([i915#11980])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-10/igt@gem_ctx_persistence@hostile.html
- shard-mtlp: NOTRUN -> [FAIL][71] ([i915#11980])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-1/igt@gem_ctx_persistence@hostile.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu: NOTRUN -> [SKIP][72] ([i915#280])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@gem_ctx_sseu@invalid-sseu.html
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#280])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-4/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@kms:
- shard-dg2: NOTRUN -> [FAIL][74] ([i915#5784])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-5/igt@gem_eio@kms.html
* igt@gem_exec_balancer@bonded-semaphore:
- shard-dg1: NOTRUN -> [SKIP][75] ([i915#4812]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-18/igt@gem_exec_balancer@bonded-semaphore.html
* igt@gem_exec_balancer@parallel:
- shard-rkl: NOTRUN -> [SKIP][76] ([i915#4525])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-7/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_big@single:
- shard-tglu: NOTRUN -> [ABORT][77] ([i915#11713])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-3/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#6334]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-5/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_fair@basic-deadline:
- shard-dg1: NOTRUN -> [SKIP][79] ([i915#3539] / [i915#4852]) +4 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-12/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#3539] / [i915#4852]) +4 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-10/igt@gem_exec_fair@basic-none-rrul.html
- shard-tglu: NOTRUN -> [FAIL][81] ([i915#2842]) +3 other tests fail
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-10/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none-solo:
- shard-rkl: NOTRUN -> [FAIL][82] ([i915#2842]) +1 other test fail
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-1/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#3539]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-7/igt@gem_exec_fair@basic-pace-solo.html
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4473])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-5/igt@gem_exec_fair@basic-pace-solo.html
* igt@gem_exec_fair@basic-pace@vcs0:
- shard-rkl: [PASS][85] -> [FAIL][86] ([i915#2842])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-rkl-3/igt@gem_exec_fair@basic-pace@vcs0.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-1/igt@gem_exec_fair@basic-pace@vcs0.html
* igt@gem_exec_fair@basic-sync:
- shard-mtlp: NOTRUN -> [SKIP][87] ([i915#4473] / [i915#4771]) +4 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-2/igt@gem_exec_fair@basic-sync.html
* igt@gem_exec_fair@basic-throttle:
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#3539]) +1 other test skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-15/igt@gem_exec_fair@basic-throttle.html
* igt@gem_exec_fence@submit67:
- shard-dg2: NOTRUN -> [SKIP][89] ([i915#4812])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-5/igt@gem_exec_fence@submit67.html
* igt@gem_exec_reloc@basic-active:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#3281]) +7 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-5/igt@gem_exec_reloc@basic-active.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][91] ([i915#3281]) +6 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-4/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-dg1: NOTRUN -> [SKIP][92] ([i915#3281]) +7 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-18/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#3281]) +9 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_exec_schedule@preempt-queue-contexts-chain:
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#4537] / [i915#4812])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-1/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
- shard-dg2: NOTRUN -> [SKIP][95] ([i915#4537] / [i915#4812]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-3/igt@gem_exec_schedule@preempt-queue-contexts-chain.html
* igt@gem_fence_thrash@bo-write-verify-threaded-none:
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#4860])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-13/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#4860]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-8/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#4860])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-5/igt@gem_fence_thrash@bo-write-verify-threaded-none.html
* igt@gem_lmem_swapping@parallel-multi@lmem0:
- shard-dg2: [PASS][99] -> [INCOMPLETE][100] ([i915#1982]) +1 other test incomplete
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-6/igt@gem_lmem_swapping@parallel-multi@lmem0.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-4/igt@gem_lmem_swapping@parallel-multi@lmem0.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#4613]) +2 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-3/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@smem-oom:
- shard-tglu: NOTRUN -> [SKIP][102] ([i915#4613]) +5 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-4/igt@gem_lmem_swapping@smem-oom.html
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#4613]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-4/igt@gem_lmem_swapping@smem-oom.html
* igt@gem_mmap@big-bo:
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#4083]) +2 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-2/igt@gem_mmap@big-bo.html
* igt@gem_mmap_gtt@basic-small-copy-odd:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#4077]) +4 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-16/igt@gem_mmap_gtt@basic-small-copy-odd.html
* igt@gem_mmap_offset@clear:
- shard-mtlp: [PASS][106] -> [ABORT][107] ([i915#10729])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-8/igt@gem_mmap_offset@clear.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-6/igt@gem_mmap_offset@clear.html
* igt@gem_mmap_offset@clear@smem0:
- shard-mtlp: [PASS][108] -> [ABORT][109] ([i915#10029] / [i915#10729])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-8/igt@gem_mmap_offset@clear@smem0.html
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-6/igt@gem_mmap_offset@clear@smem0.html
* igt@gem_mmap_wc@bad-size:
- shard-dg2: NOTRUN -> [SKIP][110] ([i915#4083]) +4 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-5/igt@gem_mmap_wc@bad-size.html
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#4083]) +2 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-13/igt@gem_mmap_wc@bad-size.html
* igt@gem_partial_pwrite_pread@reads-snoop:
- shard-dg1: NOTRUN -> [SKIP][112] ([i915#3282]) +5 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-18/igt@gem_partial_pwrite_pread@reads-snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#3282]) +3 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-2/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pwrite@basic-random:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#3282]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@create-regular-context-1:
- shard-mtlp: NOTRUN -> [SKIP][115] ([i915#4270]) +3 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-2/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@display-protected-crc:
- shard-tglu: NOTRUN -> [SKIP][116] ([i915#4270]) +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-3/igt@gem_pxp@display-protected-crc.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4270]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-6/igt@gem_pxp@regular-baseline-src-copy-readible.html
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#4270])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-1/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#4270]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-15/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#3282]) +5 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-8/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][121] ([i915#8428]) +4 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-1/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#5190] / [i915#8428]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-3/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#4079]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-18/igt@gem_render_tiled_blits@basic.html
* igt@gem_softpin@evict-snoop:
- shard-dg1: NOTRUN -> [SKIP][124] ([i915#4885])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-14/igt@gem_softpin@evict-snoop.html
- shard-mtlp: NOTRUN -> [SKIP][125] ([i915#4885])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-4/igt@gem_softpin@evict-snoop.html
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#4885])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-6/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#4077]) +4 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_tiled_pread_basic:
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#4079]) +2 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-6/igt@gem_tiled_pread_basic.html
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#4079])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-11/igt@gem_tiled_pread_basic.html
* igt@gem_tiling_max_stride:
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#4077]) +4 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-2/igt@gem_tiling_max_stride.html
* igt@gem_userptr_blits@coherency-unsync:
- shard-tglu: NOTRUN -> [SKIP][131] ([i915#3297])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@gem_userptr_blits@coherency-unsync.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#3297]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-6/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#3297]) +2 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-6/igt@gem_userptr_blits@unsync-overlap.html
- shard-dg1: NOTRUN -> [SKIP][134] ([i915#3297])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-19/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-snb: NOTRUN -> [SKIP][135] +110 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-snb1/igt@gen9_exec_parse@basic-rejected-ctx-param.html
- shard-mtlp: NOTRUN -> [SKIP][136] ([i915#2856])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-6/igt@gen9_exec_parse@basic-rejected-ctx-param.html
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#2527])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-19/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@batch-without-end:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#2527]) +2 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-1/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-oversize:
- shard-tglu: NOTRUN -> [SKIP][139] ([i915#2527] / [i915#2856]) +3 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-4/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@valid-registers:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#2856]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-6/igt@gen9_exec_parse@valid-registers.html
* igt@i915_module_load@load:
- shard-snb: NOTRUN -> [SKIP][141] ([i915#6227])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-snb5/igt@i915_module_load@load.html
- shard-dg1: NOTRUN -> [SKIP][142] ([i915#6227])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-13/igt@i915_module_load@load.html
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6227])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-8/igt@i915_module_load@load.html
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#6227])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-5/igt@i915_module_load@load.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [PASS][145] -> [ABORT][146] ([i915#9820])
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-19/igt@i915_module_load@reload-with-fault-injection.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: [PASS][147] -> [ABORT][148] ([i915#9820])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#8399])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-9/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#6590]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-2/igt@i915_pm_freq_mult@media-freq@gt0.html
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#6590]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_freq_mult@media-freq@gt1:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#6590]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-2/igt@i915_pm_freq_mult@media-freq@gt1.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#5723])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-7/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@mock:
- shard-snb: NOTRUN -> [DMESG-WARN][154] ([i915#9311]) +1 other test dmesg-warn
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-snb2/igt@i915_selftest@mock.html
- shard-tglu: NOTRUN -> [DMESG-WARN][155] ([i915#9311]) +1 other test dmesg-warn
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@i915_selftest@mock.html
- shard-mtlp: NOTRUN -> [DMESG-WARN][156] ([i915#9311]) +1 other test dmesg-warn
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-5/igt@i915_selftest@mock.html
- shard-dg2: NOTRUN -> [DMESG-WARN][157] ([i915#1982] / [i915#9311])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-7/igt@i915_selftest@mock.html
- shard-dg1: NOTRUN -> [DMESG-WARN][158] ([i915#1982] / [i915#9311])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-17/igt@i915_selftest@mock.html
* igt@i915_selftest@mock@memory_region:
- shard-dg2: NOTRUN -> [DMESG-WARN][159] ([i915#9311])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-7/igt@i915_selftest@mock@memory_region.html
- shard-dg1: NOTRUN -> [DMESG-WARN][160] ([i915#9311])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-17/igt@i915_selftest@mock@memory_region.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu: NOTRUN -> [SKIP][161] ([i915#7707])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-10/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-mtlp: NOTRUN -> [SKIP][162] ([i915#4212])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-6/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#4212])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#4212])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-19/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][165] ([i915#8709]) +11 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-3-4-mc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#8709]) +11 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs:
- shard-rkl: NOTRUN -> [SKIP][167] ([i915#8709]) +3 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][168] ([i915#8709]) +7 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-19/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3555])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-7/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#9531])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-14/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#1769] / [i915#3555])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#1769] / [i915#3555])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#1769] / [i915#3555])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#1769] / [i915#3555])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-dg1: [PASS][175] -> [FAIL][176] ([i915#5956])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-17/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-13/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [FAIL][177] ([i915#11808])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][178] ([i915#5956])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-13/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-mtlp: NOTRUN -> [SKIP][179] +13 other tests skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-1/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [PASS][180] -> [FAIL][181] ([i915#5138]) +1 other test fail
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#5286]) +3 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#4538] / [i915#5286]) +5 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-13/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#5286]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#3638]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-15/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#3638]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-1/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#5190] / [i915#9197]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#4538] / [i915#5190]) +6 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-1/igt@kms_big_fb@yf-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#4538]) +4 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][190] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][191] ([i915#6095]) +49 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3:
- shard-dg2: NOTRUN -> [SKIP][192] ([i915#10307] / [i915#6095]) +148 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-10/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#6095]) +139 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-15/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][194] ([i915#6095]) +102 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-3/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][195] ([i915#6095]) +70 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-mtlp: NOTRUN -> [SKIP][196] ([i915#12042])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][197] ([i915#12042])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#12042])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][199] ([i915#12042]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-14/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_cdclk@mode-transition@pipe-b-dp-3:
- shard-dg2: NOTRUN -> [SKIP][200] ([i915#11616] / [i915#7213]) +3 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-b-dp-3.html
* igt@kms_cdclk@plane-scaling:
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#3742]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][202] ([i915#7828]) +9 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-18/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-tglu: NOTRUN -> [SKIP][203] ([i915#7828]) +5 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-5/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_frames@dp-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#7828]) +6 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-3/igt@kms_chamelium_frames@dp-crc-multiple.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][205] ([i915#7828]) +8 other tests skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-8/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#7828]) +3 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#7116] / [i915#9424]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-12/igt@kms_content_protection@atomic.html
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#7118] / [i915#9424])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-1/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@content-type-change:
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#6944] / [i915#9424])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-9/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#3299])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-6/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#9424])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-18/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#9424])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-5/igt@kms_content_protection@mei-interface.html
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#9424]) +1 other test skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-4/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#6944] / [i915#9424]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-4/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-random-512x512:
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#11453])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-16/igt@kms_cursor_crc@cursor-random-512x512.html
- shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3359])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][217] ([i915#9197]) +10 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
- shard-rkl: NOTRUN -> [SKIP][218] ([i915#3555]) +2 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#11453])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#8814]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-3:
- shard-dg1: NOTRUN -> [DMESG-WARN][221] ([i915#4423]) +1 other test dmesg-warn
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-13/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-3.html
* igt@kms_cursor_legacy@cursor-vs-flip-legacy:
- shard-dg1: [PASS][222] -> [DMESG-WARN][223] ([i915#4423])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-14/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-19/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#4103] / [i915#4213])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
- shard-dg1: NOTRUN -> [SKIP][225] ([i915#4103] / [i915#4213])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-12/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#4213])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#4103])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#4103])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#9723])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-19/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
- shard-mtlp: NOTRUN -> [SKIP][230] ([i915#9833])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#9723]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#9723])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-10/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#8812])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-5/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu: NOTRUN -> [SKIP][234] ([i915#3840]) +1 other test skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-4/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#3840])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-10/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][236] ([i915#3840])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-15/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
- shard-mtlp: NOTRUN -> [SKIP][237] ([i915#3840])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#3840])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-9/igt@kms_dsc@dsc-with-bpc.html
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#3840])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-7/igt@kms_dsc@dsc-with-bpc.html
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#3840])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-7/igt@kms_dsc@dsc-with-bpc.html
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#3840])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-1/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#3840]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-16/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@fbc:
- shard-dg2: [PASS][243] -> [SKIP][244] ([i915#1849])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-10/igt@kms_fbcon_fbt@fbc.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@kms_fbcon_fbt@fbc.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][245] ([i915#1839]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-5/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-tglu: NOTRUN -> [SKIP][246] ([i915#658])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-10/igt@kms_feature_discovery@psr1.html
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#658])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-2/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#658])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-13/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-rmfb:
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#3637]) +5 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-8/igt@kms_flip@2x-flip-vs-rmfb.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-tglu: NOTRUN -> [SKIP][250] ([i915#3637]) +9 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-2/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-tglu: NOTRUN -> [SKIP][251] ([i915#3637] / [i915#3966])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-10/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-dg2: NOTRUN -> [SKIP][252] +14 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@basic-plain-flip:
- shard-tglu: [PASS][253] -> [SKIP][254] ([i915#3637]) +5 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_flip@basic-plain-flip.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_flip@basic-plain-flip.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-mtlp: [PASS][255] -> [INCOMPLETE][256] ([i915#6113]) +1 other test incomplete
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-7/igt@kms_flip@flip-vs-suspend-interruptible.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-4/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-dg2: [PASS][257] -> [FAIL][258] ([i915#2122])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-11/igt@kms_flip@wf_vblank-ts-check.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-5/igt@kms_flip@wf_vblank-ts-check.html
- shard-rkl: NOTRUN -> [FAIL][259] ([i915#11989] / [i915#2122])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1:
- shard-snb: [PASS][260] -> [FAIL][261] ([i915#2122]) +7 other tests fail
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-snb1/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-snb6/igt@kms_flip@wf_vblank-ts-check-interruptible@b-vga1.html
* igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][262] ([i915#11961])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2.html
* igt@kms_flip@wf_vblank-ts-check@b-hdmi-a2:
- shard-rkl: NOTRUN -> [FAIL][263] ([i915#2122])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-5/igt@kms_flip@wf_vblank-ts-check@b-hdmi-a2.html
* igt@kms_flip@wf_vblank-ts-check@b-hdmi-a3:
- shard-dg2: NOTRUN -> [FAIL][264] ([i915#2122]) +1 other test fail
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-5/igt@kms_flip@wf_vblank-ts-check@b-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg2: [PASS][265] -> [SKIP][266] ([i915#3555]) +3 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#2672] / [i915#3555])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-3/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-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#2672])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#3555]) +2 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling:
- shard-tglu: [PASS][270] -> [SKIP][271] ([i915#3555]) +3 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling:
- shard-tglu: NOTRUN -> [SKIP][272] ([i915#2672] / [i915#3555]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][273] ([i915#2587] / [i915#2672]) +4 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#2672]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#2672]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#3555] / [i915#8813])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][277] ([i915#3555] / [i915#8810])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][279] ([i915#2672] / [i915#3555]) +1 other test skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#2672] / [i915#3555] / [i915#5190])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt:
- shard-dg2: NOTRUN -> [FAIL][281] ([i915#6880])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: [PASS][282] -> [SKIP][283] ([i915#5354]) +4 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#1825]) +24 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-snb: [PASS][285] -> [SKIP][286] +3 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite:
- shard-tglu: [PASS][287] -> [SKIP][288] ([i915#1849]) +8 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][289] ([i915#3023]) +12 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][290] +21 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][291] +34 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff:
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#1825]) +18 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-dg2: NOTRUN -> [SKIP][293] ([i915#10433] / [i915#3458])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][294] ([i915#3458]) +10 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][295] ([i915#1849]) +19 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#5354]) +28 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu:
- shard-dg1: NOTRUN -> [SKIP][297] ([i915#3458]) +12 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-cpu.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][298] ([i915#6118])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@static-swap:
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#3555] / [i915#8228])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-8/igt@kms_hdr@static-swap.html
- shard-rkl: NOTRUN -> [SKIP][300] ([i915#3555] / [i915#8228])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-5/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-dpms:
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#3555] / [i915#8228])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-9/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglu: NOTRUN -> [SKIP][302] ([i915#1839]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#6301])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-2/igt@kms_panel_fitting@legacy.html
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#6301])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-13/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@pixel-format-source-clamping:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#8825])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@kms_plane@pixel-format-source-clamping.html
* igt@kms_plane@plane-position-hole-dpms:
- shard-tglu: [PASS][306] -> [SKIP][307] ([i915#8825])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-10/igt@kms_plane@plane-position-hole-dpms.html
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_plane@plane-position-hole-dpms.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-tglu: [PASS][308] -> [SKIP][309] ([i915#7294])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-9/igt@kms_plane_alpha_blend@alpha-basic.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-mtlp: NOTRUN -> [SKIP][310] ([i915#9809]) +1 other test skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
- shard-dg2: NOTRUN -> [SKIP][311] ([i915#5354] / [i915#8152] / [i915#9423])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][312] ([i915#8292])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-2/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [FAIL][313] ([i915#8292])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-13/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@invalid-num-scalers:
- shard-tglu: [PASS][314] -> [SKIP][315] ([i915#3555] / [i915#6953] / [i915#8152])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-5/igt@kms_plane_scaling@invalid-num-scalers.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_plane_scaling@invalid-num-scalers.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][316] ([i915#12247] / [i915#9423]) +1 other test skip
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b:
- shard-tglu: [PASS][317] -> [SKIP][318] ([i915#12247]) +5 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d:
- shard-tglu: [PASS][319] -> [SKIP][320] ([i915#8152]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d.html
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format:
- shard-dg2: [PASS][321] -> [SKIP][322] ([i915#8152] / [i915#9423])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d:
- shard-dg2: [PASS][323] -> [SKIP][324] ([i915#8152])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format@pipe-d.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#12247] / [i915#8152] / [i915#9423])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][326] ([i915#12247] / [i915#8152])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-d.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-dg1: NOTRUN -> [SKIP][327] ([i915#3555]) +2 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][328] ([i915#12247]) +23 other tests skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
- shard-tglu: NOTRUN -> [SKIP][329] ([i915#12247] / [i915#8152]) +1 other test skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][330] ([i915#12247]) +11 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b:
- shard-tglu: NOTRUN -> [SKIP][331] ([i915#12247]) +12 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][332] ([i915#12247]) +14 other tests skip
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][333] ([i915#12247] / [i915#6953] / [i915#9423])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][334] ([i915#12247] / [i915#6953])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5:
- shard-dg2: [PASS][335] -> [SKIP][336] ([i915#6953] / [i915#8152] / [i915#9423])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b:
- shard-dg2: [PASS][337] -> [SKIP][338] ([i915#12247]) +8 other tests skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d:
- shard-dg2: [PASS][339] -> [SKIP][340] ([i915#12247] / [i915#8152]) +1 other test skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-tglu: [PASS][341] -> [SKIP][342] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
- shard-mtlp: NOTRUN -> [SKIP][343] ([i915#12247] / [i915#3555] / [i915#6953])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
- shard-dg2: [PASS][344] -> [SKIP][345] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][346] ([i915#12247]) +17 other tests skip
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d:
- shard-tglu: [PASS][347] -> [SKIP][348] ([i915#12247] / [i915#8152])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-d.html
* igt@kms_pm_backlight@basic-brightness:
- shard-dg1: NOTRUN -> [SKIP][349] ([i915#5354])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-14/igt@kms_pm_backlight@basic-brightness.html
- shard-tglu: NOTRUN -> [SKIP][350] ([i915#9812])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-tglu: NOTRUN -> [SKIP][351] ([i915#9685])
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-7/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-mtlp: NOTRUN -> [SKIP][352] ([i915#10139])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-8/igt@kms_pm_dc@dc6-dpms.html
- shard-dg2: NOTRUN -> [SKIP][353] ([i915#5978])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-5/igt@kms_pm_dc@dc6-dpms.html
- shard-rkl: NOTRUN -> [FAIL][354] ([i915#9295])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html
- shard-dg1: NOTRUN -> [SKIP][355] ([i915#3361])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-13/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][356] ([i915#9519])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][357] ([i915#9519])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-19/igt@kms_pm_rpm@modeset-lpsp.html
- shard-tglu: [PASS][358] -> [SKIP][359] ([i915#9519]) +1 other test skip
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-4/igt@kms_pm_rpm@modeset-lpsp.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][360] ([i915#9519]) +1 other test skip
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-2/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [PASS][361] -> [SKIP][362] ([i915#9519]) +1 other test skip
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][363] ([i915#6524])
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-4/igt@kms_prime@basic-modeset-hybrid.html
- shard-tglu: NOTRUN -> [SKIP][364] ([i915#6524]) +1 other test skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@kms_prime@basic-modeset-hybrid.html
- shard-mtlp: NOTRUN -> [SKIP][365] ([i915#6524])
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-3/igt@kms_prime@basic-modeset-hybrid.html
- shard-dg2: NOTRUN -> [SKIP][366] ([i915#6524] / [i915#6805])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-10/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][367] ([i915#9808]) +8 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-1/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1.html
* igt@kms_psr@fbc-pr-cursor-render:
- shard-mtlp: NOTRUN -> [SKIP][368] ([i915#9688]) +21 other tests skip
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-4/igt@kms_psr@fbc-pr-cursor-render.html
* igt@kms_psr@fbc-psr-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][369] ([i915#9732]) +20 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-4/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][370] ([i915#1072] / [i915#9732]) +16 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-3/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr-cursor-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][371] ([i915#1072] / [i915#9732]) +15 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-10/igt@kms_psr@psr-cursor-mmap-cpu.html
* igt@kms_psr@psr-sprite-plane-move:
- shard-dg1: NOTRUN -> [SKIP][372] ([i915#1072] / [i915#9732]) +15 other tests skip
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-13/igt@kms_psr@psr-sprite-plane-move.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg1: NOTRUN -> [SKIP][373] ([i915#9685]) +1 other test skip
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-14/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
- shard-dg2: NOTRUN -> [SKIP][374] ([i915#9685])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-mtlp: NOTRUN -> [SKIP][375] ([i915#4235])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-8/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][376] ([i915#11131] / [i915#4235])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-mtlp: NOTRUN -> [SKIP][377] ([i915#5289])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu: NOTRUN -> [SKIP][378] ([i915#5289])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-rkl: NOTRUN -> [SKIP][379] ([i915#5289])
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2: NOTRUN -> [SKIP][380] ([i915#8623]) +1 other test skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-7/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-dg2: [PASS][381] -> [SKIP][382] ([i915#9197]) +34 other tests skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-7/igt@kms_vblank@ts-continuation-dpms-suspend.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vrr@flip-suspend:
- shard-tglu: NOTRUN -> [SKIP][383] ([i915#3555]) +6 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-10/igt@kms_vrr@flip-suspend.html
- shard-mtlp: NOTRUN -> [SKIP][384] ([i915#3555] / [i915#8808])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-1/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][385] ([i915#11920])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-4/igt@kms_vrr@lobf.html
- shard-rkl: NOTRUN -> [SKIP][386] ([i915#11920])
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-4/igt@kms_vrr@lobf.html
- shard-dg1: NOTRUN -> [SKIP][387] ([i915#11920])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-13/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-tglu: NOTRUN -> [SKIP][388] ([i915#9906])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-6/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: NOTRUN -> [SKIP][389] ([i915#9906]) +2 other tests skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-dg1: NOTRUN -> [SKIP][390] ([i915#9906])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-19/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-mtlp: NOTRUN -> [SKIP][391] ([i915#8808] / [i915#9906])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-6/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2: NOTRUN -> [SKIP][392] ([i915#2437] / [i915#9412])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-5/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@global-sseu-config:
- shard-dg2: NOTRUN -> [SKIP][393] ([i915#7387])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-11/igt@perf@global-sseu-config.html
* igt@perf@polling@0-rcs0:
- shard-dg1: [PASS][394] -> [FAIL][395] ([i915#10538])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-13/igt@perf@polling@0-rcs0.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-18/igt@perf@polling@0-rcs0.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][396] ([i915#8516])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-7/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-dg1: NOTRUN -> [SKIP][397] ([i915#8516])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-17/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][398] ([i915#3708] / [i915#4077])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-2/igt@prime_vgem@basic-fence-mmap.html
- shard-dg1: NOTRUN -> [SKIP][399] ([i915#3708] / [i915#4077])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-13/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: NOTRUN -> [SKIP][400] ([i915#3291] / [i915#3708])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-5/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@fence-write-hang:
- shard-tglu: NOTRUN -> [SKIP][401] +66 other tests skip
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-8/igt@prime_vgem@fence-write-hang.html
- shard-mtlp: NOTRUN -> [SKIP][402] ([i915#3708])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-5/igt@prime_vgem@fence-write-hang.html
- shard-dg2: NOTRUN -> [SKIP][403] ([i915#3708])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@prime_vgem@fence-write-hang.html
- shard-rkl: NOTRUN -> [SKIP][404] ([i915#3708])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-rkl-7/igt@prime_vgem@fence-write-hang.html
- shard-dg1: NOTRUN -> [SKIP][405] ([i915#3708])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-18/igt@prime_vgem@fence-write-hang.html
* igt@syncobj_wait@invalid-wait-zero-handles:
- shard-tglu: NOTRUN -> [FAIL][406] ([i915#9781])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-2/igt@syncobj_wait@invalid-wait-zero-handles.html
#### Possible fixes ####
* igt@fbdev@info:
- shard-dg2: [SKIP][407] ([i915#1849] / [i915#2582]) -> [PASS][408]
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@fbdev@info.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-4/igt@fbdev@info.html
* igt@gem_eio@hibernate:
- shard-dg1: [ABORT][409] ([i915#7975] / [i915#8213]) -> [PASS][410]
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-14/igt@gem_eio@hibernate.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-13/igt@gem_eio@hibernate.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [FAIL][411] ([i915#5784]) -> [PASS][412]
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-14/igt@gem_eio@unwedge-stress.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-18/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@nop:
- shard-dg2: [INCOMPLETE][413] -> [PASS][414]
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-3/igt@gem_exec_balancer@nop.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-2/igt@gem_exec_balancer@nop.html
- shard-dg1: [INCOMPLETE][415] -> [PASS][416]
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-16/igt@gem_exec_balancer@nop.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-13/igt@gem_exec_balancer@nop.html
* igt@gem_exec_params@no-blt:
- shard-dg2: [INCOMPLETE][417] ([i915#2295]) -> [PASS][418]
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-3/igt@gem_exec_params@no-blt.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-1/igt@gem_exec_params@no-blt.html
* igt@gem_exec_reloc@basic-scanout@vcs0:
- shard-tglu: [SKIP][419] ([i915#3639]) -> [PASS][420] +5 other tests pass
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@gem_exec_reloc@basic-scanout@vcs0.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-5/igt@gem_exec_reloc@basic-scanout@vcs0.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-tglu: [ABORT][421] ([i915#9820]) -> [PASS][422]
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-9/igt@i915_module_load@reload-with-fault-injection.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- shard-dg1: [FAIL][423] ([i915#3591]) -> [PASS][424] +1 other test pass
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-dg1: [DMESG-WARN][425] ([i915#4423]) -> [PASS][426]
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg1-12/igt@i915_pm_rpm@system-suspend-execbuf.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg1-13/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_power@sanity:
- shard-mtlp: [SKIP][427] ([i915#7984]) -> [PASS][428]
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-1/igt@i915_power@sanity.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-6/igt@i915_power@sanity.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [ABORT][429] ([i915#12216]) -> [PASS][430] +1 other test pass
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-3/igt@i915_selftest@live@workarounds.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-7/igt@i915_selftest@live@workarounds.html
* igt@kms_atomic_interruptible@legacy-pageflip:
- shard-tglu: [SKIP][431] -> [PASS][432] +48 other tests pass
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-tglu-8/igt@kms_atomic_interruptible@legacy-pageflip.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-tglu-3/igt@kms_atomic_interruptible@legacy-pageflip.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-dg2: [FAIL][433] ([i915#5956]) -> [PASS][434]
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-mtlp: [FAIL][435] ([i915#11808] / [i915#5956]) -> [PASS][436] +1 other test pass
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-3/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_color@ctm-max:
- shard-dg2: [SKIP][437] ([i915#5354]) -> [PASS][438] +8 other tests pass
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_color@ctm-max.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-10/igt@kms_color@ctm-max.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-mtlp: [INCOMPLETE][439] -> [PASS][440] +1 other test pass
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-mtlp-8/igt@kms_cursor_crc@cursor-suspend.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-mtlp-8/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_edge_walk@256x256-top-edge:
- shard-dg2: [SKIP][441] ([i915#9197]) -> [PASS][442] +18 other tests pass
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-dg2-2/igt@kms_cursor_edge_walk@256x256-top-edge.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-dg2-5/igt@kms_cursor_edge_walk@256x256-top-edge.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][443] ([i915#2122]) -> [PASS][444] +5 other tests pass
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15446/shard-snb6/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/shard-snb1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-modeset-vs-hang:
- shard-tglu: [SKIP][445] ([i915#3637]) -> [PASS][446] +7 other test
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11809/index.html
[-- Attachment #2: Type: text/html, Size: 108822 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t] lib/amdgpu: fix sdma linear copy command
2024-09-26 7:35 [PATCH i-g-t] lib/amdgpu: fix sdma linear copy command Jesse.zhang@amd.com
` (2 preceding siblings ...)
2024-09-26 14:26 ` ✗ Fi.CI.IGT: " Patchwork
@ 2024-09-26 21:59 ` vitaly prosyak
2024-09-27 5:09 ` ✗ CI.xeFULL: failure for " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: vitaly prosyak @ 2024-09-26 21:59 UTC (permalink / raw)
To: Jesse.zhang@amd.com, igt-dev
Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig
the change looks good to me
Reviewed-by: Vitaly Prosyak <vitaly.prosyak@amd.com>
On 2024-09-26 03:35, Jesse.zhang@amd.com wrote:
> Fix page fault when using sdma linear copy:
> [ 4606.313448] amdgpu 0000:1a:00.0: amdgpu: [mmhub0] no-retry page fault (src_id:0 ring:24 vmid:1 pasid:32772)
> [ 4606.313463] amdgpu 0000:1a:00.0: amdgpu: for process amd_deadlock pid 4440 thread amd_deadlock pid 4440)
> [ 4606.313475] amdgpu 0000:1a:00.0: amdgpu: in page starting at address 0x0000000000001000 from IH client 0x12 (VMC)
> [ 4606.313490] amdgpu 0000:1a:00.0: amdgpu: VM_L2_PROTECTION_FAULT_STATUS:0x00120231
> [ 4606.313501] amdgpu 0000:1a:00.0: amdgpu: Faulty UTCL2 client ID: SDMA1 (0x101)
> [ 4606.313511] amdgpu 0000:1a:00.0: amdgpu: MORE_FAULTS: 0x1
> [ 4606.313519] amdgpu 0000:1a:00.0: amdgpu: WALKER_ERROR: 0x0
> [ 4606.313527] amdgpu 0000:1a:00.0: amdgpu: PERMISSION_FAULTS: 0x3
> [ 4606.313535] amdgpu 0000:1a:00.0: amdgpu: MAPPING_ERROR: 0x0
> [ 4606.313543] amdgpu 0000:1a:00.0: amdgpu: RW: 0x0
>
> For old AI asics, the sdma copy count is shorter than newer ones.
> So add count check in case the max range is exceeded.
>
> Cc: Vitaly Prosyak <vitaly.prosyak@amd.com>
> Cc: Alex Deucher <alexander.deucher@amd.com>
> Cc: Christian Koenig <christian.koenig@amd.com>
>
> Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
> ---
> lib/amdgpu/amd_ip_blocks.c | 13 ++++++++++---
> 1 file changed, 10 insertions(+), 3 deletions(-)
>
> diff --git a/lib/amdgpu/amd_ip_blocks.c b/lib/amdgpu/amd_ip_blocks.c
> index 3f8f28483..f22a322e5 100644
> --- a/lib/amdgpu/amd_ip_blocks.c
> +++ b/lib/amdgpu/amd_ip_blocks.c
> @@ -189,10 +189,17 @@ sdma_ring_copy_linear(const struct amdgpu_ip_funcs *func,
> context->pm4[i++] = SDMA_PACKET(SDMA_OPCODE_COPY,
> SDMA_COPY_SUB_OPCODE_LINEAR,
> context->secure ? 0x4 : 0);
> - if (func->family_id >= AMDGPU_FAMILY_AI)
> - context->pm4[i++] = context->write_length - 1;
> - else
> + if (func->family_id >= AMDGPU_FAMILY_AI) {
> + /* For FAMILY AI, the maximum copy range supported by sdma is 4MB */
> + if (func->family_id >= AMDGPU_FAMILY_AI && context->write_length > 0x3fffff) {
> + context->pm4[i++] = 0x3fffff;
> + igt_warn("sdma copy count exceeds the maximum limit of 4MB\n");
> + } else {
> + context->pm4[i++] = context->write_length - 1;
> + }
> + } else {
> context->pm4[i++] = context->write_length;
> + }
> context->pm4[i++] = 0;
> context->pm4[i++] = lower_32_bits(context->bo_mc);
> context->pm4[i++] = upper_32_bits(context->bo_mc);
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ CI.xeFULL: failure for lib/amdgpu: fix sdma linear copy command
2024-09-26 7:35 [PATCH i-g-t] lib/amdgpu: fix sdma linear copy command Jesse.zhang@amd.com
` (3 preceding siblings ...)
2024-09-26 21:59 ` [PATCH i-g-t] " vitaly prosyak
@ 2024-09-27 5:09 ` Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-09-27 5:09 UTC (permalink / raw)
To: Jesse.zhang@amd.com; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 89358 bytes --]
== Series Details ==
Series: lib/amdgpu: fix sdma linear copy command
URL : https://patchwork.freedesktop.org/series/139135/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8032_full -> XEIGTPW_11809_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11809_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11809_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 (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_11809_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-lnl: NOTRUN -> [SKIP][1] +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-2/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1:
- shard-lnl: [PASS][2] -> [FAIL][3] +51 other tests fail
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-3/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-3/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][4] +1 other test fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-1/igt@kms_psr2_sf@fbc-primary-plane-update-sf-dmg-area@psr2-pipe-a-edp-1.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-lnl: [PASS][5] -> [SKIP][6] +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: NOTRUN -> [SKIP][7] +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@xe_query@multigpu-query-engines.html
#### Warnings ####
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][8] ([Intel XE#1430]) -> [SKIP][9]
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
* igt@xe_exec_fault_mode@once-rebind-imm:
- shard-dg2-set2: [SKIP][10] ([Intel XE#1201]) -> [SKIP][11] +20 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@xe_exec_fault_mode@once-rebind-imm.html
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@xe_exec_fault_mode@once-rebind-imm.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_async_flips@crc:
- {shard-bmg}: [DMESG-FAIL][12] ([Intel XE#1033]) -> [SKIP][13]
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_async_flips@crc.html
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_async_flips@crc.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- {shard-bmg}: [SKIP][14] ([Intel XE#2385]) -> [SKIP][15]
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- {shard-bmg}: [SKIP][16] ([Intel XE#2370]) -> [SKIP][17] +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- {shard-bmg}: [SKIP][18] ([Intel XE#2327]) -> [SKIP][19] +5 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-0:
- {shard-bmg}: [SKIP][20] ([Intel XE#1124]) -> [SKIP][21] +11 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- {shard-bmg}: [SKIP][22] ([Intel XE#607]) -> [SKIP][23]
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- {shard-bmg}: [SKIP][24] ([Intel XE#610]) -> [SKIP][25]
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_bw@linear-tiling-2-displays-1920x1080p:
- {shard-bmg}: [SKIP][26] ([Intel XE#367]) -> [SKIP][27] +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- {shard-bmg}: [SKIP][28] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][29]
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- {shard-bmg}: [SKIP][30] ([Intel XE#2251]) -> [SKIP][31] +19 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition:
- {shard-bmg}: [SKIP][32] ([Intel XE#2724]) -> [SKIP][33]
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_cdclk@mode-transition.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_color@ctm-max:
- {shard-bmg}: [SKIP][34] ([Intel XE#2325]) -> [SKIP][35] +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_chamelium_color@ctm-max.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- {shard-bmg}: [SKIP][36] ([Intel XE#2252]) -> [SKIP][37] +12 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_content_protection@atomic-dpms:
- {shard-bmg}: [FAIL][38] ([Intel XE#1178]) -> [SKIP][39]
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-4/igt@kms_content_protection@atomic-dpms.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@content-type-change:
- {shard-bmg}: [SKIP][40] ([Intel XE#2341]) -> [SKIP][41] +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@kms_content_protection@content-type-change.html
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@dp-mst-type-0:
- {shard-bmg}: [SKIP][42] ([Intel XE#2390]) -> [SKIP][43] +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-4/igt@kms_content_protection@dp-mst-type-0.html
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_cursor_crc@cursor-random-32x32:
- {shard-bmg}: [SKIP][44] ([Intel XE#2320]) -> [SKIP][45] +6 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-4/igt@kms_cursor_crc@cursor-random-32x32.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- {shard-bmg}: [DMESG-WARN][46] -> [SKIP][47] +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- {shard-bmg}: [FAIL][48] ([Intel XE#2141]) -> [SKIP][49]
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- {shard-bmg}: [SKIP][50] ([Intel XE#1508]) -> [SKIP][51]
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-basic:
- {shard-bmg}: [SKIP][52] ([Intel XE#2244]) -> [SKIP][53] +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_dsc@dsc-basic.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_dsc@dsc-basic.html
* igt@kms_fbcon_fbt@psr:
- {shard-bmg}: [SKIP][54] ([Intel XE#776]) -> [SKIP][55]
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_fbcon_fbt@psr.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_fbcon_fbt@psr.html
* igt@kms_flip@2x-nonexisting-fb:
- {shard-bmg}: [PASS][56] -> [SKIP][57] +135 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_flip@2x-nonexisting-fb.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- {shard-bmg}: [SKIP][58] ([Intel XE#2380]) -> [SKIP][59] +6 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- {shard-bmg}: [SKIP][60] ([Intel XE#2311]) -> [SKIP][61] +39 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc:
- {shard-bmg}: [SKIP][62] ([Intel XE#2312]) -> [SKIP][63] +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
- {shard-bmg}: [FAIL][64] -> [SKIP][65] +9 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render:
- {shard-bmg}: NOTRUN -> [FAIL][66]
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- {shard-bmg}: [FAIL][67] ([Intel XE#2333]) -> [SKIP][68] +6 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- {shard-bmg}: [SKIP][69] ([Intel XE#2352]) -> [SKIP][70]
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- {shard-bmg}: NOTRUN -> [SKIP][71] +33 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- {shard-bmg}: [SKIP][72] ([Intel XE#2313]) -> [SKIP][73] +39 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_plane_multiple@tiling-y:
- {shard-bmg}: [SKIP][74] ([Intel XE#2493]) -> [SKIP][75]
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@kms_plane_multiple@tiling-y.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- {shard-bmg}: [SKIP][76] ([Intel XE#2763]) -> [SKIP][77] +3 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_pm_backlight@basic-brightness:
- {shard-bmg}: [SKIP][78] ([Intel XE#870]) -> [SKIP][79] +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_pm_backlight@basic-brightness.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_rpm@universal-planes-dpms:
- {shard-bmg}: [PASS][80] -> [DMESG-WARN][81] +2 other tests dmesg-warn
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_pm_rpm@universal-planes-dpms.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-2/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_psr2_sf@fbc-overlay-primary-update-sf-dmg-area:
- {shard-bmg}: [SKIP][82] ([Intel XE#1489]) -> [SKIP][83] +4 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-4/igt@kms_psr2_sf@fbc-overlay-primary-update-sf-dmg-area.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_psr2_sf@fbc-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-cursor-plane-onoff:
- {shard-bmg}: [SKIP][84] ([Intel XE#2850]) -> [SKIP][85] +21 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_psr@fbc-pr-cursor-plane-onoff.html
* igt@kms_rotation_crc@bad-pixel-format:
- {shard-bmg}: [SKIP][86] ([Intel XE#2329]) -> [SKIP][87] +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-2/igt@kms_rotation_crc@bad-pixel-format.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_writeback@writeback-invalid-parameters:
- {shard-bmg}: [SKIP][88] ([Intel XE#756]) -> [SKIP][89]
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-7/igt@kms_writeback@writeback-invalid-parameters.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@kms_writeback@writeback-invalid-parameters.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- {shard-bmg}: [SKIP][90] ([Intel XE#2849]) -> [SKIP][91]
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_oa@mmio-triggered-reports@ccs-0:
- {shard-bmg}: [PASS][92] -> [FAIL][93]
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-5/igt@xe_oa@mmio-triggered-reports@ccs-0.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-8/igt@xe_oa@mmio-triggered-reports@ccs-0.html
* igt@xe_pat@pat-index-xelpg:
- {shard-bmg}: [SKIP][94] ([Intel XE#2236]) -> [SKIP][95]
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@xe_pat@pat-index-xelpg.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-1/igt@xe_pat@pat-index-xelpg.html
New tests
---------
New tests have been introduced between XEIGT_8032_full and XEIGTPW_11809_full:
### New IGT tests (106) ###
* igt@kms_flip_event_leak@basic@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.40] s
* igt@kms_flip_event_leak@basic@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_flip_event_leak@basic@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.26] s
* igt@kms_lease@atomic-implicit-crtc@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@atomic-implicit-crtc@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_lease@atomic-implicit-crtc@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@kms_lease@atomic-implicit-crtc@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@atomic-implicit-crtc@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_lease@atomic-implicit-crtc@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_lease@atomic-implicit-crtc@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_lease@atomic-implicit-crtc@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_lease@cursor-implicit-plane@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.26] s
* igt@kms_lease@cursor-implicit-plane@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_lease@cursor-implicit-plane@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_lease@cursor-implicit-plane@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_lease@empty-lease@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@empty-lease@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@empty-lease@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@empty-lease@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@empty-lease@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@empty-lease@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@empty-lease@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@empty-lease@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-again@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_lease@lease-again@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-again@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-again@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-again@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-again@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-again@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-again@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-get@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-get@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-get@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-get@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-connector@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-connector@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-connector@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-connector@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-connector@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-connector@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-connector@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-connector@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-crtc@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-crtc@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-crtc@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-crtc@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-crtc@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-crtc@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-crtc@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-crtc@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-plane@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-plane@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-plane@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-plane@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-plane@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-plane@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-plane@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-invalid-plane@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lease-revoke@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.07] s
* igt@kms_lease@lease-revoke@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.07] s
* igt@kms_lease@lease-revoke@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.07] s
* igt@kms_lease@lease-revoke@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@kms_lease@lease-revoke@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.07] s
* igt@kms_lease@lease-revoke@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.07] s
* igt@kms_lease@lease-revoke@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.07] s
* igt@kms_lease@lease-revoke@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@kms_lease@lease-unleased-connector@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.11] s
* igt@kms_lease@lease-unleased-connector@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.12] s
* igt@kms_lease@lease-unleased-connector@pipe-a-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@kms_lease@lease-unleased-connector@pipe-a-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@kms_lease@lease-unleased-connector@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.11] s
* igt@kms_lease@lease-unleased-connector@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.12] s
* igt@kms_lease@lease-unleased-connector@pipe-b-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@kms_lease@lease-unleased-connector@pipe-b-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@kms_lease@lease-unleased-connector@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.12] s
* igt@kms_lease@lease-unleased-connector@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.12] s
* igt@kms_lease@lease-unleased-connector@pipe-c-edp-1:
- Statuses : 1 pass(s)
- Exec time: [0.01] s
* igt@kms_lease@lease-unleased-connector@pipe-c-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@kms_lease@lease-unleased-connector@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.11] s
* igt@kms_lease@lease-unleased-connector@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.12] s
* igt@kms_lease@lease-unleased-connector@pipe-d-hdmi-a-3:
- Statuses : 1 pass(s)
- Exec time: [0.06] s
* igt@kms_lease@lessee-list@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_lease@lessee-list@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lessee-list@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lessee-list@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lessee-list@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lessee-list@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lessee-list@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@lessee-list@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_lease@page-flip-implicit-plane@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.43] s
* igt@kms_lease@page-flip-implicit-plane@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.32] s
* igt@kms_lease@page-flip-implicit-plane@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.29] s
* igt@kms_lease@page-flip-implicit-plane@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.28] s
* igt@kms_lease@page-flip-implicit-plane@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.30] s
* igt@kms_lease@page-flip-implicit-plane@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.30] s
* igt@kms_lease@page-flip-implicit-plane@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.31] s
* igt@kms_lease@page-flip-implicit-plane@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.27] s
* igt@kms_lease@setcrtc-implicit-plane@pipe-a-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.44] s
* igt@kms_lease@setcrtc-implicit-plane@pipe-a-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.29] s
* igt@kms_lease@setcrtc-implicit-plane@pipe-b-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.28] s
* igt@kms_lease@setcrtc-implicit-plane@pipe-b-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_lease@setcrtc-implicit-plane@pipe-c-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.29] s
* igt@kms_lease@setcrtc-implicit-plane@pipe-c-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.26] s
* igt@kms_lease@setcrtc-implicit-plane@pipe-d-dp-2:
- Statuses : 1 pass(s)
- Exec time: [0.28] s
* igt@kms_lease@setcrtc-implicit-plane@pipe-d-dp-4:
- Statuses : 1 pass(s)
- Exec time: [0.26] s
Known issues
------------
Here are the changes found in XEIGTPW_11809_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [PASS][96] -> [FAIL][97] ([Intel XE#911]) +3 other tests fail
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_atomic_transition@modeset-transition-nonblocking:
- shard-lnl: [PASS][98] -> [FAIL][99] ([Intel XE#1701]) +1 other test fail
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-7/igt@kms_atomic_transition@modeset-transition-nonblocking.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-2/igt@kms_atomic_transition@modeset-transition-nonblocking.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6:
- shard-dg2-set2: [PASS][100] -> [FAIL][101] ([Intel XE#1426]) +1 other test fail
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-463/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-6.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-lnl: [PASS][102] -> [FAIL][103] ([Intel XE#1659]) +1 other test fail
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1407])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-2/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#1201] / [Intel XE#316])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-435/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#1124])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1124]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][108] ([Intel XE#1124] / [Intel XE#1201]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][109] ([Intel XE#1201] / [Intel XE#367])
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-463/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#1201] / [Intel XE#787]) +13 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-433/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +3 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-436/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#1201] / [Intel XE#1252])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [PASS][113] -> [INCOMPLETE][114] ([Intel XE#1195] / [Intel XE#1727]) +1 other test incomplete
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: [PASS][115] -> [INCOMPLETE][116] ([Intel XE#1195]) +4 other tests incomplete
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
* igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#1201] / [Intel XE#373]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-434/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#373]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-5/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_cursor_crc@cursor-random-256x85:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1424])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-2/igt@kms_cursor_crc@cursor-random-256x85.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#1201] / [Intel XE#455])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-lnl: [PASS][121] -> [SKIP][122] ([Intel XE#1508])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1:
- shard-lnl: [PASS][123] -> [FAIL][124] ([Intel XE#886]) +1 other test fail
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-3/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-1/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1401] / [Intel XE#1745])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1401])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#1397] / [Intel XE#1745])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1397])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#656]) +7 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#651])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#1201] / [Intel XE#651]) +7 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move:
- shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#651])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#1201] / [Intel XE#653]) +6 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#653])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [PASS][135] -> [SKIP][136] ([Intel XE#1201] / [Intel XE#455])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-434/igt@kms_hdr@invalid-hdr.html
* igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3:
- shard-lnl: [PASS][137] -> [DMESG-WARN][138] ([Intel XE#324]) +4 other tests dmesg-warn
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-4/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3.html
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-2/igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3.html
* igt@kms_plane_cursor@viewport:
- shard-dg2-set2: [PASS][139] -> [FAIL][140] ([Intel XE#616]) +2 other tests fail
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_plane_cursor@viewport.html
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-434/igt@kms_plane_cursor@viewport.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#2763]) +3 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b.html
* igt@kms_pm_backlight@fade:
- shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#1201] / [Intel XE#870])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-436/igt@kms_pm_backlight@fade.html
* igt@kms_psr@fbc-psr2-cursor-render@edp-1:
- shard-lnl: [PASS][143] -> [FAIL][144] ([Intel XE#1649]) +111 other tests fail
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-4/igt@kms_psr@fbc-psr2-cursor-render@edp-1.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-lnl: NOTRUN -> [FAIL][145] ([Intel XE#1649]) +5 other tests fail
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-3/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-sprite-blt:
- shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1406])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-5/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr@psr2-primary-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#1201] / [Intel XE#2850])
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-464/igt@kms_psr@psr2-primary-blt.html
* igt@kms_vrr@flip-basic-fastset:
- shard-lnl: [PASS][148] -> [FAIL][149] ([Intel XE#2443]) +1 other test fail
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@kms_vrr@flip-basic-fastset.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-7/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@lobf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [FAIL][150] ([Intel XE#2443]) +1 other test fail
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-5/igt@kms_vrr@lobf@pipe-a-edp-1.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#756])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@kms_writeback@writeback-fb-id.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [PASS][152] -> [TIMEOUT][153] ([Intel XE#1473] / [Intel XE#402])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-dg2-set2: NOTRUN -> [FAIL][154] ([Intel XE#1600])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-434/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-dg2-set2: [PASS][155] -> [TIMEOUT][156] ([Intel XE#1473])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@xe_evict@evict-mixed-many-threads-small.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-463/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue:
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#1392])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-4/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html
* igt@xe_exec_fault_mode@many-userptr-invalidate-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#1201]) +4 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-466/igt@xe_exec_fault_mode@many-userptr-invalidate-imm.html
* igt@xe_exec_fault_mode@twice-basic-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#1201] / [Intel XE#288])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-464/igt@xe_exec_fault_mode@twice-basic-prefetch.html
* igt@xe_oa@mmio-triggered-reports:
- shard-lnl: [PASS][160] -> [FAIL][161] ([Intel XE#2249])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-1/igt@xe_oa@mmio-triggered-reports.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-8/igt@xe_oa@mmio-triggered-reports.html
* igt@xe_oa@oa-exponents:
- shard-lnl: [PASS][162] -> [FAIL][163] ([Intel XE#2723])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@xe_oa@oa-exponents.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-2/igt@xe_oa@oa-exponents.html
* igt@xe_oa@oa-exponents@ccs-0:
- shard-lnl: NOTRUN -> [FAIL][164] ([Intel XE#2723])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-2/igt@xe_oa@oa-exponents@ccs-0.html
* igt@xe_oa@privileged-forked-access-vaddr:
- shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#1201] / [Intel XE#2541]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-433/igt@xe_oa@privileged-forked-access-vaddr.html
* igt@xe_pm@s4-vm-bind-unbind-all:
- shard-lnl: [PASS][166] -> [ABORT][167] ([Intel XE#1794]) +1 other test abort
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-7/igt@xe_pm@s4-vm-bind-unbind-all.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-2/igt@xe_pm@s4-vm-bind-unbind-all.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-lnl: NOTRUN -> [ABORT][168] ([Intel XE#2310])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-4/igt@xe_wedged@wedged-mode-toggle.html
#### Possible fixes ####
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-lnl: [FAIL][169] ([Intel XE#1426]) -> [PASS][170] +1 other test pass
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-1/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6:
- shard-dg2-set2: [FAIL][171] ([Intel XE#1426]) -> [PASS][172] +1 other test pass
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-434/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- {shard-bmg}: [INCOMPLETE][173] -> [PASS][174]
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-d-hdmi-a-3:
- {shard-bmg}: [DMESG-WARN][175] ([Intel XE#877]) -> [PASS][176] +5 other tests pass
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-d-hdmi-a-3.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-d-hdmi-a-3.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1:
- shard-lnl: [INCOMPLETE][177] ([Intel XE#1616]) -> [PASS][178] +1 other test pass
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-4/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-4/igt@kms_cursor_crc@cursor-suspend@pipe-a-edp-1.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- {shard-bmg}: [DMESG-WARN][179] ([Intel XE#2791] / [Intel XE#877]) -> [PASS][180]
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_display_modes@extended-mode-basic:
- {shard-bmg}: [SKIP][181] ([Intel XE#2425]) -> [PASS][182]
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-7/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- {shard-bmg}: [SKIP][183] -> [PASS][184] +4 other tests pass
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@blocking-wf_vblank:
- shard-lnl: [FAIL][185] ([Intel XE#886]) -> [PASS][186] +4 other tests pass
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-1/igt@kms_flip@blocking-wf_vblank.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-4/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a3:
- {shard-bmg}: [DMESG-WARN][187] -> [PASS][188] +2 other tests pass
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-1/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html
* igt@kms_plane@plane-position-hole@pipe-a-plane-1:
- shard-lnl: [DMESG-FAIL][189] ([Intel XE#324]) -> [PASS][190]
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-a-plane-1.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-7/igt@kms_plane@plane-position-hole@pipe-a-plane-1.html
* igt@kms_plane@plane-position-hole@pipe-b-plane-3:
- shard-lnl: [DMESG-WARN][191] ([Intel XE#324]) -> [PASS][192]
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-5/igt@kms_plane@plane-position-hole@pipe-b-plane-3.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-7/igt@kms_plane@plane-position-hole@pipe-b-plane-3.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: [FAIL][193] ([Intel XE#616]) -> [PASS][194] +3 other tests pass
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-466/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
* igt@kms_plane_scaling@planes-upscale-20x20@pipe-a:
- {shard-bmg}: [SKIP][195] ([Intel XE#2763]) -> [PASS][196] +4 other tests pass
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-bmg-6/igt@kms_plane_scaling@planes-upscale-20x20@pipe-a.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-bmg-1/igt@kms_plane_scaling@planes-upscale-20x20@pipe-a.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [FAIL][197] ([Intel XE#718]) -> [PASS][198]
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
* igt@xe_evict@evict-mixed-many-threads-large:
- shard-dg2-set2: [TIMEOUT][199] ([Intel XE#1473]) -> [PASS][200]
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-large.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-464/igt@xe_evict@evict-mixed-many-threads-large.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-dg2-set2: [INCOMPLETE][201] ([Intel XE#1195] / [Intel XE#569]) -> [PASS][202]
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@xe_pm@s3-vm-bind-userptr.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-434/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@s4-basic:
- shard-lnl: [ABORT][203] ([Intel XE#1358] / [Intel XE#1607]) -> [PASS][204]
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-2/igt@xe_pm@s4-basic.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-8/igt@xe_pm@s4-basic.html
* igt@xe_pm@s4-vm-bind-userptr:
- shard-lnl: [ABORT][205] ([Intel XE#1794]) -> [PASS][206]
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-2/igt@xe_pm@s4-vm-bind-userptr.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-1/igt@xe_pm@s4-vm-bind-userptr.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-dg2-set2: [SKIP][207] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][208] ([Intel XE#316]) +2 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][209] ([Intel XE#316]) -> [SKIP][210] ([Intel XE#1201] / [Intel XE#316]) +6 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-466/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-180:
- shard-dg2-set2: [SKIP][211] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][212] ([Intel XE#1124]) +3 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@kms_big_fb@y-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: [SKIP][213] ([Intel XE#619]) -> [SKIP][214] ([Intel XE#1201] / [Intel XE#619])
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-466/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
- shard-dg2-set2: [SKIP][215] ([Intel XE#1124]) -> [SKIP][216] ([Intel XE#1124] / [Intel XE#1201]) +3 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-433/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: [SKIP][217] ([Intel XE#2191]) -> [SKIP][218] ([Intel XE#1201] / [Intel XE#2191])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: [SKIP][219] ([Intel XE#1201] / [Intel XE#367]) -> [SKIP][220] ([Intel XE#367]) +1 other test skip
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- shard-dg2-set2: [SKIP][221] ([Intel XE#367]) -> [SKIP][222] ([Intel XE#1201] / [Intel XE#367])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: [SKIP][223] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][224] ([Intel XE#787]) +48 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [SKIP][225] ([Intel XE#787]) -> [SKIP][226] ([Intel XE#1201] / [Intel XE#787]) +76 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-466/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][227] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][228] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +21 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-436/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][229] ([Intel XE#1201] / [Intel XE#1252]) -> [SKIP][230] ([Intel XE#1252])
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-dp-4:
- shard-dg2-set2: [SKIP][231] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][232] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-dp-4.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-dg2-set2: [SKIP][233] ([Intel XE#306]) -> [SKIP][234] ([Intel XE#1201] / [Intel XE#306])
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_chamelium_color@ctm-0-25.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-434/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-0-75:
- shard-dg2-set2: [SKIP][235] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][236] ([Intel XE#306]) +2 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-436/igt@kms_chamelium_color@ctm-0-75.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@kms_chamelium_color@ctm-0-75.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-dg2-set2: [SKIP][237] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][238] ([Intel XE#373]) +3 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: [SKIP][239] ([Intel XE#373]) -> [SKIP][240] ([Intel XE#1201] / [Intel XE#373]) +4 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-433/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg2-set2: [SKIP][241] ([Intel XE#307]) -> [SKIP][242] ([Intel XE#1201] / [Intel XE#307])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_content_protection@dp-mst-lic-type-0.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-dg2-set2: [SKIP][243] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][244] ([Intel XE#455]) +6 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_cursor_crc@cursor-random-32x10.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2-set2: [SKIP][245] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][246] ([Intel XE#308])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-463/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-set2: [SKIP][247] ([Intel XE#308]) -> [SKIP][248] ([Intel XE#1201] / [Intel XE#308])
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-512x170.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-463/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: [SKIP][249] ([Intel XE#455]) -> [SKIP][250] ([Intel XE#1201] / [Intel XE#455]) +14 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-466/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][251] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][252] ([Intel XE#651]) +17 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: [SKIP][253] ([Intel XE#651]) -> [SKIP][254] ([Intel XE#1201] / [Intel XE#651]) +15 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][255] ([Intel XE#1201]) -> [SKIP][256] ([Intel XE#1201] / [Intel XE#658]) +2 other tests skip
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][257] ([Intel XE#653]) -> [SKIP][258] ([Intel XE#1201] / [Intel XE#653]) +17 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: [SKIP][259] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][260] ([Intel XE#653]) +20 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d:
- shard-dg2-set2: [SKIP][261] ([Intel XE#455]) -> [SKIP][262] ([Intel XE#1201] / [Intel XE#2763] / [Intel XE#455]) +5 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-dg2-set2: [SKIP][263] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][264] ([Intel XE#1201] / [Intel XE#2763] / [Intel XE#455]) +9 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-466/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a:
- shard-dg2-set2: [SKIP][265] ([Intel XE#2763]) -> [SKIP][266] ([Intel XE#1201] / [Intel XE#2763]) +8 other tests skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b:
- shard-dg2-set2: [SKIP][267] ([Intel XE#1201]) -> [SKIP][268] ([Intel XE#1201] / [Intel XE#2763]) +14 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-433/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: [SKIP][269] ([Intel XE#1201]) -> [SKIP][270] ([Intel XE#1201] / [Intel XE#870]) +3 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@kms_pm_backlight@fade-with-suspend.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-463/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
- shard-dg2-set2: [SKIP][271] ([Intel XE#1201]) -> [SKIP][272] ([Intel XE#1489]) +4 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-436/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][273] ([Intel XE#1489]) -> [SKIP][274] ([Intel XE#1201] / [Intel XE#1489]) +2 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-463/igt@kms_psr2_sf@fbc-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][275] ([Intel XE#1201]) -> [SKIP][276] ([Intel XE#1201] / [Intel XE#1489]) +13 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-434/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][277] ([Intel XE#2850]) -> [SKIP][278] ([Intel XE#1201] / [Intel XE#2850]) +11 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-466/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: [SKIP][279] ([Intel XE#1201]) -> [SKIP][280] ([Intel XE#1201] / [Intel XE#2850]) +58 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@kms_psr@psr-dpms.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-436/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr2-basic:
- shard-dg2-set2: [SKIP][281] ([Intel XE#1201]) -> [SKIP][282] ([Intel XE#2850]) +8 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-436/igt@kms_psr@psr2-basic.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@kms_psr@psr2-basic.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-set2: [SKIP][283] ([Intel XE#327]) -> [SKIP][284] ([Intel XE#1201] / [Intel XE#327]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_rotation_crc@bad-pixel-format.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-466/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: [SKIP][285] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][286] ([Intel XE#327]) +2 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_rotation_crc@bad-tiling.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][287] ([Intel XE#1201] / [Intel XE#1500]) -> [SKIP][288] ([Intel XE#1500])
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: [SKIP][289] ([Intel XE#1201] / [Intel XE#330]) -> [SKIP][290] ([Intel XE#330])
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flipline:
- shard-lnl: [FAIL][291] ([Intel XE#2443]) -> [FAIL][292] ([Intel XE#1522]) +1 other test fail
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-lnl-7/igt@kms_vrr@flipline.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-lnl-7/igt@kms_vrr@flipline.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2-set2: [SKIP][293] ([Intel XE#756]) -> [SKIP][294] ([Intel XE#1201] / [Intel XE#756])
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@kms_writeback@writeback-check-output.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-434/igt@kms_writeback@writeback-check-output.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: [SKIP][295] ([Intel XE#2849]) -> [SKIP][296] ([Intel XE#1201] / [Intel XE#2849])
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@sriov_basic@enable-vfs-autoprobe-off.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-434/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: [SKIP][297] ([Intel XE#1201]) -> [SKIP][298] ([Intel XE#1201] / [Intel XE#2849])
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-436/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: [SKIP][299] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) -> [SKIP][300] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-433/igt@xe_compute_preempt@compute-preempt.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm:
- shard-dg2-set2: [SKIP][301] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][302] ([Intel XE#288]) +2 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-imm.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind:
- shard-dg2-set2: [SKIP][303] ([Intel XE#288]) -> [SKIP][304] ([Intel XE#1201] / [Intel XE#288]) +2 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-466/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][305] -> [SKIP][306] ([Intel XE#1201]) +14 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-436/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_media_fill@media-fill:
- shard-dg2-set2: [SKIP][307] ([Intel XE#1201] / [Intel XE#560]) -> [SKIP][308] ([Intel XE#560])
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@xe_media_fill@media-fill.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@xe_media_fill@media-fill.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: [SKIP][309] ([Intel XE#512]) -> [SKIP][310] ([Intel XE#1201] / [Intel XE#512])
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_mmap@small-bar.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-434/igt@xe_mmap@small-bar.html
* igt@xe_oa@non-privileged-map-oa-buffer:
- shard-dg2-set2: [SKIP][311] ([Intel XE#1201]) -> [SKIP][312] ([Intel XE#2541]) +2 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@xe_oa@non-privileged-map-oa-buffer.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@xe_oa@non-privileged-map-oa-buffer.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-dg2-set2: [SKIP][313] ([Intel XE#2541]) -> [SKIP][314] ([Intel XE#1201] / [Intel XE#2541])
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_oa@oa-regs-whitelisted.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-463/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: [SKIP][315] ([Intel XE#1201]) -> [SKIP][316] ([Intel XE#1201] / [Intel XE#2541]) +23 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-464/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-434/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: [SKIP][317] ([Intel XE#1201]) -> [SKIP][318] ([Intel XE#1201] / [Intel XE#977])
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@xe_pat@pat-index-xe2.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-436/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xehpc:
- shard-dg2-set2: [SKIP][319] ([Intel XE#1201] / [Intel XE#2838]) -> [SKIP][320] ([Intel XE#2838])
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-466/igt@xe_pat@pat-index-xehpc.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][321] ([Intel XE#1201] / [Intel XE#979]) -> [SKIP][322] ([Intel XE#979])
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-432/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-mmap-system:
- shard-dg2-set2: [SKIP][323] ([Intel XE#366]) -> [SKIP][324] ([Intel XE#1201] / [Intel XE#366])
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-432/igt@xe_pm@d3cold-mmap-system.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-433/igt@xe_pm@d3cold-mmap-system.html
* igt@xe_wedged@basic-wedged:
- shard-dg2-set2: [DMESG-WARN][325] ([Intel XE#1760]) -> [SKIP][326] ([Intel XE#1130] / [Intel XE#1201])
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8032/shard-dg2-435/igt@xe_wedged@basic-wedged.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/shard-dg2-435/igt@xe_wedged@basic-wedged.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201
[Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
[Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#2141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2141
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2249]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2249
[Intel XE#2251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2251
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2310
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2425
[Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
[Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2690]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2690
[Intel XE#2723]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2723
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2791]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2791
[Intel XE#2838]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2838
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
Build changes
-------------
* IGT: IGT_8032 -> IGTPW_11809
* Linux: xe-1975-abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47 -> xe-1978-6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da
IGTPW_11809: 04e21d897aac85fdbb696e47c7abaa9e17eca79a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8032: 8032
xe-1975-abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47: abfe8cf977e1abd1f414b2a90d223cd4dd2f1f47
xe-1978-6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da: 6b498b1015e38b1b7dbd1c7e3ab0a9be5d48f4da
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11809/index.html
[-- Attachment #2: Type: text/html, Size: 111476 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-09-27 5:09 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-26 7:35 [PATCH i-g-t] lib/amdgpu: fix sdma linear copy command Jesse.zhang@amd.com
2024-09-26 11:23 ` ✓ Fi.CI.BAT: success for " Patchwork
2024-09-26 11:42 ` ✗ CI.xeBAT: failure " Patchwork
2024-09-26 14:26 ` ✗ Fi.CI.IGT: " Patchwork
2024-09-26 21:59 ` [PATCH i-g-t] " vitaly prosyak
2024-09-27 5:09 ` ✗ CI.xeFULL: failure for " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox