* [i-g-t 0/1] xe_exec_threads: wait for all submissions to complete
@ 2024-10-26 1:01 fei.yang
2024-10-26 1:01 ` [i-g-t 1/1] tests/intel/xe_exec_threads: " fei.yang
` (3 more replies)
0 siblings, 4 replies; 6+ messages in thread
From: fei.yang @ 2024-10-26 1:01 UTC (permalink / raw)
To: igt-dev; +Cc: Fei Yang
From: Fei Yang <fei.yang@intel.com>
In test_compute_mode, there is an one second sleep waiting for all
the submissions to complete, but that is not reliable especially
on pre-si platforms where the GPU could be a lot slower. Instead we
should wait for the ufence to make sure the GPU is inactive before
unbinding the BO.
Signed-off-by: Fei Yang <fei.yang@intel.com>
Fei Yang (1):
tests/intel/xe_exec_threads: wait for all submissions to complete
tests/intel/xe_exec_threads.c | 26 ++++++++++++++++++--------
1 file changed, 18 insertions(+), 8 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 6+ messages in thread* [i-g-t 1/1] tests/intel/xe_exec_threads: wait for all submissions to complete 2024-10-26 1:01 [i-g-t 0/1] xe_exec_threads: wait for all submissions to complete fei.yang @ 2024-10-26 1:01 ` fei.yang 2024-10-26 1:44 ` ✗ Fi.CI.BAT: failure for xe_exec_threads: " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 6+ messages in thread From: fei.yang @ 2024-10-26 1:01 UTC (permalink / raw) To: igt-dev; +Cc: Fei Yang From: Fei Yang <fei.yang@intel.com> In test_compute_mode, there is an one second sleep waiting for all the submissions to complete, but that is not reliable especially on pre-si platforms where the GPU could be a lot slower. Instead we should wait for the ufence to make sure the GPU is inactive before unbinding the BO. Signed-off-by: Fei Yang <fei.yang@intel.com> --- tests/intel/xe_exec_threads.c | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c index 413d6626b..b73d3df2b 100644 --- a/tests/intel/xe_exec_threads.c +++ b/tests/intel/xe_exec_threads.c @@ -340,7 +340,7 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr, xe_exec(fd, &exec); if (flags & REBIND && i && !(i & 0x1f)) { - for (j = i - 0x20; j <= i; ++j) + for (j = i - 0x20; j < i; ++j) xe_wait_ufence(fd, &data[j].exec_sync, USER_FENCE_VALUE, exec_queues[e], fence_timeout); @@ -370,7 +370,7 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr, * physical memory on next mmap call triggering * an invalidate. */ - for (j = i == 0x20 ? 0 : i - 0x1f; j <= i; ++j) + for (j = i - 0x20; j < i; ++j) xe_wait_ufence(fd, &data[j].exec_sync, USER_FENCE_VALUE, exec_queues[e], @@ -404,16 +404,26 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr, } } - j = flags & INVALIDATE ? - (flags & RACE ? n_execs / 2 + 1 : n_execs - 1) : 0; + j = 0; /* wait for all submissions to complete */ + if (flags & INVALIDATE) + /* + * For !RACE cases xe_wait_ufence has been called in above for-loop + * except the last batch of submissions (0x20 submissions in a batch). + * For RACE cases we will need to wait for all the submissions to + * complete here. + */ + j = (flags & RACE) ? 0 : (n_execs - 0x20); + else if (flags & REBIND) + /* + * For REBIND cases xe_wait_ufence has been called in above for-loop + * except the last batch of submissions (0x20 submissions in a batch). + */ + j = n_execs - 0x20; + for (i = j; i < n_execs; i++) xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE, exec_queues[i % n_exec_queues], fence_timeout); - /* Wait for all execs to complete */ - if (flags & INVALIDATE) - sleep(1); - sync[0].addr = to_user_pointer(&data[0].vm_sync); xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1); xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, 0, fence_timeout); -- 2.25.1 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✗ Fi.CI.BAT: failure for xe_exec_threads: wait for all submissions to complete 2024-10-26 1:01 [i-g-t 0/1] xe_exec_threads: wait for all submissions to complete fei.yang 2024-10-26 1:01 ` [i-g-t 1/1] tests/intel/xe_exec_threads: " fei.yang @ 2024-10-26 1:44 ` Patchwork 2024-10-26 1:47 ` ✗ CI.xeBAT: " Patchwork 2024-10-27 16:00 ` ✗ CI.xeFULL: " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-10-26 1:44 UTC (permalink / raw) To: fei.yang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4588 bytes --] == Series Details == Series: xe_exec_threads: wait for all submissions to complete URL : https://patchwork.freedesktop.org/series/140530/ State : failure == Summary == CI Bug Log - changes from IGT_8086 -> IGTPW_11989 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11989 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11989, 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_11989/index.html Participating hosts (46 -> 45) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11989: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@workarounds: - bat-twl-1: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/bat-twl-1/igt@i915_selftest@live@workarounds.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11989/bat-twl-1/igt@i915_selftest@live@workarounds.html Known issues ------------ Here are the changes found in IGTPW_11989 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-mtlp-8: [PASS][3] -> [ABORT][4] ([i915#12216]) +1 other test abort [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/bat-mtlp-8/igt@i915_selftest@live.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11989/bat-mtlp-8/igt@i915_selftest@live.html - bat-twl-1: [PASS][5] -> [INCOMPLETE][6] ([i915#12133]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/bat-twl-1/igt@i915_selftest@live.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11989/bat-twl-1/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_heartbeat: - bat-dg2-11: [PASS][7] -> [ABORT][8] ([i915#12133]) +1 other test abort [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/bat-dg2-11/igt@i915_selftest@live@gt_heartbeat.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11989/bat-dg2-11/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [PASS][9] -> [ABORT][10] ([i915#12216]) +1 other test abort [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11989/bat-mtlp-6/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@i915_selftest@live: - bat-adlp-6: [INCOMPLETE][11] ([i915#9413]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/bat-adlp-6/igt@i915_selftest@live.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11989/bat-adlp-6/igt@i915_selftest@live.html - bat-twl-2: [DMESG-WARN][13] ([i915#12133]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/bat-twl-2/igt@i915_selftest@live.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11989/bat-twl-2/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_mocs: - bat-twl-2: [DMESG-WARN][15] -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8086/bat-twl-2/igt@i915_selftest@live@gt_mocs.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11989/bat-twl-2/igt@i915_selftest@live@gt_mocs.html [i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133 [i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8086 -> IGTPW_11989 * Linux: CI_DRM_15600 -> CI_DRM_15601 CI-20190529: 20190529 CI_DRM_15600: 263b21a91964ddc599f4f85cf3511b0aafd2028e @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_15601: 3ec61d11c7429a65dcc3ac46b9e845f13891a306 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11989: c07422cb4076cb84a8e6844f4cb9ab21ae9971cd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8086: 18939acec2446c6644644186b090d16e366af8bc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11989/index.html [-- Attachment #2: Type: text/html, Size: 5589 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ CI.xeBAT: failure for xe_exec_threads: wait for all submissions to complete 2024-10-26 1:01 [i-g-t 0/1] xe_exec_threads: wait for all submissions to complete fei.yang 2024-10-26 1:01 ` [i-g-t 1/1] tests/intel/xe_exec_threads: " fei.yang 2024-10-26 1:44 ` ✗ Fi.CI.BAT: failure for xe_exec_threads: " Patchwork @ 2024-10-26 1:47 ` Patchwork 2024-10-27 16:00 ` ✗ CI.xeFULL: " Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-10-26 1:47 UTC (permalink / raw) To: fei.yang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 16073 bytes --] == Series Details == Series: xe_exec_threads: wait for all submissions to complete URL : https://patchwork.freedesktop.org/series/140530/ State : failure == Summary == CI Bug Log - changes from XEIGT_8086_BAT -> XEIGTPW_11989_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11989_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11989_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_11989_BAT: ### IGT changes ### #### Possible regressions #### * igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race: - bat-atsm-2: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-atsm-2/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-atsm-2/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html - bat-adlp-vf: [PASS][3] -> [FAIL][4] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-adlp-vf/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-adlp-vf/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html - bat-pvc-2: [PASS][5] -> [FAIL][6] +1 other test fail [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-pvc-2/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-pvc-2/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html - bat-bmg-2: [PASS][7] -> [FAIL][8] +1 other test fail [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-bmg-2/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-bmg-2/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html - bat-bmg-1: [PASS][9] -> [FAIL][10] +1 other test fail [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-bmg-1/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-bmg-1/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html * igt@xe_exec_threads@threads-mixed-userptr-invalidate: - bat-lnl-2: [PASS][11] -> [FAIL][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-lnl-2/igt@xe_exec_threads@threads-mixed-userptr-invalidate.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-lnl-2/igt@xe_exec_threads@threads-mixed-userptr-invalidate.html - bat-dg2-oem2: [PASS][13] -> [FAIL][14] +1 other test fail [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-userptr-invalidate.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-userptr-invalidate.html - bat-lnl-1: [PASS][15] -> [FAIL][16] [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-lnl-1/igt@xe_exec_threads@threads-mixed-userptr-invalidate.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-lnl-1/igt@xe_exec_threads@threads-mixed-userptr-invalidate.html Known issues ------------ Here are the changes found in XEIGTPW_11989_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-lnl-1: [PASS][17] -> [FAIL][18] ([Intel XE#886]) +1 other test fail [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-lnl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@xe_exec_fault_mode@twice-invalid-fault: - bat-pvc-2: [PASS][19] -> [DMESG-WARN][20] ([Intel XE#3230]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-pvc-2/igt@xe_exec_fault_mode@twice-invalid-fault.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-pvc-2/igt@xe_exec_fault_mode@twice-invalid-fault.html - bat-bmg-2: [PASS][21] -> [DMESG-WARN][22] ([Intel XE#3230]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-bmg-2/igt@xe_exec_fault_mode@twice-invalid-fault.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-bmg-2/igt@xe_exec_fault_mode@twice-invalid-fault.html - bat-lnl-2: [PASS][23] -> [DMESG-WARN][24] ([Intel XE#3230]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-lnl-2/igt@xe_exec_fault_mode@twice-invalid-fault.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-lnl-2/igt@xe_exec_fault_mode@twice-invalid-fault.html * igt@xe_exec_reset@cm-close-fd-no-exec: - bat-lnl-1: [PASS][25] -> [DMESG-WARN][26] ([Intel XE#3230]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-lnl-1/igt@xe_exec_reset@cm-close-fd-no-exec.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-lnl-1/igt@xe_exec_reset@cm-close-fd-no-exec.html - bat-dg2-oem2: [PASS][27] -> [DMESG-WARN][28] ([Intel XE#3230]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-dg2-oem2/igt@xe_exec_reset@cm-close-fd-no-exec.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-dg2-oem2/igt@xe_exec_reset@cm-close-fd-no-exec.html * igt@xe_exec_threads@threads-mixed-basic: - bat-atsm-2: [PASS][29] -> [DMESG-WARN][30] ([Intel XE#3230]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-atsm-2/igt@xe_exec_threads@threads-mixed-basic.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-atsm-2/igt@xe_exec_threads@threads-mixed-basic.html * igt@xe_exec_threads@threads-mixed-fd-basic: - bat-adlp-vf: [PASS][31] -> [DMESG-WARN][32] ([Intel XE#3230]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-adlp-vf/igt@xe_exec_threads@threads-mixed-fd-basic.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-adlp-vf/igt@xe_exec_threads@threads-mixed-fd-basic.html * igt@xe_exec_threads@threads-mixed-shared-vm-basic: - bat-bmg-1: [PASS][33] -> [DMESG-WARN][34] ([Intel XE#3230]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-bmg-1/igt@xe_exec_threads@threads-mixed-shared-vm-basic.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-bmg-1/igt@xe_exec_threads@threads-mixed-shared-vm-basic.html * igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race: - bat-lnl-1: [PASS][35] -> [FAIL][36] ([Intel XE#3001]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-lnl-1/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-lnl-1/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html - bat-lnl-2: [PASS][37] -> [FAIL][38] ([Intel XE#3001]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-lnl-2/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-lnl-2/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html * igt@xe_live_ktest@xe_bo: - bat-lnl-1: [PASS][39] -> [SKIP][40] ([Intel XE#1192]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-lnl-1/igt@xe_live_ktest@xe_bo.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-lnl-1/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - bat-lnl-2: NOTRUN -> [SKIP][41] ([Intel XE#2229]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-lnl-2/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit: - bat-adlp-7: [PASS][42] -> [INCOMPLETE][43] ([Intel XE#2874]) +1 other test incomplete [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - bat-bmg-2: NOTRUN -> [SKIP][44] ([Intel XE#2229]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html - bat-bmg-1: NOTRUN -> [SKIP][45] ([Intel XE#2229]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_live_ktest@xe_migrate: - bat-dg2-oem2: [PASS][46] -> [SKIP][47] ([Intel XE#1192]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - bat-atsm-2: NOTRUN -> [SKIP][48] ([Intel XE#2229]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-atsm-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html - bat-adlp-vf: NOTRUN -> [SKIP][49] ([Intel XE#2229]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-adlp-vf/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html - bat-pvc-2: NOTRUN -> [SKIP][50] ([Intel XE#2229]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-pvc-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html #### Possible fixes #### * igt@xe_exec_compute_mode@twice-preempt-fence-early: - bat-pvc-2: [DMESG-WARN][51] -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-pvc-2/igt@xe_exec_compute_mode@twice-preempt-fence-early.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-pvc-2/igt@xe_exec_compute_mode@twice-preempt-fence-early.html * igt@xe_exec_fault_mode@twice-invalid-fault: - bat-lnl-1: [DMESG-WARN][53] ([Intel XE#3230]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-lnl-1/igt@xe_exec_fault_mode@twice-invalid-fault.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-lnl-1/igt@xe_exec_fault_mode@twice-invalid-fault.html * igt@xe_exec_reset@cm-close-fd-no-exec: - bat-adlp-vf: [DMESG-WARN][55] ([Intel XE#3230]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-adlp-vf/igt@xe_exec_reset@cm-close-fd-no-exec.html [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-adlp-vf/igt@xe_exec_reset@cm-close-fd-no-exec.html - bat-bmg-2: [DMESG-WARN][57] ([Intel XE#3230]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-bmg-2/igt@xe_exec_reset@cm-close-fd-no-exec.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-bmg-2/igt@xe_exec_reset@cm-close-fd-no-exec.html - bat-bmg-1: [DMESG-WARN][59] ([Intel XE#3230]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-bmg-1/igt@xe_exec_reset@cm-close-fd-no-exec.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-bmg-1/igt@xe_exec_reset@cm-close-fd-no-exec.html - bat-lnl-2: [DMESG-WARN][61] ([Intel XE#3230]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-lnl-2/igt@xe_exec_reset@cm-close-fd-no-exec.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-lnl-2/igt@xe_exec_reset@cm-close-fd-no-exec.html - bat-atsm-2: [DMESG-WARN][63] ([Intel XE#3230]) -> [PASS][64] [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-atsm-2/igt@xe_exec_reset@cm-close-fd-no-exec.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-atsm-2/igt@xe_exec_reset@cm-close-fd-no-exec.html * igt@xe_exec_threads@threads-mixed-shared-vm-basic: - bat-dg2-oem2: [DMESG-WARN][65] ([Intel XE#3230]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-shared-vm-basic.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-shared-vm-basic.html * igt@xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][67] ([Intel XE#1192]) -> [PASS][68] +2 other tests pass [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html - bat-pvc-2: [SKIP][69] ([Intel XE#1192]) -> [PASS][70] +2 other tests pass [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-pvc-2/igt@xe_live_ktest@xe_bo.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-pvc-2/igt@xe_live_ktest@xe_bo.html * igt@xe_live_ktest@xe_dma_buf: - bat-bmg-2: [SKIP][71] ([Intel XE#1192]) -> [PASS][72] +2 other tests pass [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-bmg-2/igt@xe_live_ktest@xe_dma_buf.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-bmg-2/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_live_ktest@xe_migrate: - bat-bmg-1: [SKIP][73] ([Intel XE#1192]) -> [PASS][74] +2 other tests pass [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-bmg-1/igt@xe_live_ktest@xe_migrate.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-bmg-1/igt@xe_live_ktest@xe_migrate.html - bat-lnl-2: [SKIP][75] ([Intel XE#1192]) -> [PASS][76] +2 other tests pass [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-lnl-2/igt@xe_live_ktest@xe_migrate.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-lnl-2/igt@xe_live_ktest@xe_migrate.html - bat-atsm-2: [SKIP][77] ([Intel XE#1192]) -> [PASS][78] +2 other tests pass [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/bat-atsm-2/igt@xe_live_ktest@xe_migrate.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/bat-atsm-2/igt@xe_live_ktest@xe_migrate.html [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874 [Intel XE#3001]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3001 [Intel XE#3230]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3230 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 Build changes ------------- * IGT: IGT_8086 -> IGTPW_11989 * Linux: xe-2132-263b21a91964ddc599f4f85cf3511b0aafd2028e -> xe-2133-3ec61d11c7429a65dcc3ac46b9e845f13891a306 IGTPW_11989: c07422cb4076cb84a8e6844f4cb9ab21ae9971cd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8086: 18939acec2446c6644644186b090d16e366af8bc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2132-263b21a91964ddc599f4f85cf3511b0aafd2028e: 263b21a91964ddc599f4f85cf3511b0aafd2028e xe-2133-3ec61d11c7429a65dcc3ac46b9e845f13891a306: 3ec61d11c7429a65dcc3ac46b9e845f13891a306 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/index.html [-- Attachment #2: Type: text/html, Size: 19199 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ CI.xeFULL: failure for xe_exec_threads: wait for all submissions to complete 2024-10-26 1:01 [i-g-t 0/1] xe_exec_threads: wait for all submissions to complete fei.yang ` (2 preceding siblings ...) 2024-10-26 1:47 ` ✗ CI.xeBAT: " Patchwork @ 2024-10-27 16:00 ` Patchwork 3 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-10-27 16:00 UTC (permalink / raw) To: fei.yang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 103974 bytes --] == Series Details == Series: xe_exec_threads: wait for all submissions to complete URL : https://patchwork.freedesktop.org/series/140530/ State : failure == Summary == CI Bug Log - changes from XEIGT_8086_full -> XEIGTPW_11989_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11989_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11989_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_11989_full: ### IGT changes ### #### Possible regressions #### * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-bmg: [PASS][1] -> [SKIP][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-5/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@xe_drm_fdinfo@utilization-others-idle: - shard-bmg: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-2/igt@xe_drm_fdinfo@utilization-others-idle.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-8/igt@xe_drm_fdinfo@utilization-others-idle.html * igt@xe_exec_balancer@many-cm-parallel-basic: - shard-bmg: [PASS][5] -> [DMESG-WARN][6] +7 other tests dmesg-warn [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-1/igt@xe_exec_balancer@many-cm-parallel-basic.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-6/igt@xe_exec_balancer@many-cm-parallel-basic.html - shard-dg2-set2: NOTRUN -> [DMESG-WARN][7] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-466/igt@xe_exec_balancer@many-cm-parallel-basic.html * igt@xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate: - shard-dg2-set2: [PASS][8] -> [FAIL][9] +19 other tests fail [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-433/igt@xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate.html * igt@xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate-race: - shard-bmg: [PASS][10] -> [DMESG-FAIL][11] [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-3/igt@xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate-race.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-5/igt@xe_exec_threads@threads-bal-mixed-fd-userptr-invalidate-race.html * igt@xe_exec_threads@threads-bal-mixed-shared-vm-basic: - shard-dg2-set2: [PASS][12] -> [DMESG-WARN][13] +2 other tests dmesg-warn [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-433/igt@xe_exec_threads@threads-bal-mixed-shared-vm-basic.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-435/igt@xe_exec_threads@threads-bal-mixed-shared-vm-basic.html * igt@xe_exec_threads@threads-hang-shared-vm-rebind: - shard-lnl: [PASS][14] -> [DMESG-WARN][15] +4 other tests dmesg-warn [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-5/igt@xe_exec_threads@threads-hang-shared-vm-rebind.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-5/igt@xe_exec_threads@threads-hang-shared-vm-rebind.html * igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate: - shard-bmg: [PASS][16] -> [FAIL][17] +23 other tests fail [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-1/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-7/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate.html - shard-dg2-set2: NOTRUN -> [FAIL][18] [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-466/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate.html * igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate: - shard-lnl: [PASS][19] -> [FAIL][20] +13 other tests fail [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-4/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-5/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate.html #### Warnings #### * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs: - shard-bmg: [SKIP][21] ([Intel XE#2887]) -> [SKIP][22] [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html * igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate: - shard-dg2-set2: [SKIP][23] ([Intel XE#1130]) -> [FAIL][24] +1 other test fail [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-434/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate.html * igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race: - shard-bmg: [SKIP][25] ([Intel XE#1130]) -> [FAIL][26] +1 other test fail [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-4/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html Known issues ------------ Here are the changes found in XEIGTPW_11989_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@hotreplug-lateclose: - shard-dg2-set2: [PASS][27] -> [SKIP][28] ([Intel XE#1885]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-464/igt@core_hotunplug@hotreplug-lateclose.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@core_hotunplug@hotreplug-lateclose.html - shard-bmg: [PASS][29] -> [SKIP][30] ([Intel XE#1885]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-2/igt@core_hotunplug@hotreplug-lateclose.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@core_hotunplug@hotreplug-lateclose.html * igt@kms_addfb_basic@no-handle: - shard-bmg: [PASS][31] -> [SKIP][32] ([Intel XE#3007]) +11 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-4/igt@kms_addfb_basic@no-handle.html [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_addfb_basic@no-handle.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-dg2-set2: [PASS][33] -> [SKIP][34] ([Intel XE#2890]) +3 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-433/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-0: - shard-dg2-set2: [PASS][35] -> [DMESG-WARN][36] ([Intel XE#877]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-464/igt@kms_big_fb@linear-64bpp-rotate-0.html [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_big_fb@linear-64bpp-rotate-0.html * igt@kms_big_fb@x-tiled-32bpp-rotate-0: - shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-3/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_big_fb@x-tiled-32bpp-rotate-0.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-bmg: [PASS][39] -> [SKIP][40] ([Intel XE#829]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#1124]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#367]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-433/igt@kms_bw@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][43] ([Intel XE#787]) +41 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-436/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#2231]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][46] ([Intel XE#616]) +8 other tests fail [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][47] -> [INCOMPLETE][48] ([Intel XE#1195] / [Intel XE#1727]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [PASS][49] -> [INCOMPLETE][50] ([Intel XE#1195]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6: - shard-dg2-set2: [PASS][51] -> [INCOMPLETE][52] ([Intel XE#1195] / [Intel XE#2692]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-435/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-dp-4.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#373]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-464/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_content_protection@srm@pipe-a-dp-2: - shard-bmg: NOTRUN -> [DMESG-FAIL][55] ([Intel XE#3177]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_content_protection@srm@pipe-a-dp-2.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][56] ([Intel XE#1178]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-466/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_cursor_edge_walk@256x256-right-edge: - shard-dg2-set2: [PASS][57] -> [FAIL][58] ([Intel XE#581]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_cursor_edge_walk@256x256-right-edge.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-464/igt@kms_cursor_edge_walk@256x256-right-edge.html * igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-edp-1: - shard-lnl: [PASS][59] -> [FAIL][60] ([Intel XE#2577]) +1 other test fail [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-6/igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-edp-1.html [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-4/igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-edp-1.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-bmg: [PASS][61] -> [DMESG-WARN][62] ([Intel XE#877]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_fbcon_fbt@psr: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#776]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-434/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@dp-mst: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#1137]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-flip-vs-dpms: - shard-bmg: [PASS][65] -> [SKIP][66] ([Intel XE#3189]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_flip@2x-flip-vs-dpms.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-5/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3: - shard-bmg: [PASS][67] -> [FAIL][68] ([Intel XE#301]) +3 other tests fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][69] -> [FAIL][70] ([Intel XE#301]) +7 other tests fail [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@absolute-wf_vblank: - shard-dg2-set2: [PASS][71] -> [SKIP][72] ([Intel XE#2423] / [i915#2575]) +12 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-464/igt@kms_flip@absolute-wf_vblank.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_flip@absolute-wf_vblank.html * igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg2-set2: [PASS][73] -> [SKIP][74] ([Intel XE#3187]) +4 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-466/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-464/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@plain-flip-fb-recreate@c-edp1: - shard-lnl: [PASS][75] -> [FAIL][76] ([Intel XE#886]) +5 other tests fail [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-4/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-6/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#651]) +4 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#3187]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt: - shard-dg2-set2: [PASS][79] -> [SKIP][80] ([Intel XE#2351] / [Intel XE#2890]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#2890]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#653]) +6 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2-set2: [PASS][83] -> [FAIL][84] ([Intel XE#361]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c: - shard-bmg: NOTRUN -> [DMESG-WARN][85] ([Intel XE#3177]) +3 other tests dmesg-warn [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75@pipe-c.html * igt@kms_pm_backlight@fade-with-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#870]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-435/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][87] -> [FAIL][88] ([Intel XE#718]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-6/igt@kms_pm_dc@dc5-dpms.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [PASS][89] -> [FAIL][90] ([Intel XE#1430]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@basic-rte: - shard-bmg: [PASS][91] -> [SKIP][92] ([Intel XE#2446]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-6/igt@kms_pm_rpm@basic-rte.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_pm_rpm@basic-rte.html - shard-dg2-set2: [PASS][93] -> [SKIP][94] ([Intel XE#2446]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_pm_rpm@basic-rte.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_pm_rpm@basic-rte.html * igt@kms_pm_rpm@universal-planes: - shard-lnl: [PASS][95] -> [DMESG-WARN][96] ([Intel XE#2042]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-3/igt@kms_pm_rpm@universal-planes.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-8/igt@kms_pm_rpm@universal-planes.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#1489]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-436/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-434/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@psr2-cursor-blt@edp-1: - shard-lnl: [PASS][99] -> [FAIL][100] ([Intel XE#2948]) +3 other tests fail [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-5/igt@kms_psr@psr2-cursor-blt@edp-1.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-5/igt@kms_psr@psr2-cursor-blt@edp-1.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-dg2-set2: [PASS][101] -> [SKIP][102] ([Intel XE#829]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-435/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-464/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#327]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-433/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_universal_plane@cursor-fb-leak: - shard-lnl: [PASS][104] -> [FAIL][105] ([Intel XE#899]) +1 other test fail [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-3/igt@kms_universal_plane@cursor-fb-leak.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-2/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [PASS][106] -> [FAIL][107] ([Intel XE#2159]) +1 other test fail [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@kms_vrr@flip-basic-fastset: - shard-lnl: [PASS][108] -> [FAIL][109] ([Intel XE#2443]) +1 other test fail [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-3/igt@kms_vrr@flip-basic-fastset.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_writeback@writeback-check-output: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#756]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-433/igt@kms_writeback@writeback-check-output.html * igt@xe_compute@ccs-mode-basic: - shard-dg2-set2: NOTRUN -> [FAIL][111] ([Intel XE#1050]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@xe_compute@ccs-mode-basic.html * igt@xe_compute_preempt@compute-preempt@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][112] ([Intel XE#1280] / [Intel XE#455]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-435/igt@xe_compute_preempt@compute-preempt@engine-drm_xe_engine_class_compute.html * igt@xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#1123]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-435/igt@xe_copy_basic@mem-copy-linear-0x3fff.html * igt@xe_eudebug_online@interrupt-other-debuggable: - shard-dg2-set2: NOTRUN -> [SKIP][114] ([Intel XE#2905]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@xe_eudebug_online@interrupt-other-debuggable.html * igt@xe_evict@evict-beng-large-multi-vm-cm: - shard-dg2-set2: [PASS][115] -> [FAIL][116] ([Intel XE#1600]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-433/igt@xe_evict@evict-beng-large-multi-vm-cm.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-434/igt@xe_evict@evict-beng-large-multi-vm-cm.html * igt@xe_exec_balancer@once-parallel-rebind: - shard-dg2-set2: [PASS][117] -> [SKIP][118] ([Intel XE#1130]) +22 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-433/igt@xe_exec_balancer@once-parallel-rebind.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@xe_exec_balancer@once-parallel-rebind.html * igt@xe_exec_basic@many-bindexecqueue-rebind: - shard-bmg: [PASS][119] -> [SKIP][120] ([Intel XE#1130]) +27 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-4/igt@xe_exec_basic@many-bindexecqueue-rebind.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@xe_exec_basic@many-bindexecqueue-rebind.html * igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-race-imm: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#1130]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@xe_exec_fault_mode@once-bindexecqueue-userptr-invalidate-race-imm.html * igt@xe_exec_fault_mode@twice-invalid-fault: - shard-lnl: [PASS][122] -> [DMESG-WARN][123] ([Intel XE#3230]) +1 other test dmesg-warn [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-4/igt@xe_exec_fault_mode@twice-invalid-fault.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-5/igt@xe_exec_fault_mode@twice-invalid-fault.html * igt@xe_exec_fault_mode@twice-invalid-userptr-fault: - shard-bmg: [PASS][124] -> [DMESG-WARN][125] ([Intel XE#3230]) +1 other test dmesg-warn [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-3/igt@xe_exec_fault_mode@twice-invalid-userptr-fault.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@xe_exec_fault_mode@twice-invalid-userptr-fault.html * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][126] ([Intel XE#288]) +4 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-464/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2360]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt@xe_exec_reset@parallel-gt-reset: - shard-bmg: [PASS][128] -> [INCOMPLETE][129] ([Intel XE#2105]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-2/igt@xe_exec_reset@parallel-gt-reset.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-6/igt@xe_exec_reset@parallel-gt-reset.html * igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate-race: - shard-lnl: [PASS][130] -> [FAIL][131] ([Intel XE#3262]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-7/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate-race.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-7/igt@xe_exec_threads@threads-bal-mixed-shared-vm-userptr-invalidate-race.html * igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate-race: - shard-lnl: [PASS][132] -> [FAIL][133] ([Intel XE#3179]) +3 other tests fail [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-6/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate-race.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-2/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate-race.html * igt@xe_exec_threads@threads-hang-shared-vm-rebind: - shard-dg2-set2: [PASS][134] -> [DMESG-WARN][135] ([Intel XE#358]) +3 other tests dmesg-warn [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-466/igt@xe_exec_threads@threads-hang-shared-vm-rebind.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-433/igt@xe_exec_threads@threads-hang-shared-vm-rebind.html * igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate-race: - shard-lnl: [PASS][136] -> [FAIL][137] ([Intel XE#3179] / [Intel XE#3262]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-6/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate-race.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-3/igt@xe_exec_threads@threads-mixed-fd-userptr-invalidate-race.html * igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race: - shard-lnl: [PASS][138] -> [FAIL][139] ([Intel XE#3001]) +1 other test fail [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-5/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-8/igt@xe_exec_threads@threads-mixed-shared-vm-userptr-invalidate-race.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#2229]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-435/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#2229]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-5/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_module_load@reload-no-display: - shard-bmg: [PASS][142] -> [FAIL][143] ([Intel XE#2136]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@xe_module_load@reload-no-display.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-5/igt@xe_module_load@reload-no-display.html - shard-dg2-set2: [PASS][144] -> [FAIL][145] ([Intel XE#2136]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_module_load@reload-no-display.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-464/igt@xe_module_load@reload-no-display.html * igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][146] ([Intel XE#1173]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-466/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html * igt@xe_pm@d3hot-basic-exec: - shard-lnl: [PASS][147] -> [DMESG-WARN][148] ([Intel XE#3184]) +1 other test dmesg-warn [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-4/igt@xe_pm@d3hot-basic-exec.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-7/igt@xe_pm@d3hot-basic-exec.html * igt@xe_pm_residency@toggle-gt-c6: - shard-lnl: [PASS][149] -> [FAIL][150] ([Intel XE#958]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-1/igt@xe_pm_residency@toggle-gt-c6.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-3/igt@xe_pm_residency@toggle-gt-c6.html * igt@xe_query@multigpu-query-config: - shard-dg2-set2: NOTRUN -> [SKIP][151] ([Intel XE#944]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-436/igt@xe_query@multigpu-query-config.html #### Possible fixes #### * igt@kms_atomic_transition@modeset-transition-nonblocking: - shard-lnl: [FAIL][152] ([Intel XE#1701]) -> [PASS][153] +1 other test pass [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-8/igt@kms_atomic_transition@modeset-transition-nonblocking.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-7/igt@kms_atomic_transition@modeset-transition-nonblocking.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][154] ([Intel XE#1426]) -> [PASS][155] +1 other test pass [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-434/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-433/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-6.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0: - shard-bmg: [SKIP][156] ([Intel XE#2231]) -> [PASS][157] [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [DMESG-WARN][158] ([Intel XE#877]) -> [PASS][159] [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size: - shard-lnl: [FAIL][160] ([Intel XE#1541]) -> [PASS][161] [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-5/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-2/igt@kms_cursor_legacy@short-flip-after-cursor-atomic-transitions-varying-size.html * igt@kms_fb_coherency@memset-crc: - shard-dg2-set2: [SKIP][162] ([Intel XE#2351] / [Intel XE#2890]) -> [PASS][163] [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_fb_coherency@memset-crc.html [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-466/igt@kms_fb_coherency@memset-crc.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: [FAIL][164] ([Intel XE#301]) -> [PASS][165] +5 other tests pass [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@blocking-wf_vblank: - shard-lnl: [FAIL][166] ([Intel XE#886]) -> [PASS][167] +3 other tests pass [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-2/igt@kms_flip@blocking-wf_vblank.html [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-5/igt@kms_flip@blocking-wf_vblank.html * igt@kms_flip@dpms-vs-vblank-race: - shard-lnl: [FAIL][168] ([Intel XE#3097]) -> [PASS][169] [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-6/igt@kms_flip@dpms-vs-vblank-race.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-8/igt@kms_flip@dpms-vs-vblank-race.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4: - shard-dg2-set2: [FAIL][170] ([Intel XE#301]) -> [PASS][171] +4 other tests pass [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp4.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6: - shard-dg2-set2: [FAIL][172] ([Intel XE#3267]) -> [PASS][173] [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a6.html * igt@kms_lease@lease-invalid-connector: - shard-dg2-set2: [SKIP][174] ([Intel XE#2423] / [i915#2575]) -> [PASS][175] +16 other tests pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_lease@lease-invalid-connector.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-464/igt@kms_lease@lease-invalid-connector.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][176] ([Intel XE#361]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-433/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@kms_pm_dc@dc5-dpms-negative: - shard-bmg: [SKIP][178] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][179] +5 other tests pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_pm_dc@dc5-dpms-negative.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-4/igt@kms_pm_dc@dc5-dpms-negative.html - shard-dg2-set2: [SKIP][180] ([Intel XE#2890]) -> [PASS][181] +6 other tests pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_pm_dc@dc5-dpms-negative.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-435/igt@kms_pm_dc@dc5-dpms-negative.html * igt@kms_pm_rpm@universal-planes-dpms: - shard-lnl: [DMESG-WARN][182] ([Intel XE#2042]) -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-5/igt@kms_pm_rpm@universal-planes-dpms.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-6/igt@kms_pm_rpm@universal-planes-dpms.html * igt@kms_pm_rpm@universal-planes-dpms@plane-77: - shard-lnl: [DMESG-WARN][184] -> [PASS][185] +2 other tests pass [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-5/igt@kms_pm_rpm@universal-planes-dpms@plane-77.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-6/igt@kms_pm_rpm@universal-planes-dpms@plane-77.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-lnl: [FAIL][186] ([Intel XE#2948]) -> [PASS][187] +1 other test pass [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-3/igt@kms_psr@fbc-psr2-cursor-plane-move.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-3/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_sequence@get-busy: - shard-bmg: [SKIP][188] ([Intel XE#3007]) -> [PASS][189] +15 other tests pass [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_sequence@get-busy.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-2/igt@kms_sequence@get-busy.html * igt@kms_setmode@basic@pipe-b-edp-1: - shard-lnl: [FAIL][190] ([Intel XE#2883]) -> [PASS][191] +2 other tests pass [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-3/igt@kms_setmode@basic@pipe-b-edp-1.html * igt@kms_vrr@max-min: - shard-lnl: [FAIL][192] ([Intel XE#2443]) -> [PASS][193] +1 other test pass [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-5/igt@kms_vrr@max-min.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-4/igt@kms_vrr@max-min.html * igt@testdisplay: - shard-dg2-set2: [SKIP][194] ([Intel XE#2423]) -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@testdisplay.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-466/igt@testdisplay.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][196] ([Intel XE#1473]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_evict@evict-beng-mixed-many-threads-large.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-beng-mixed-many-threads-small: - shard-dg2-set2: [TIMEOUT][198] ([Intel XE#1473] / [Intel XE#402]) -> [PASS][199] [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-434/igt@xe_evict@evict-beng-mixed-many-threads-small.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-464/igt@xe_evict@evict-beng-mixed-many-threads-small.html * igt@xe_evict@evict-threads-large: - shard-bmg: [INCOMPLETE][200] ([Intel XE#1473]) -> [PASS][201] [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-5/igt@xe_evict@evict-threads-large.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-6/igt@xe_evict@evict-threads-large.html * igt@xe_exec_compute_mode@many-bindexecqueue-userptr: - shard-dg2-set2: [DMESG-WARN][202] -> [PASS][203] +2 other tests pass [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-434/igt@xe_exec_compute_mode@many-bindexecqueue-userptr.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-433/igt@xe_exec_compute_mode@many-bindexecqueue-userptr.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race: - shard-lnl: [FAIL][204] -> [PASS][205] +2 other tests pass [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-5/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-2/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race: - shard-lnl: [FAIL][206] ([Intel XE#3160]) -> [PASS][207] +1 other test pass [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-6/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-3/igt@xe_exec_fault_mode@many-execqueues-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_reset@parallel-close-fd: - shard-bmg: [FAIL][208] ([Intel XE#1081]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-7/igt@xe_exec_reset@parallel-close-fd.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-1/igt@xe_exec_reset@parallel-close-fd.html - shard-dg2-set2: [FAIL][210] ([Intel XE#1081]) -> [PASS][211] [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-435/igt@xe_exec_reset@parallel-close-fd.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@xe_exec_reset@parallel-close-fd.html * igt@xe_exec_threads@threads-hang-fd-userptr-rebind: - shard-dg2-set2: [DMESG-WARN][212] ([Intel XE#358]) -> [PASS][213] +1 other test pass [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-435/igt@xe_exec_threads@threads-hang-fd-userptr-rebind.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-433/igt@xe_exec_threads@threads-hang-fd-userptr-rebind.html * igt@xe_exec_threads@threads-hang-rebind: - shard-bmg: [DMESG-WARN][214] -> [PASS][215] +4 other tests pass [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@xe_exec_threads@threads-hang-rebind.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-7/igt@xe_exec_threads@threads-hang-rebind.html * igt@xe_exec_threads@threads-mixed-fd-basic: - shard-bmg: [DMESG-WARN][216] ([Intel XE#3230]) -> [PASS][217] +1 other test pass [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-4/igt@xe_exec_threads@threads-mixed-fd-basic.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-5/igt@xe_exec_threads@threads-mixed-fd-basic.html * igt@xe_intel_bb@lot-of-buffers: - shard-bmg: [SKIP][218] ([Intel XE#1130]) -> [PASS][219] +25 other tests pass [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@xe_intel_bb@lot-of-buffers.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-8/igt@xe_intel_bb@lot-of-buffers.html - shard-dg2-set2: [SKIP][220] ([Intel XE#1130]) -> [PASS][221] +16 other tests pass [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_intel_bb@lot-of-buffers.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-436/igt@xe_intel_bb@lot-of-buffers.html * igt@xe_live_ktest@xe_migrate: - shard-dg2-set2: [SKIP][222] ([Intel XE#1192]) -> [PASS][223] [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-433/igt@xe_live_ktest@xe_migrate.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-435/igt@xe_live_ktest@xe_migrate.html - shard-lnl: [SKIP][224] ([Intel XE#1192]) -> [PASS][225] [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-5/igt@xe_live_ktest@xe_migrate.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-5/igt@xe_live_ktest@xe_migrate.html * igt@xe_pm@d3hot-multiple-execs: - shard-lnl: [DMESG-WARN][226] ([Intel XE#3184]) -> [PASS][227] [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-4/igt@xe_pm@d3hot-multiple-execs.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-3/igt@xe_pm@d3hot-multiple-execs.html #### Warnings #### * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-bmg: [SKIP][228] ([Intel XE#2231]) -> [SKIP][229] ([Intel XE#2327]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-8/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html - shard-dg2-set2: [SKIP][230] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][231] ([Intel XE#316]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-464/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-16bpp-rotate-270: - shard-dg2-set2: [SKIP][232] ([Intel XE#1124]) -> [SKIP][233] ([Intel XE#2351] / [Intel XE#2890]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-435/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_big_fb@y-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-16bpp-rotate-90: - shard-dg2-set2: [SKIP][234] ([Intel XE#1124]) -> [SKIP][235] ([Intel XE#829]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-464/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html - shard-bmg: [SKIP][236] ([Intel XE#1124]) -> [SKIP][237] ([Intel XE#829]) [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-5/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-bmg: [SKIP][238] ([Intel XE#1124]) -> [SKIP][239] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-4/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html - shard-dg2-set2: [SKIP][240] ([Intel XE#1124]) -> [SKIP][241] ([Intel XE#2890]) [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-466/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg2-set2: [SKIP][242] ([Intel XE#2890]) -> [SKIP][243] ([Intel XE#1124]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb: - shard-bmg: [SKIP][244] ([Intel XE#2328]) -> [SKIP][245] ([Intel XE#2231]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb.html - shard-dg2-set2: [SKIP][246] ([Intel XE#619]) -> [SKIP][247] ([Intel XE#2351] / [Intel XE#2890]) [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: [SKIP][248] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][249] ([Intel XE#1124]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-dg2-set2: [SKIP][250] ([Intel XE#367]) -> [SKIP][251] ([Intel XE#2423] / [i915#2575]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: [SKIP][252] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][253] ([Intel XE#3189]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-3/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html - shard-dg2-set2: [SKIP][254] ([Intel XE#2191]) -> [SKIP][255] ([Intel XE#3187]) [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-433/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@linear-tiling-3-displays-1920x1080p: - shard-bmg: [SKIP][256] ([Intel XE#367]) -> [SKIP][257] ([Intel XE#3007]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-7/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs: - shard-bmg: [SKIP][258] ([Intel XE#2231]) -> [SKIP][259] ([Intel XE#2887]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][260] ([Intel XE#2907]) -> [SKIP][261] ([Intel XE#829]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-464/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-dg2-set2: [SKIP][262] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][263] ([Intel XE#2351] / [Intel XE#2890]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-433/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs: - shard-bmg: [SKIP][264] ([Intel XE#2887]) -> [SKIP][265] ([Intel XE#2231]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs: - shard-bmg: [SKIP][266] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][267] ([Intel XE#2887]) [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html - shard-dg2-set2: [SKIP][268] ([Intel XE#2890]) -> [SKIP][269] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: [SKIP][270] ([Intel XE#2907]) -> [SKIP][271] ([Intel XE#2890]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs: - shard-dg2-set2: [SKIP][272] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][273] ([Intel XE#829]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][274] ([Intel XE#1195] / [Intel XE#1727]) -> [INCOMPLETE][275] ([Intel XE#1195] / [Intel XE#2692]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_chamelium_audio@dp-audio: - shard-dg2-set2: [SKIP][276] ([Intel XE#373]) -> [SKIP][277] ([Intel XE#3187]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-466/igt@kms_chamelium_audio@dp-audio.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-464/igt@kms_chamelium_audio@dp-audio.html - shard-bmg: [SKIP][278] ([Intel XE#2252]) -> [SKIP][279] ([Intel XE#3108] / [Intel XE#3189]) [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-3/igt@kms_chamelium_audio@dp-audio.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-5/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-bmg: [SKIP][280] ([Intel XE#3007]) -> [SKIP][281] ([Intel XE#2325]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_chamelium_color@ctm-green-to-red.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-5/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: [SKIP][282] ([Intel XE#2423] / [i915#2575]) -> [SKIP][283] ([Intel XE#306]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_chamelium_color@gamma.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-436/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_hpd@dp-hpd: - shard-bmg: [SKIP][284] ([Intel XE#3007]) -> [SKIP][285] ([Intel XE#2252]) [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_chamelium_hpd@dp-hpd.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_chamelium_hpd@dp-hpd.html - shard-dg2-set2: [SKIP][286] ([Intel XE#2423] / [i915#2575]) -> [SKIP][287] ([Intel XE#373]) [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_chamelium_hpd@dp-hpd.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-436/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@dp-hpd-after-hibernate: - shard-bmg: [SKIP][288] ([Intel XE#2252]) -> [SKIP][289] ([Intel XE#3007]) +2 other tests skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-5/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html - shard-dg2-set2: [SKIP][290] ([Intel XE#373]) -> [SKIP][291] ([Intel XE#2423] / [i915#2575]) +2 other tests skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-434/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_chamelium_hpd@dp-hpd-after-hibernate.html * igt@kms_content_protection@dp-mst-type-1: - shard-bmg: [SKIP][292] ([Intel XE#2390]) -> [SKIP][293] ([Intel XE#3007]) [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-3/igt@kms_content_protection@dp-mst-type-1.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_content_protection@dp-mst-type-1.html - shard-dg2-set2: [SKIP][294] ([Intel XE#307]) -> [SKIP][295] ([Intel XE#2423] / [i915#2575]) [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-435/igt@kms_content_protection@dp-mst-type-1.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@srm: - shard-bmg: [SKIP][296] ([Intel XE#3007]) -> [DMESG-FAIL][297] ([Intel XE#3177]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_content_protection@srm.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_content_protection@srm.html - shard-dg2-set2: [SKIP][298] ([Intel XE#2423] / [i915#2575]) -> [FAIL][299] ([Intel XE#1178]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_content_protection@srm.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-466/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: [SKIP][300] ([Intel XE#2320]) -> [SKIP][301] ([Intel XE#3189]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-128x42.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-random-64x21: - shard-bmg: [SKIP][302] ([Intel XE#3007]) -> [SKIP][303] ([Intel XE#2320]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_cursor_crc@cursor-random-64x21.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-4/igt@kms_cursor_crc@cursor-random-64x21.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-dg2-set2: [SKIP][304] ([Intel XE#455]) -> [SKIP][305] ([Intel XE#2423] / [i915#2575]) [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-466/igt@kms_cursor_crc@cursor-random-max-size.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_cursor_crc@cursor-random-max-size.html - shard-bmg: [SKIP][306] ([Intel XE#2320]) -> [SKIP][307] ([Intel XE#3007]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-6/igt@kms_cursor_crc@cursor-random-max-size.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg2-set2: [SKIP][308] ([Intel XE#2423] / [i915#2575]) -> [SKIP][309] ([Intel XE#308]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-512x170.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-512x170.html - shard-bmg: [SKIP][310] ([Intel XE#3007]) -> [SKIP][311] ([Intel XE#2321]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-512x170.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: [SKIP][312] ([Intel XE#323]) -> [SKIP][313] ([Intel XE#2423] / [i915#2575]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-bmg: [SKIP][314] ([Intel XE#2286]) -> [SKIP][315] ([Intel XE#3007]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [DMESG-WARN][316] ([Intel XE#3177]) -> [SKIP][317] ([Intel XE#3007]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2-set2: [FAIL][318] -> [SKIP][319] ([Intel XE#3187]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-435/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-464/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@bo-too-big-interruptible@a-edp1: - shard-lnl: [INCOMPLETE][320] ([Intel XE#1504]) -> [TIMEOUT][321] ([Intel XE#1504]) +1 other test timeout [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-5/igt@kms_flip@bo-too-big-interruptible@a-edp1.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-5/igt@kms_flip@bo-too-big-interruptible@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][322] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][323] ([Intel XE#2231] / [Intel XE#2890]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: [SKIP][324] ([Intel XE#2380]) -> [SKIP][325] ([Intel XE#2231]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][326] ([Intel XE#651]) -> [SKIP][327] ([Intel XE#2890]) +3 other tests skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][328] ([Intel XE#2311]) -> [SKIP][329] ([Intel XE#3189]) +3 other tests skip [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html - shard-dg2-set2: [SKIP][330] ([Intel XE#651]) -> [SKIP][331] ([Intel XE#3187]) +2 other tests skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt: - shard-bmg: [SKIP][332] ([Intel XE#2231]) -> [SKIP][333] ([Intel XE#2311]) +1 other test skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html - shard-dg2-set2: [SKIP][334] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][335] ([Intel XE#651]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-plflip-blt: - shard-bmg: [SKIP][336] ([Intel XE#2311]) -> [SKIP][337] ([Intel XE#2231]) +1 other test skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-plflip-blt.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: [SKIP][338] ([Intel XE#2311]) -> [SKIP][339] ([Intel XE#2231] / [Intel XE#2890]) +5 other tests skip [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][340] ([Intel XE#2231] / [Intel XE#2890]) -> [FAIL][341] ([Intel XE#2333]) [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt: - shard-bmg: [FAIL][342] ([Intel XE#2333]) -> [SKIP][343] ([Intel XE#2231]) +1 other test skip [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][344] ([Intel XE#651]) -> [SKIP][345] ([Intel XE#2351] / [Intel XE#2890]) +3 other tests skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary: - shard-dg2-set2: [SKIP][346] ([Intel XE#2890]) -> [SKIP][347] ([Intel XE#651]) +2 other tests skip [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary.html - shard-bmg: [SKIP][348] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][349] ([Intel XE#2311]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][350] ([Intel XE#2313]) -> [SKIP][351] ([Intel XE#2231]) +2 other tests skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff: - shard-bmg: [SKIP][352] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][353] ([Intel XE#2313]) +3 other tests skip [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html - shard-dg2-set2: [SKIP][354] ([Intel XE#2890]) -> [SKIP][355] ([Intel XE#653]) +2 other tests skip [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][356] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][357] ([Intel XE#3189]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html - shard-dg2-set2: [SKIP][358] ([Intel XE#2890]) -> [SKIP][359] ([Intel XE#3187]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][360] ([Intel XE#2231]) -> [SKIP][361] ([Intel XE#2313]) [360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][362] ([Intel XE#2313]) -> [SKIP][363] ([Intel XE#3189]) +1 other test skip [362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt: - shard-bmg: [SKIP][364] ([Intel XE#2313]) -> [SKIP][365] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip [364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: - shard-dg2-set2: [SKIP][366] ([Intel XE#653]) -> [SKIP][367] ([Intel XE#2890]) +2 other tests skip [366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render: - shard-dg2-set2: [SKIP][368] ([Intel XE#653]) -> [SKIP][369] ([Intel XE#3187]) [368]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: [SKIP][370] ([Intel XE#653]) -> [SKIP][371] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-bmg: [SKIP][372] ([Intel XE#2763]) -> [SKIP][373] ([Intel XE#3007]) [372]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-dg2-set2: [SKIP][374] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][375] ([Intel XE#2423] / [i915#2575]) [374]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-bmg: [DMESG-WARN][376] ([Intel XE#2566] / [Intel XE#3177]) -> [SKIP][377] ([Intel XE#3007]) [376]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75: - shard-bmg: [SKIP][378] ([Intel XE#3007]) -> [DMESG-WARN][379] ([Intel XE#2566] / [Intel XE#3177]) [378]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][380] ([Intel XE#1489]) -> [SKIP][381] ([Intel XE#2231]) +1 other test skip [380]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html - shard-dg2-set2: [SKIP][382] ([Intel XE#1489]) -> [SKIP][383] ([Intel XE#2890]) +1 other test skip [382]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][384] ([Intel XE#2231]) -> [SKIP][385] ([Intel XE#1489]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html - shard-dg2-set2: [SKIP][386] ([Intel XE#2890]) -> [SKIP][387] ([Intel XE#1489]) [386]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-435/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: [SKIP][388] ([Intel XE#2387]) -> [SKIP][389] ([Intel XE#2231] / [Intel XE#2890]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg2-set2: [SKIP][390] ([Intel XE#1122]) -> [SKIP][391] ([Intel XE#2890]) [390]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_psr2_su@frontbuffer-xrgb8888.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr@fbc-pr-sprite-render: - shard-dg2-set2: [SKIP][392] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][393] ([Intel XE#2351] / [Intel XE#2890]) [392]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-434/igt@kms_psr@fbc-pr-sprite-render.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_psr@fbc-pr-sprite-render.html - shard-bmg: [SKIP][394] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][395] ([Intel XE#2231] / [Intel XE#2890]) [394]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-5/igt@kms_psr@fbc-pr-sprite-render.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_psr@fbc-psr-no-drrs: - shard-dg2-set2: [SKIP][396] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][397] ([Intel XE#2850] / [Intel XE#929]) [396]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_psr@fbc-psr-no-drrs.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-433/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr-primary-blt: - shard-bmg: [SKIP][398] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][399] ([Intel XE#2231]) [398]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-1/igt@kms_psr@fbc-psr-primary-blt.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_psr@fbc-psr-primary-blt.html - shard-dg2-set2: [SKIP][400] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][401] ([Intel XE#2890]) [400]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-435/igt@kms_psr@fbc-psr-primary-blt.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_psr@fbc-psr-primary-blt.html * igt@kms_psr@pr-sprite-blt: - shard-dg2-set2: [SKIP][402] ([Intel XE#2890]) -> [SKIP][403] ([Intel XE#2850] / [Intel XE#929]) [402]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_psr@pr-sprite-blt.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-435/igt@kms_psr@pr-sprite-blt.html - shard-bmg: [SKIP][404] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][405] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip [404]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_psr@pr-sprite-blt.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-4/igt@kms_psr@pr-sprite-blt.html * igt@kms_psr@psr-cursor-render: - shard-bmg: [SKIP][406] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][407] ([Intel XE#3189]) [406]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-5/igt@kms_psr@psr-cursor-render.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-5/igt@kms_psr@psr-cursor-render.html - shard-dg2-set2: [SKIP][408] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][409] ([Intel XE#3187]) [408]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-435/igt@kms_psr@psr-cursor-render.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-464/igt@kms_psr@psr-cursor-render.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2-set2: [SKIP][410] ([Intel XE#327]) -> [SKIP][411] ([Intel XE#2423] / [i915#2575]) [410]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-435/igt@kms_rotation_crc@sprite-rotation-270.html [411]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-270.html - shard-bmg: [SKIP][412] ([Intel XE#2329]) -> [SKIP][413] ([Intel XE#3007]) [412]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-1/igt@kms_rotation_crc@sprite-rotation-270.html [413]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-bmg: [SKIP][414] ([Intel XE#3007]) -> [SKIP][415] ([Intel XE#756]) [414]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html [415]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html - shard-dg2-set2: [SKIP][416] ([Intel XE#2423] / [i915#2575]) -> [SKIP][417] ([Intel XE#756]) [416]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@kms_writeback@writeback-check-output-xrgb2101010.html [417]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-dg2-set2: [SKIP][418] ([Intel XE#756]) -> [SKIP][419] ([Intel XE#2423] / [i915#2575]) [418]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-434/igt@kms_writeback@writeback-fb-id.html [419]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@kms_writeback@writeback-fb-id.html - shard-bmg: [SKIP][420] ([Intel XE#756]) -> [SKIP][421] ([Intel XE#3007]) [420]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-5/igt@kms_writeback@writeback-fb-id.html [421]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@kms_writeback@writeback-fb-id.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: [SKIP][422] ([Intel XE#1130]) -> [SKIP][423] ([Intel XE#1280] / [Intel XE#455]) [422]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_compute_preempt@compute-preempt.html [423]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-435/igt@xe_compute_preempt@compute-preempt.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][424] ([Intel XE#1130]) -> [SKIP][425] ([Intel XE#1126]) [424]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0xfd.html [425]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-433/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][426] ([Intel XE#2905]) -> [SKIP][427] ([Intel XE#1130]) +2 other tests skip [426]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-1/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html [427]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_eudebug@basic-vm-bind-vm-destroy: - shard-bmg: [SKIP][428] ([Intel XE#1130]) -> [SKIP][429] ([Intel XE#2905]) [428]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@xe_eudebug@basic-vm-bind-vm-destroy.html [429]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-2/igt@xe_eudebug@basic-vm-bind-vm-destroy.html - shard-dg2-set2: [SKIP][430] ([Intel XE#1130]) -> [SKIP][431] ([Intel XE#2905]) [430]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_eudebug@basic-vm-bind-vm-destroy.html [431]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@xe_eudebug@basic-vm-bind-vm-destroy.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-bmg: [DMESG-FAIL][432] -> [FAIL][433] ([Intel XE#2364]) [432]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-3/igt@xe_evict@evict-large-multi-vm-cm.html [433]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-7/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_evict@evict-mixed-many-threads-large: - shard-dg2-set2: [TIMEOUT][434] ([Intel XE#1473]) -> [INCOMPLETE][435] ([Intel XE#1195] / [Intel XE#1473]) [434]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_evict@evict-mixed-many-threads-large.html [435]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-large.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap: - shard-bmg: [SKIP][436] ([Intel XE#1130]) -> [SKIP][437] ([Intel XE#2322]) [436]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html [437]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind: - shard-bmg: [SKIP][438] ([Intel XE#2322]) -> [SKIP][439] ([Intel XE#1130]) +1 other test skip [438]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html [439]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-rebind.html * igt@xe_exec_fault_mode@many-bindexecqueue-userptr-rebind-imm: - shard-dg2-set2: [SKIP][440] ([Intel XE#1130]) -> [SKIP][441] ([Intel XE#288]) +4 other tests skip [440]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-rebind-imm.html [441]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-433/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-rebind-imm.html * igt@xe_exec_fault_mode@many-userptr: - shard-dg2-set2: [SKIP][442] ([Intel XE#288]) -> [SKIP][443] ([Intel XE#1130]) +1 other test skip [442]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-433/igt@xe_exec_fault_mode@many-userptr.html [443]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@xe_exec_fault_mode@many-userptr.html * igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence: - shard-dg2-set2: [SKIP][444] ([Intel XE#1130]) -> [SKIP][445] ([Intel XE#2360]) [444]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html [445]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-466/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html * igt@xe_exec_sip_eudebug@breakpoint-writesip-twice: - shard-dg2-set2: [SKIP][446] ([Intel XE#2905]) -> [SKIP][447] ([Intel XE#1130]) +2 other tests skip [446]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_exec_sip_eudebug@breakpoint-writesip-twice.html [447]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@xe_exec_sip_eudebug@breakpoint-writesip-twice.html * igt@xe_exec_threads@threads-mixed-fd-userptr: - shard-dg2-set2: [DMESG-WARN][448] -> [SKIP][449] ([Intel XE#1130]) [448]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-464/igt@xe_exec_threads@threads-mixed-fd-userptr.html [449]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@xe_exec_threads@threads-mixed-fd-userptr.html * igt@xe_gt_freq@freq_reset_multiple: - shard-lnl: [DMESG-WARN][450] ([Intel XE#3184]) -> [DMESG-WARN][451] ([Intel XE#2932]) [450]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-lnl-4/igt@xe_gt_freq@freq_reset_multiple.html [451]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-lnl-6/igt@xe_gt_freq@freq_reset_multiple.html * igt@xe_huc_copy@huc_copy: - shard-dg2-set2: [SKIP][452] ([Intel XE#255]) -> [SKIP][453] ([Intel XE#1130]) [452]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_huc_copy@huc_copy.html [453]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@xe_huc_copy@huc_copy.html * igt@xe_oa@create-destroy-userspace-config: - shard-dg2-set2: [SKIP][454] ([Intel XE#2541]) -> [SKIP][455] ([Intel XE#1130]) +1 other test skip [454]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_oa@create-destroy-userspace-config.html [455]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@xe_oa@create-destroy-userspace-config.html * igt@xe_oa@invalid-oa-format-id: - shard-dg2-set2: [SKIP][456] ([Intel XE#1130]) -> [SKIP][457] ([Intel XE#2541]) +1 other test skip [456]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_oa@invalid-oa-format-id.html [457]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-436/igt@xe_oa@invalid-oa-format-id.html * igt@xe_peer2peer@write: - shard-bmg: [SKIP][458] ([Intel XE#2557]) -> [SKIP][459] ([Intel XE#2427]) [458]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-8/igt@xe_peer2peer@write.html [459]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-6/igt@xe_peer2peer@write.html - shard-dg2-set2: [SKIP][460] ([Intel XE#1061]) -> [FAIL][461] ([Intel XE#1173]) [460]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-436/igt@xe_peer2peer@write.html [461]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-466/igt@xe_peer2peer@write.html * igt@xe_query@multigpu-query-invalid-size: - shard-bmg: [SKIP][462] ([Intel XE#944]) -> [SKIP][463] ([Intel XE#1130]) [462]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-bmg-1/igt@xe_query@multigpu-query-invalid-size.html [463]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-bmg-3/igt@xe_query@multigpu-query-invalid-size.html - shard-dg2-set2: [SKIP][464] ([Intel XE#944]) -> [SKIP][465] ([Intel XE#1130]) [464]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8086/shard-dg2-463/igt@xe_query@multigpu-query-invalid-size.html [465]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/shard-dg2-463/igt@xe_query@multigpu-query-invalid-size.html [Intel XE#1050]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1050 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1081]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1081 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [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#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1541 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [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#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885 [Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042 [Intel XE#2105]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2105 [Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136 [Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [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#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443 [Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2557 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577 [Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932 [Intel XE#2948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948 [Intel XE#3001]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3001 [Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [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#3097]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3097 [Intel XE#3108]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3108 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3160]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3160 [Intel XE#3177]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3177 [Intel XE#3179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3179 [Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184 [Intel XE#3187]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3187 [Intel XE#3189]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3189 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3230]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3230 [Intel XE#3262]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3262 [Intel XE#3267]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3267 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/358 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [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#581]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/581 [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#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#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 [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#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 Build changes ------------- * IGT: IGT_8086 -> IGTPW_11989 * Linux: xe-2132-263b21a91964ddc599f4f85cf3511b0aafd2028e -> xe-2133-3ec61d11c7429a65dcc3ac46b9e845f13891a306 IGTPW_11989: c07422cb4076cb84a8e6844f4cb9ab21ae9971cd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8086: 18939acec2446c6644644186b090d16e366af8bc @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2132-263b21a91964ddc599f4f85cf3511b0aafd2028e: 263b21a91964ddc599f4f85cf3511b0aafd2028e xe-2133-3ec61d11c7429a65dcc3ac46b9e845f13891a306: 3ec61d11c7429a65dcc3ac46b9e845f13891a306 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11989/index.html [-- Attachment #2: Type: text/html, Size: 129957 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* [i-g-t 0/1] xe_exec_threads: wait for all submissions to complete @ 2024-10-25 19:55 fei.yang 2024-10-25 19:55 ` [i-g-t 1/1] tests/intel/xe_exec_threads: " fei.yang 0 siblings, 1 reply; 6+ messages in thread From: fei.yang @ 2024-10-25 19:55 UTC (permalink / raw) To: igt-dev; +Cc: Fei Yang From: Fei Yang <fei.yang@intel.com> In test_compute_mode, there is an one second sleep waiting for all the submissions to complete, but that is not reliable especially on pre-si platforms where the GPU could be a lot slower. Instead we should wait for the ufence to make sure the GPU is inactive before unbinding the BO. Signed-off-by: Fei Yang <fei.yang@intel.com> Fei Yang (1): tests/intel/xe_exec_threads: wait for all submissions to complete tests/intel/xe_exec_threads.c | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) -- 2.25.1 ^ permalink raw reply [flat|nested] 6+ messages in thread
* [i-g-t 1/1] tests/intel/xe_exec_threads: wait for all submissions to complete 2024-10-25 19:55 [i-g-t 0/1] " fei.yang @ 2024-10-25 19:55 ` fei.yang 0 siblings, 0 replies; 6+ messages in thread From: fei.yang @ 2024-10-25 19:55 UTC (permalink / raw) To: igt-dev; +Cc: Fei Yang From: Fei Yang <fei.yang@intel.com> In test_compute_mode, there is an one second sleep waiting for all the submissions to complete, but that is not reliable especially on pre-si platforms where the GPU could be a lot slower. Instead we should wait for the ufence to make sure the GPU is inactive before unbinding the BO. Signed-off-by: Fei Yang <fei.yang@intel.com> --- tests/intel/xe_exec_threads.c | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c index 413d6626b..a857a73fa 100644 --- a/tests/intel/xe_exec_threads.c +++ b/tests/intel/xe_exec_threads.c @@ -404,16 +404,26 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr, } } - j = flags & INVALIDATE ? - (flags & RACE ? n_execs / 2 + 1 : n_execs - 1) : 0; + j = 0; /* wait for all submissions to complete */ + if (flags & INVALIDATE) + /* + * For !RACE cases xe_wait_ufence has been called in above for-loop + * except the last batch of submissions (0x20 submissions in a batch). + * For RACE cases we will need to wait for all the submissions to + * complete here. + */ + j = (flags & RACE) ? 0 : (n_execs - 0x1f); + else if (flags & REBIND) + /* + * For REBIND cases xe_wait_ufence has been called in above for-loop + * except the last batch of submissions (0x20 submissions in a batch). + */ + j = n_execs - 0x1f; + for (i = j; i < n_execs; i++) xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE, exec_queues[i % n_exec_queues], fence_timeout); - /* Wait for all execs to complete */ - if (flags & INVALIDATE) - sleep(1); - sync[0].addr = to_user_pointer(&data[0].vm_sync); xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1); xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, 0, fence_timeout); -- 2.25.1 ^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-10-27 16:00 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-10-26 1:01 [i-g-t 0/1] xe_exec_threads: wait for all submissions to complete fei.yang 2024-10-26 1:01 ` [i-g-t 1/1] tests/intel/xe_exec_threads: " fei.yang 2024-10-26 1:44 ` ✗ Fi.CI.BAT: failure for xe_exec_threads: " Patchwork 2024-10-26 1:47 ` ✗ CI.xeBAT: " Patchwork 2024-10-27 16:00 ` ✗ CI.xeFULL: " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2024-10-25 19:55 [i-g-t 0/1] " fei.yang 2024-10-25 19:55 ` [i-g-t 1/1] tests/intel/xe_exec_threads: " fei.yang
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox