* [PATCH i-g-t v2 1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions
@ 2025-04-17 8:52 Jesse.zhang@amd.com
2025-04-17 8:52 ` [PATCH i-g-t v2 2/2] lib/amdgpu: Implement priority and secure flags for user queues Jesse.zhang@amd.com
` (6 more replies)
0 siblings, 7 replies; 11+ messages in thread
From: Jesse.zhang@amd.com @ 2025-04-17 8:52 UTC (permalink / raw)
To: igt-dev
Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig, sukhatri,
Jesse.zhang@amd.com, Jesse . Zhang
Add UAPI definitions for queue priority levels (NORMAL_LOW, LOW, etc.)
and secure queue flag in amdgpu_drm.h. This matches the libdrm changes
in commit fdf384d4b546 ("amdgpu: add priority and secure flags for user queues").
v2: In general, UAPI changes should be part of a different change and only uapi should be part of it (Sunil)
Signed-off-by: Jesse.Zhang <Jesse.zhang@amd.com>
---
include/drm-uapi/amdgpu_drm.h | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/include/drm-uapi/amdgpu_drm.h b/include/drm-uapi/amdgpu_drm.h
index 8191d0bd0..3f4813879 100644
--- a/include/drm-uapi/amdgpu_drm.h
+++ b/include/drm-uapi/amdgpu_drm.h
@@ -329,6 +329,16 @@ union drm_amdgpu_ctx {
#define AMDGPU_USERQ_OP_CREATE 1
#define AMDGPU_USERQ_OP_FREE 2
+/* queue priority levels */
+#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_MASK 0x3
+#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_SHIFT 0
+#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_NORMAL_LOW 0
+#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_LOW 1
+#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_NORMAL_HIGH 2
+#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_HIGH 3 /* admin only */
+/* for queues that need access to protected content */
+#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_SECURE (1 << 2)
+
/*
* This structure is a container to pass input configuration
* info for all supported userqueue related operations.
@@ -355,7 +365,7 @@ struct drm_amdgpu_userq_in {
* and doorbell_offset in the doorbell bo.
*/
__u32 doorbell_offset;
- __u32 _pad;
+ __u32 flags;
/**
* @queue_va: Virtual address of the GPU memory which holds the queue
* object. The queue holds the workload packets.
--
2.25.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* [PATCH i-g-t v2 2/2] lib/amdgpu: Implement priority and secure flags for user queues 2025-04-17 8:52 [PATCH i-g-t v2 1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions Jesse.zhang@amd.com @ 2025-04-17 8:52 ` Jesse.zhang@amd.com 2025-04-17 12:44 ` Khatri, Sunil 2025-04-17 12:42 ` [PATCH i-g-t v2 1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions Khatri, Sunil ` (5 subsequent siblings) 6 siblings, 1 reply; 11+ messages in thread From: Jesse.zhang@amd.com @ 2025-04-17 8:52 UTC (permalink / raw) To: igt-dev Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig, sukhatri, Jesse.zhang@amd.com, Jesse . Zhang This patch adds support for queue priority levels and secure queue creation flags in the user queue interface. The changes include: 1. Extended the amdgpu_ring_context struct to store queue priority 2. Modified amdgpu_user_queue_create() to: - Parse and pass through priority flags from context - Handle secure queue flag - Include flags in queue creation IOCTL calls The priority levels allow workloads to specify different scheduling priorities, with HIGH priority restricted to admin-only use. The secure flag enables creation of queues that can access protected content. This matches the corresponding libdrm changes in commit fdf384d4b546 ("amdgpu: add priority and secure flags for user queues"). Signed-off-by: Jesse.Zhang <Jesse.zhang@amd.com> --- lib/amdgpu/amd_ip_blocks.h | 1 + lib/amdgpu/amd_user_queue.c | 15 +++++++++++---- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/lib/amdgpu/amd_ip_blocks.h b/lib/amdgpu/amd_ip_blocks.h index 231098eb8..7d48f9107 100644 --- a/lib/amdgpu/amd_ip_blocks.h +++ b/lib/amdgpu/amd_ip_blocks.h @@ -118,6 +118,7 @@ struct amdgpu_ring_context { uint32_t *pm4; /* data of the packet */ uint32_t pm4_size; /* max allocated packet size */ bool secure; /* secure or not */ + uint32_t priority; /* user queue priority */ uint64_t bo_mc; /* GPU address of first buffer */ uint64_t bo_mc2; /* GPU address for p4 packet */ diff --git a/lib/amdgpu/amd_user_queue.c b/lib/amdgpu/amd_user_queue.c index 0cdd0c4f9..b396d0307 100644 --- a/lib/amdgpu/amd_user_queue.c +++ b/lib/amdgpu/amd_user_queue.c @@ -270,7 +270,7 @@ void amdgpu_user_queue_create(amdgpu_device_handle device_handle, struct amdgpu_ unsigned int type) { int r; - uint64_t gtt_flags = 0; + uint64_t gtt_flags = 0, queue_flags = 0; struct drm_amdgpu_userq_mqd_gfx11 gfx_mqd; struct drm_amdgpu_userq_mqd_sdma_gfx11 sdma_mqd; struct drm_amdgpu_userq_mqd_compute_gfx11 compute_mqd; @@ -283,6 +283,13 @@ void amdgpu_user_queue_create(amdgpu_device_handle device_handle, struct amdgpu_ if (ctxt->secure) gtt_flags |= AMDGPU_GEM_CREATE_ENCRYPTED; + + if (ctxt->secure) + queue_flags |= AMDGPU_USERQ_CREATE_FLAGS_QUEUE_SECURE; + + if (ctxt->priority) + queue_flags |= ctxt->priority & AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_MASK; + r = amdgpu_query_uq_fw_area_info(device_handle, AMD_IP_GFX, 0, &ctxt->info); igt_assert_eq(r, 0); @@ -404,7 +411,7 @@ void amdgpu_user_queue_create(amdgpu_device_handle device_handle, struct amdgpu_ ctxt->db_handle, DOORBELL_INDEX, ctxt->queue.mc_addr, USERMODE_QUEUE_SIZE, ctxt->wptr.mc_addr, ctxt->rptr.mc_addr, - mqd, &ctxt->queue_id); + mqd, queue_flags, &ctxt->queue_id); igt_assert_eq(r, 0); break; @@ -413,7 +420,7 @@ void amdgpu_user_queue_create(amdgpu_device_handle device_handle, struct amdgpu_ ctxt->db_handle, DOORBELL_INDEX, ctxt->queue.mc_addr, USERMODE_QUEUE_SIZE, ctxt->wptr.mc_addr, ctxt->rptr.mc_addr, - mqd, &ctxt->queue_id); + mqd, queue_flags, &ctxt->queue_id); igt_assert_eq(r, 0); break; @@ -422,7 +429,7 @@ void amdgpu_user_queue_create(amdgpu_device_handle device_handle, struct amdgpu_ ctxt->db_handle, DOORBELL_INDEX, ctxt->queue.mc_addr, USERMODE_QUEUE_SIZE, ctxt->wptr.mc_addr, ctxt->rptr.mc_addr, - mqd, &ctxt->queue_id); + mqd, queue_flags, &ctxt->queue_id); igt_assert_eq(r, 0); break; -- 2.25.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* RE: [PATCH i-g-t v2 2/2] lib/amdgpu: Implement priority and secure flags for user queues 2025-04-17 8:52 ` [PATCH i-g-t v2 2/2] lib/amdgpu: Implement priority and secure flags for user queues Jesse.zhang@amd.com @ 2025-04-17 12:44 ` Khatri, Sunil 0 siblings, 0 replies; 11+ messages in thread From: Khatri, Sunil @ 2025-04-17 12:44 UTC (permalink / raw) To: Zhang, Jesse(Jie), igt-dev@lists.freedesktop.org Cc: Prosyak, Vitaly, Deucher, Alexander, Koenig, Christian, Zhang, Jesse(Jie), Zhang, Jesse(Jie) [AMD Official Use Only - AMD Internal Distribution Only] -----Original Message----- From: Jesse.zhang@amd.com <jesse.zhang@amd.com> Sent: Thursday, April 17, 2025 2:23 PM To: igt-dev@lists.freedesktop.org Cc: Prosyak, Vitaly <Vitaly.Prosyak@amd.com>; Deucher, Alexander <Alexander.Deucher@amd.com>; Koenig, Christian <Christian.Koenig@amd.com>; Khatri, Sunil <Sunil.Khatri@amd.com>; Zhang, Jesse(Jie) <Jesse.Zhang@amd.com>; Zhang, Jesse(Jie) <Jesse.Zhang@amd.com> Subject: [PATCH i-g-t v2 2/2] lib/amdgpu: Implement priority and secure flags for user queues This patch adds support for queue priority levels and secure queue creation flags in the user queue interface. The changes include: 1. Extended the amdgpu_ring_context struct to store queue priority 2. Modified amdgpu_user_queue_create() to: - Parse and pass through priority flags from context - Handle secure queue flag - Include flags in queue creation IOCTL calls The priority levels allow workloads to specify different scheduling priorities, with HIGH priority restricted to admin-only use. The secure flag enables creation of queues that can access protected content. This matches the corresponding libdrm changes in commit fdf384d4b546 ("amdgpu: add priority and secure flags for user queues"). Signed-off-by: Jesse.Zhang <Jesse.zhang@amd.com> --- lib/amdgpu/amd_ip_blocks.h | 1 + lib/amdgpu/amd_user_queue.c | 15 +++++++++++---- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/lib/amdgpu/amd_ip_blocks.h b/lib/amdgpu/amd_ip_blocks.h index 231098eb8..7d48f9107 100644 --- a/lib/amdgpu/amd_ip_blocks.h +++ b/lib/amdgpu/amd_ip_blocks.h @@ -118,6 +118,7 @@ struct amdgpu_ring_context { uint32_t *pm4; /* data of the packet */ uint32_t pm4_size; /* max allocated packet size */ bool secure; /* secure or not */ + uint32_t priority; /* user queue priority */ uint64_t bo_mc; /* GPU address of first buffer */ uint64_t bo_mc2; /* GPU address for p4 packet */ diff --git a/lib/amdgpu/amd_user_queue.c b/lib/amdgpu/amd_user_queue.c index 0cdd0c4f9..b396d0307 100644 --- a/lib/amdgpu/amd_user_queue.c +++ b/lib/amdgpu/amd_user_queue.c @@ -270,7 +270,7 @@ void amdgpu_user_queue_create(amdgpu_device_handle device_handle, struct amdgpu_ unsigned int type) { int r; - uint64_t gtt_flags = 0; + uint64_t gtt_flags = 0, queue_flags = 0; struct drm_amdgpu_userq_mqd_gfx11 gfx_mqd; struct drm_amdgpu_userq_mqd_sdma_gfx11 sdma_mqd; struct drm_amdgpu_userq_mqd_compute_gfx11 compute_mqd; @@ -283,6 +283,13 @@ void amdgpu_user_queue_create(amdgpu_device_handle device_handle, struct amdgpu_ if (ctxt->secure) gtt_flags |= AMDGPU_GEM_CREATE_ENCRYPTED; + + if (ctxt->secure) + queue_flags |= AMDGPU_USERQ_CREATE_FLAGS_QUEUE_SECURE; + I think its better if you could add both the conditions under one if (ctxt->secure), with that in place its Reviewed-by: Sunil Khatri <sunil.khatri@amd.com> + if (ctxt->priority) + queue_flags |= ctxt->priority & +AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_MASK; + r = amdgpu_query_uq_fw_area_info(device_handle, AMD_IP_GFX, 0, &ctxt->info); igt_assert_eq(r, 0); @@ -404,7 +411,7 @@ void amdgpu_user_queue_create(amdgpu_device_handle device_handle, struct amdgpu_ ctxt->db_handle, DOORBELL_INDEX, ctxt->queue.mc_addr, USERMODE_QUEUE_SIZE, ctxt->wptr.mc_addr, ctxt->rptr.mc_addr, - mqd, &ctxt->queue_id); + mqd, queue_flags, &ctxt->queue_id); igt_assert_eq(r, 0); break; @@ -413,7 +420,7 @@ void amdgpu_user_queue_create(amdgpu_device_handle device_handle, struct amdgpu_ ctxt->db_handle, DOORBELL_INDEX, ctxt->queue.mc_addr, USERMODE_QUEUE_SIZE, ctxt->wptr.mc_addr, ctxt->rptr.mc_addr, - mqd, &ctxt->queue_id); + mqd, queue_flags, &ctxt->queue_id); igt_assert_eq(r, 0); break; @@ -422,7 +429,7 @@ void amdgpu_user_queue_create(amdgpu_device_handle device_handle, struct amdgpu_ ctxt->db_handle, DOORBELL_INDEX, ctxt->queue.mc_addr, USERMODE_QUEUE_SIZE, ctxt->wptr.mc_addr, ctxt->rptr.mc_addr, - mqd, &ctxt->queue_id); + mqd, queue_flags, &ctxt->queue_id); igt_assert_eq(r, 0); break; -- 2.25.1 ^ permalink raw reply [flat|nested] 11+ messages in thread
* RE: [PATCH i-g-t v2 1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions 2025-04-17 8:52 [PATCH i-g-t v2 1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions Jesse.zhang@amd.com 2025-04-17 8:52 ` [PATCH i-g-t v2 2/2] lib/amdgpu: Implement priority and secure flags for user queues Jesse.zhang@amd.com @ 2025-04-17 12:42 ` Khatri, Sunil 2025-04-17 13:21 ` ✗ Xe.CI.BAT: failure for series starting with [i-g-t,v2,1/2] " Patchwork ` (4 subsequent siblings) 6 siblings, 0 replies; 11+ messages in thread From: Khatri, Sunil @ 2025-04-17 12:42 UTC (permalink / raw) To: Zhang, Jesse(Jie), igt-dev@lists.freedesktop.org Cc: Prosyak, Vitaly, Deucher, Alexander, Koenig, Christian, Zhang, Jesse(Jie), Zhang, Jesse(Jie) [AMD Official Use Only - AMD Internal Distribution Only] Reviewed-by: Sunil Khatri <sunil.khatri@amd.com> -----Original Message----- From: Jesse.zhang@amd.com <jesse.zhang@amd.com> Sent: Thursday, April 17, 2025 2:23 PM To: igt-dev@lists.freedesktop.org Cc: Prosyak, Vitaly <Vitaly.Prosyak@amd.com>; Deucher, Alexander <Alexander.Deucher@amd.com>; Koenig, Christian <Christian.Koenig@amd.com>; Khatri, Sunil <Sunil.Khatri@amd.com>; Zhang, Jesse(Jie) <Jesse.Zhang@amd.com>; Zhang, Jesse(Jie) <Jesse.Zhang@amd.com> Subject: [PATCH i-g-t v2 1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions Add UAPI definitions for queue priority levels (NORMAL_LOW, LOW, etc.) and secure queue flag in amdgpu_drm.h. This matches the libdrm changes in commit fdf384d4b546 ("amdgpu: add priority and secure flags for user queues"). v2: In general, UAPI changes should be part of a different change and only uapi should be part of it (Sunil) Signed-off-by: Jesse.Zhang <Jesse.zhang@amd.com> --- include/drm-uapi/amdgpu_drm.h | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/include/drm-uapi/amdgpu_drm.h b/include/drm-uapi/amdgpu_drm.h index 8191d0bd0..3f4813879 100644 --- a/include/drm-uapi/amdgpu_drm.h +++ b/include/drm-uapi/amdgpu_drm.h @@ -329,6 +329,16 @@ union drm_amdgpu_ctx { #define AMDGPU_USERQ_OP_CREATE 1 #define AMDGPU_USERQ_OP_FREE 2 +/* queue priority levels */ +#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_MASK 0x3 #define +AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_SHIFT 0 #define +AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_NORMAL_LOW 0 #define +AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_LOW 1 #define +AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_NORMAL_HIGH 2 #define +AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_HIGH 3 /* admin only */ +/* for queues that need access to protected content */ #define +AMDGPU_USERQ_CREATE_FLAGS_QUEUE_SECURE (1 << 2) + /* * This structure is a container to pass input configuration * info for all supported userqueue related operations. @@ -355,7 +365,7 @@ struct drm_amdgpu_userq_in { * and doorbell_offset in the doorbell bo. */ __u32 doorbell_offset; - __u32 _pad; + __u32 flags; /** * @queue_va: Virtual address of the GPU memory which holds the queue * object. The queue holds the workload packets. -- 2.25.1 ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.BAT: failure for series starting with [i-g-t,v2,1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions 2025-04-17 8:52 [PATCH i-g-t v2 1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions Jesse.zhang@amd.com 2025-04-17 8:52 ` [PATCH i-g-t v2 2/2] lib/amdgpu: Implement priority and secure flags for user queues Jesse.zhang@amd.com 2025-04-17 12:42 ` [PATCH i-g-t v2 1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions Khatri, Sunil @ 2025-04-17 13:21 ` Patchwork 2025-04-17 13:41 ` ✓ i915.CI.BAT: success " Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-04-17 13:21 UTC (permalink / raw) To: Jesse.zhang@amd.com; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1882 bytes --] == Series Details == Series: series starting with [i-g-t,v2,1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions URL : https://patchwork.freedesktop.org/series/147878/ State : failure == Summary == CI Bug Log - changes from XEIGT_8326_BAT -> XEIGTPW_12998_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12998_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12998_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 (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12998_BAT: ### IGT changes ### #### Possible regressions #### * igt@kms_pipe_crc_basic@nonblocking-crc: - bat-dg2-oem2: [PASS][1] -> [DMESG-WARN][2] +56 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/bat-dg2-oem2/igt@kms_pipe_crc_basic@nonblocking-crc.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/bat-dg2-oem2/igt@kms_pipe_crc_basic@nonblocking-crc.html Build changes ------------- * IGT: IGT_8326 -> IGTPW_12998 * Linux: xe-2965-1afb38d5acb616dc76381ec0d80b081106146bbd -> xe-2967-830407db6fa5a871d1a6fcba1e51b42899ff57f6 IGTPW_12998: 12998 IGT_8326: 8326 xe-2965-1afb38d5acb616dc76381ec0d80b081106146bbd: 1afb38d5acb616dc76381ec0d80b081106146bbd xe-2967-830407db6fa5a871d1a6fcba1e51b42899ff57f6: 830407db6fa5a871d1a6fcba1e51b42899ff57f6 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/index.html [-- Attachment #2: Type: text/html, Size: 2478 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success for series starting with [i-g-t,v2,1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions 2025-04-17 8:52 [PATCH i-g-t v2 1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions Jesse.zhang@amd.com ` (2 preceding siblings ...) 2025-04-17 13:21 ` ✗ Xe.CI.BAT: failure for series starting with [i-g-t,v2,1/2] " Patchwork @ 2025-04-17 13:41 ` Patchwork 2025-04-17 16:37 ` [PATCH i-g-t v2 1/2] " Kamil Konieczny ` (2 subsequent siblings) 6 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-04-17 13:41 UTC (permalink / raw) To: Jesse.zhang@amd.com; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3514 bytes --] == Series Details == Series: series starting with [i-g-t,v2,1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions URL : https://patchwork.freedesktop.org/series/147878/ State : success == Summary == CI Bug Log - changes from IGT_8326 -> IGTPW_12998 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/index.html Participating hosts (45 -> 44) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12998 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@gem: - bat-arlh-2: NOTRUN -> [ABORT][1] ([i915#13723]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/bat-arlh-2/igt@i915_selftest@live@gem.html * igt@kms_chamelium_frames@dp-crc-fast: - bat-dg2-13: [PASS][2] -> [FAIL][3] ([i915#13775]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8326/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/bat-dg2-13/igt@kms_chamelium_frames@dp-crc-fast.html #### Possible fixes #### * igt@gem_exec_fence@basic-await@vecs0: - bat-rpls-4: [DMESG-WARN][4] ([i915#13400]) -> [PASS][5] +1 other test pass [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8326/bat-rpls-4/igt@gem_exec_fence@basic-await@vecs0.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/bat-rpls-4/igt@gem_exec_fence@basic-await@vecs0.html * igt@i915_selftest@live@gt_pm: - bat-arlh-2: [INCOMPLETE][6] ([i915#14046]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8326/bat-arlh-2/igt@i915_selftest@live@gt_pm.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/bat-arlh-2/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@workarounds: - bat-dg2-14: [DMESG-FAIL][8] ([i915#12061]) -> [PASS][9] +1 other test pass [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8326/bat-dg2-14/igt@i915_selftest@live@workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/bat-dg2-14/igt@i915_selftest@live@workarounds.html #### Warnings #### * igt@i915_selftest@live: - bat-arlh-2: [INCOMPLETE][10] ([i915#14046]) -> [ABORT][11] ([i915#13723]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8326/bat-arlh-2/igt@i915_selftest@live.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/bat-arlh-2/igt@i915_selftest@live.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400 [i915#13723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13723 [i915#13775]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13775 [i915#14046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14046 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8326 -> IGTPW_12998 * Linux: CI_DRM_16431 -> CI_DRM_16433 CI-20190529: 20190529 CI_DRM_16431: 1afb38d5acb616dc76381ec0d80b081106146bbd @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_16433: 830407db6fa5a871d1a6fcba1e51b42899ff57f6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12998: 12998 IGT_8326: 8326 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/index.html [-- Attachment #2: Type: text/html, Size: 4413 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t v2 1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions 2025-04-17 8:52 [PATCH i-g-t v2 1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions Jesse.zhang@amd.com ` (3 preceding siblings ...) 2025-04-17 13:41 ` ✓ i915.CI.BAT: success " Patchwork @ 2025-04-17 16:37 ` Kamil Konieczny 2025-04-22 8:21 ` Christian König 2025-04-18 1:12 ` ✗ i915.CI.Full: failure for series starting with [i-g-t,v2,1/2] " Patchwork 2025-04-18 3:41 ` ✗ Xe.CI.Full: " Patchwork 6 siblings, 1 reply; 11+ messages in thread From: Kamil Konieczny @ 2025-04-17 16:37 UTC (permalink / raw) To: Jesse.zhang@amd.com Cc: igt-dev, Vitaly Prosyak, Alex Deucher, Christian Koenig, sukhatri Hi Jesse.zhang, On 2025-04-17 at 16:52:46 +0800, Jesse.zhang@amd.com wrote: > Add UAPI definitions for queue priority levels (NORMAL_LOW, LOW, etc.) > and secure queue flag in amdgpu_drm.h. This matches the libdrm changes > in commit fdf384d4b546 ("amdgpu: add priority and secure flags for user queues"). Please write from what tree comes this commit or give lore.kernel.org link. I tried to find out this on current drm-tip and failed, am I missing something? Regards, Kamil > > v2: In general, UAPI changes should be part of a different change and only uapi should be part of it (Sunil) > > Signed-off-by: Jesse.Zhang <Jesse.zhang@amd.com> > --- > include/drm-uapi/amdgpu_drm.h | 12 +++++++++++- > 1 file changed, 11 insertions(+), 1 deletion(-) > > diff --git a/include/drm-uapi/amdgpu_drm.h b/include/drm-uapi/amdgpu_drm.h > index 8191d0bd0..3f4813879 100644 > --- a/include/drm-uapi/amdgpu_drm.h > +++ b/include/drm-uapi/amdgpu_drm.h > @@ -329,6 +329,16 @@ union drm_amdgpu_ctx { > #define AMDGPU_USERQ_OP_CREATE 1 > #define AMDGPU_USERQ_OP_FREE 2 > > +/* queue priority levels */ > +#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_MASK 0x3 > +#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_SHIFT 0 > +#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_NORMAL_LOW 0 > +#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_LOW 1 > +#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_NORMAL_HIGH 2 > +#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_HIGH 3 /* admin only */ > +/* for queues that need access to protected content */ > +#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_SECURE (1 << 2) > + > /* > * This structure is a container to pass input configuration > * info for all supported userqueue related operations. > @@ -355,7 +365,7 @@ struct drm_amdgpu_userq_in { > * and doorbell_offset in the doorbell bo. > */ > __u32 doorbell_offset; > - __u32 _pad; > + __u32 flags; > /** > * @queue_va: Virtual address of the GPU memory which holds the queue > * object. The queue holds the workload packets. > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t v2 1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions 2025-04-17 16:37 ` [PATCH i-g-t v2 1/2] " Kamil Konieczny @ 2025-04-22 8:21 ` Christian König 0 siblings, 0 replies; 11+ messages in thread From: Christian König @ 2025-04-22 8:21 UTC (permalink / raw) To: Kamil Konieczny, Jesse.zhang@amd.com, igt-dev, Vitaly Prosyak, Alex Deucher, sukhatri Am 17.04.25 um 18:37 schrieb Kamil Konieczny: > Hi Jesse.zhang, > On 2025-04-17 at 16:52:46 +0800, Jesse.zhang@amd.com wrote: >> Add UAPI definitions for queue priority levels (NORMAL_LOW, LOW, etc.) >> and secure queue flag in amdgpu_drm.h. This matches the libdrm changes >> in commit fdf384d4b546 ("amdgpu: add priority and secure flags for user queues"). > Please write from what tree comes this commit or > give lore.kernel.org link. > > I tried to find out this on current drm-tip and failed, > am I missing something? This is a patch for the IGT test cases and not the Linux kernel. It has i-g-t in the subject line and is send out on the igt-dev mailing list. Regards, Christian. > > Regards, > Kamil > >> v2: In general, UAPI changes should be part of a different change and only uapi should be part of it (Sunil) >> >> Signed-off-by: Jesse.Zhang <Jesse.zhang@amd.com> >> --- >> include/drm-uapi/amdgpu_drm.h | 12 +++++++++++- >> 1 file changed, 11 insertions(+), 1 deletion(-) >> >> diff --git a/include/drm-uapi/amdgpu_drm.h b/include/drm-uapi/amdgpu_drm.h >> index 8191d0bd0..3f4813879 100644 >> --- a/include/drm-uapi/amdgpu_drm.h >> +++ b/include/drm-uapi/amdgpu_drm.h >> @@ -329,6 +329,16 @@ union drm_amdgpu_ctx { >> #define AMDGPU_USERQ_OP_CREATE 1 >> #define AMDGPU_USERQ_OP_FREE 2 >> >> +/* queue priority levels */ >> +#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_MASK 0x3 >> +#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_SHIFT 0 >> +#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_NORMAL_LOW 0 >> +#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_LOW 1 >> +#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_NORMAL_HIGH 2 >> +#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_HIGH 3 /* admin only */ >> +/* for queues that need access to protected content */ >> +#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_SECURE (1 << 2) >> + >> /* >> * This structure is a container to pass input configuration >> * info for all supported userqueue related operations. >> @@ -355,7 +365,7 @@ struct drm_amdgpu_userq_in { >> * and doorbell_offset in the doorbell bo. >> */ >> __u32 doorbell_offset; >> - __u32 _pad; >> + __u32 flags; >> /** >> * @queue_va: Virtual address of the GPU memory which holds the queue >> * object. The queue holds the workload packets. >> -- >> 2.25.1 >> ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.Full: failure for series starting with [i-g-t,v2,1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions 2025-04-17 8:52 [PATCH i-g-t v2 1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions Jesse.zhang@amd.com ` (4 preceding siblings ...) 2025-04-17 16:37 ` [PATCH i-g-t v2 1/2] " Kamil Konieczny @ 2025-04-18 1:12 ` Patchwork 2025-04-18 3:41 ` ✗ Xe.CI.Full: " Patchwork 6 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-04-18 1:12 UTC (permalink / raw) To: Jesse.zhang@amd.com; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 138870 bytes --] == Series Details == Series: series starting with [i-g-t,v2,1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions URL : https://patchwork.freedesktop.org/series/147878/ State : failure == Summary == CI Bug Log - changes from CI_DRM_16433_full -> IGTPW_12998_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12998_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12998_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/index.html Participating hosts (11 -> 10) ------------------------------ Missing (1): shard-snb-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12998_full: ### IGT changes ### #### Possible regressions #### * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-4/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@sysfs_heartbeat_interval@precise@bcs0: - shard-rkl: NOTRUN -> [FAIL][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-3/igt@sysfs_heartbeat_interval@precise@bcs0.html Known issues ------------ Here are the changes found in IGTPW_12998_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#8411]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-1/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-8/igt@api_intel_bb@object-reloc-purge-cache.html - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-11/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-tglu-1: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-5/igt@device_reset@unbind-cold-reset-rebind.html - shard-dg1: NOTRUN -> [SKIP][8] ([i915#11078]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-13/igt@device_reset@unbind-cold-reset-rebind.html - shard-tglu: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-2/igt@device_reset@unbind-cold-reset-rebind.html - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-3/igt@device_reset@unbind-cold-reset-rebind.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-1/igt@gem_ccs@block-multicopy-inplace.html - shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html - shard-dg1: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-17/igt@gem_ccs@block-multicopy-inplace.html - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-1/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#13008]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-8/igt@gem_ccs@large-ctrl-surf-copy.html - shard-dg1: NOTRUN -> [SKIP][16] ([i915#13008]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-14/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_create@create-ext-cpu-access-big: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#6335]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-3/igt@gem_create@create-ext-cpu-access-big.html - shard-dg2-9: NOTRUN -> [ABORT][18] ([i915#13427]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@gem_create@create-ext-cpu-access-big.html - shard-rkl: NOTRUN -> [SKIP][19] ([i915#6335]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-5/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][20] ([i915#8562]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-5/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][21] ([i915#12353]) +1 other test incomplete [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk1/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_persistence@engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][22] ([i915#1099]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-snb1/igt@gem_ctx_persistence@engines-mixed-process.html * igt@gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#8555]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-1/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2-9: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#280]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-3/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2-9: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@gem_ctx_sseu@mmap-args.html - shard-tglu-1: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html - shard-dg1: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-15/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg2: [PASS][29] -> [ABORT][30] ([i915#10030] / [i915#7975] / [i915#8213]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg2-11/igt@gem_eio@hibernate.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-3/igt@gem_eio@hibernate.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [PASS][31] -> [DMESG-WARN][32] ([i915#12964]) +26 other tests dmesg-warn [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-rkl-8/igt@gem_eio@in-flight-suspend.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-1/igt@gem_eio@in-flight-suspend.html - shard-glk: NOTRUN -> [INCOMPLETE][33] ([i915#13390]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk9/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][34] -> [FAIL][35] ([i915#12543] / [i915#5784]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg1-18/igt@gem_eio@reset-stress.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-17/igt@gem_eio@reset-stress.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][36] ([i915#8898]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-snb4/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4036]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-8/igt@gem_exec_balancer@invalid-bonds.html - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4036]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-8/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#8555]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-7/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#4525]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-8/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-bb-first: - shard-tglu-1: NOTRUN -> [SKIP][41] ([i915#4525]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@sliced: - shard-dg2-9: NOTRUN -> [SKIP][42] ([i915#4812]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][43] ([i915#6334]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk5/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_fence@submit: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4812]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-2/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-wb-pro-default: - shard-dg2-9: NOTRUN -> [SKIP][45] ([i915#3539] / [i915#4852]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@gem_exec_flush@basic-wb-pro-default.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-3/igt@gem_exec_flush@basic-wb-ro-before-default.html - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-15/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_reloc@basic-active: - shard-dg2-9: NOTRUN -> [SKIP][48] ([i915#3281]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@gem_exec_reloc@basic-active.html * igt@gem_exec_reloc@basic-cpu-read-noreloc: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#3281]) +6 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-read-noreloc.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#3281]) +10 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_reloc@basic-write-gtt: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#3281]) +5 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-8/igt@gem_exec_reloc@basic-write-gtt.html - shard-dg1: NOTRUN -> [SKIP][52] ([i915#3281]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-17/igt@gem_exec_reloc@basic-write-gtt.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-3/igt@gem_exec_schedule@reorder-wide.html - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-5/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2-9: NOTRUN -> [INCOMPLETE][55] ([i915#11441] / [i915#13304]) +1 other test incomplete [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4860]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-14/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4860]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-11/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-dg2-9: NOTRUN -> [SKIP][58] ([i915#4860]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#2190]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-5/igt@gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][60] ([i915#2190]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk5/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#4613] / [i915#7582]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-9/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4613]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-7/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][63] ([i915#4613]) +7 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html - shard-tglu-1: NOTRUN -> [SKIP][64] ([i915#4613]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@verify: - shard-rkl: NOTRUN -> [SKIP][65] ([i915#4613]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-7/igt@gem_lmem_swapping@verify.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#4613]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-7/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_media_vme: - shard-tglu: NOTRUN -> [SKIP][67] ([i915#284]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-9/igt@gem_media_vme.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4077]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-16/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4077]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-1/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-dg2-9: NOTRUN -> [SKIP][70] ([i915#4077]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_wc@pf-nonblock: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4083]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-16/igt@gem_mmap_wc@pf-nonblock.html * igt@gem_mmap_wc@write: - shard-dg2-9: NOTRUN -> [SKIP][72] ([i915#4083]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@gem_mmap_wc@write.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4083]) +9 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-6/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_mmap_wc@write-read: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4083]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-8/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@reads-display: - shard-dg2-9: NOTRUN -> [SKIP][75] ([i915#3282]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@gem_partial_pwrite_pread@reads-display.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3282]) +6 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-6/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pread@self: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3282]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-19/igt@gem_pread@self.html * igt@gem_pwrite@basic-self: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#3282]) +6 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-3/igt@gem_pwrite@basic-self.html * igt@gem_pxp@fail-invalid-protected-context: - shard-rkl: NOTRUN -> [TIMEOUT][79] ([i915#12964]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-1/igt@gem_pxp@fail-invalid-protected-context.html - shard-dg1: NOTRUN -> [SKIP][80] ([i915#4270]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-18/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#13398]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-3/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [TIMEOUT][82] ([i915#12917] / [i915#12964]) +2 other tests timeout [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-3/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-rkl: [PASS][83] -> [TIMEOUT][84] ([i915#12917] / [i915#12964]) +2 other tests timeout [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-rkl-8/igt@gem_pxp@protected-raw-src-copy-not-readible.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-1/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4270]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-11/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2-9: NOTRUN -> [SKIP][86] ([i915#4270]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_readwrite@beyond-eob: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#3282]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-1/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@yf-tiled-ccs-to-x-tiled: - shard-dg2-9: NOTRUN -> [SKIP][88] ([i915#5190] / [i915#8428]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@gem_render_copy@yf-tiled-ccs-to-x-tiled.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#5190] / [i915#8428]) +10 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#8428]) +4 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-4/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#4079]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-16/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#4885]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-19/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#4079]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-1/igt@gem_tiled_pread_basic.html - shard-dg2: NOTRUN -> [SKIP][94] ([i915#4079]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-1/igt@gem_tiled_pread_basic.html * igt@gem_tiled_swapping@non-threaded: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#4077]) +12 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-6/igt@gem_tiled_swapping@non-threaded.html * igt@gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4879]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-16/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-sync: - shard-tglu: NOTRUN -> [SKIP][97] ([i915#3297]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-5/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#3297]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-10/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#3282] / [i915#3297]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-3/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#3297]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#3297]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-5/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#3281] / [i915#3297]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-8/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#3297]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-dg2-9: NOTRUN -> [SKIP][104] ([i915#3297]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen3_render_tiledx_blits: - shard-dg2-9: NOTRUN -> [SKIP][105] +4 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@gen3_render_tiledx_blits.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-snb: NOTRUN -> [SKIP][106] +201 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-snb6/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@batch-invalid-length: - shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#2527] / [i915#2856]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@gen9_exec_parse@batch-invalid-length.html - shard-dg2-9: NOTRUN -> [SKIP][108] ([i915#2856]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#2527]) +5 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-1/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#2856]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-3/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#2856]) +5 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-7/igt@gen9_exec_parse@shadow-peek.html - shard-dg1: NOTRUN -> [SKIP][112] ([i915#2527]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-18/igt@gen9_exec_parse@shadow-peek.html - shard-tglu: NOTRUN -> [SKIP][113] ([i915#2527] / [i915#2856]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-10/igt@gen9_exec_parse@shadow-peek.html * igt@i915_drm_fdinfo@busy-idle: - shard-rkl: NOTRUN -> [DMESG-WARN][114] ([i915#12964]) +17 other tests dmesg-warn [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-5/igt@i915_drm_fdinfo@busy-idle.html * igt@i915_drm_fdinfo@busy-idle@bcs0: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#14073]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-17/igt@i915_drm_fdinfo@busy-idle@bcs0.html * igt@i915_drm_fdinfo@virtual-busy-all: - shard-mtlp: NOTRUN -> [SKIP][116] ([i915#14118]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-5/igt@i915_drm_fdinfo@virtual-busy-all.html - shard-dg2: NOTRUN -> [SKIP][117] ([i915#14118]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-3/igt@i915_drm_fdinfo@virtual-busy-all.html - shard-dg1: NOTRUN -> [SKIP][118] ([i915#14118]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-13/igt@i915_drm_fdinfo@virtual-busy-all.html * igt@i915_drm_fdinfo@virtual-busy-idle: - shard-dg2-9: NOTRUN -> [SKIP][119] ([i915#14118]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@i915_drm_fdinfo@virtual-busy-idle.html * igt@i915_fb_tiling@basic-x-tiling: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#13786]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-1/igt@i915_fb_tiling@basic-x-tiling.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [PASS][121] -> [DMESG-WARN][122] ([i915#4391] / [i915#4423]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-16/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [PASS][123] -> [DMESG-WARN][124] ([i915#13447]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][125] ([i915#8399]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#8399]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-3/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-glk: NOTRUN -> [FAIL][127] ([i915#3591]) +1 other test fail [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk1/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][128] -> [INCOMPLETE][129] ([i915#13821]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-snb4/igt@i915_pm_rps@reset.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-snb4/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-park: - shard-dg2-9: NOTRUN -> [SKIP][130] ([i915#11681]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@i915_pm_rps@thresholds-park.html - shard-dg1: NOTRUN -> [SKIP][131] ([i915#11681]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-15/igt@i915_pm_rps@thresholds-park.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#4387]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-1/igt@i915_pm_sseu@full-enable.html - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#8437]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-1/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#6188]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-2/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [PASS][135] -> [DMESG-FAIL][136] ([i915#12061]) +1 other test dmesg-fail [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-mtlp-6/igt@i915_selftest@live@workarounds.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-4/igt@i915_selftest@live@workarounds.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][137] ([i915#9311]) +1 other test dmesg-warn [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-8/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][138] ([i915#4817]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk8/igt@i915_suspend@forcewake.html * igt@intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#7707]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-1/igt@intel_hwmon@hwmon-read.html - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#7707]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#4212]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-5/igt@kms_addfb_basic@clobberred-modifier.html - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#4212]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-5/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@invalid-get-prop-any: - shard-dg1: [PASS][143] -> [DMESG-WARN][144] ([i915#4423]) +4 other tests dmesg-warn [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg1-15/igt@kms_addfb_basic@invalid-get-prop-any.html [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-16/igt@kms_addfb_basic@invalid-get-prop-any.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#12454] / [i915#12712]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#8709]) +7 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_async_flips@invalid-async-flip-atomic: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#12967]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-7/igt@kms_async_flips@invalid-async-flip-atomic.html - shard-dg2: NOTRUN -> [SKIP][148] ([i915#12967]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-10/igt@kms_async_flips@invalid-async-flip-atomic.html * igt@kms_async_flips@overlay-atomic: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#14076]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-8/igt@kms_async_flips@overlay-atomic.html - shard-rkl: NOTRUN -> [SKIP][150] ([i915#14076]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-8/igt@kms_async_flips@overlay-atomic.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-dg2-9: NOTRUN -> [SKIP][151] ([i915#9531]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#9531]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#1769] / [i915#3555]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#1769] / [i915#3555]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [PASS][155] -> [FAIL][156] ([i915#11808]) +1 other test fail [155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][157] ([i915#4538] / [i915#5286]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-18/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][158] ([i915#5286]) +6 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-3/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#5286]) +4 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][160] ([i915#5286]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#3638]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-13/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#3638]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-5/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg2-9: NOTRUN -> [SKIP][163] ([i915#4538] / [i915#5190]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-mtlp: NOTRUN -> [SKIP][164] +9 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#4538]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-18/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#4538] / [i915#5190]) +10 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-4/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-dg1: NOTRUN -> [SKIP][167] +16 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-19/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#5190]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-3/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#6187]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#6095]) +43 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-8/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#6095]) +24 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-2/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#12313]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][173] ([i915#10307] / [i915#6095]) +19 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#12805]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-dg2: NOTRUN -> [SKIP][175] ([i915#12805]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-11/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-rkl: NOTRUN -> [SKIP][176] ([i915#12805]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#14098] / [i915#6095]) +60 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-dg2-9: NOTRUN -> [SKIP][178] ([i915#6095]) +4 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#6095]) +25 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][180] ([i915#12796]) +1 other test incomplete [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#12313]) +2 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#10307] / [i915#6095]) +168 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][183] ([i915#6095]) +34 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#6095]) +44 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#12313]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html - shard-dg2-9: NOTRUN -> [SKIP][186] ([i915#12313]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#6095]) +125 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][188] +522 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk1/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#13781]) +4 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-5/igt@kms_cdclk@mode-transition.html - shard-dg1: NOTRUN -> [SKIP][191] ([i915#3742]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-13/igt@kms_cdclk@mode-transition.html - shard-tglu: NOTRUN -> [SKIP][192] ([i915#3742]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-3/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#13781]) +4 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#3742]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-5/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-0-25: - shard-dg2: NOTRUN -> [SKIP][195] +12 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-1/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_edid@dp-edid-read: - shard-dg2-9: NOTRUN -> [SKIP][196] ([i915#11151] / [i915#7828]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@kms_chamelium_edid@dp-edid-read.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#11151] / [i915#7828]) +9 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#11151] / [i915#7828]) +9 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-3/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-single: - shard-tglu-1: NOTRUN -> [SKIP][199] ([i915#11151] / [i915#7828]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-single.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#11151] / [i915#7828]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-17/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-storm: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#11151] / [i915#7828]) +4 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-4/igt@kms_chamelium_hpd@hdmi-hpd-storm.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#11151] / [i915#7828]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-7/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_color@deep-color: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#3555] / [i915#9979]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic: - shard-tglu-1: NOTRUN -> [SKIP][204] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_content_protection@atomic.html - shard-dg2-9: NOTRUN -> [SKIP][205] ([i915#7118] / [i915#9424]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][206] ([i915#3116] / [i915#3299]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-4/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#3116]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-5/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#9424]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-4/igt@kms_content_protection@lic-type-0.html - shard-dg1: NOTRUN -> [SKIP][209] ([i915#9424]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-14/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][210] ([i915#7173]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-11/igt@kms_content_protection@lic-type-0@pipe-a-dp-3.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#7118]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-7/igt@kms_content_protection@srm.html - shard-rkl: NOTRUN -> [SKIP][212] ([i915#7118]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-1/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#6944] / [i915#9424]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-2/igt@kms_content_protection@uevent.html - shard-dg2: NOTRUN -> [SKIP][214] ([i915#7118] / [i915#9424]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-2/igt@kms_content_protection@uevent.html - shard-rkl: NOTRUN -> [SKIP][215] ([i915#7118] / [i915#9424]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-3/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#3555]) +4 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-offscreen-64x21: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#8814]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-64x21.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#3555]) +2 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-16/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu-1: NOTRUN -> [FAIL][219] ([i915#13566]) +1 other test fail [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-9: NOTRUN -> [SKIP][220] ([i915#13049]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-tglu-1: NOTRUN -> [SKIP][221] ([i915#13049]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-rkl: [PASS][222] -> [FAIL][223] ([i915#13566]) +1 other test fail [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-rkl-3/igt@kms_cursor_crc@cursor-random-256x85.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-7/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#13049]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html - shard-rkl: NOTRUN -> [SKIP][225] ([i915#13049]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8814]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-max-size.html - shard-dg2-9: NOTRUN -> [SKIP][227] ([i915#3555]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#3555]) +4 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-7/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-tglu: [PASS][229] -> [FAIL][230] ([i915#13566]) +5 other tests fail [229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-128x42.html [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][231] ([i915#13566]) +4 other tests fail [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#13049]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-sliding-64x21: - shard-tglu: NOTRUN -> [FAIL][233] ([i915#13566]) +1 other test fail [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-64x21.html * igt@kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][234] ([i915#12358] / [i915#7882]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk9/igt@kms_cursor_crc@cursor-suspend.html - shard-rkl: NOTRUN -> [INCOMPLETE][235] ([i915#12358]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-4/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][236] ([i915#12358]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk9/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][237] +35 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#13046] / [i915#5354]) +4 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-11/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#4103]) +2 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-snb: [PASS][240] -> [SKIP][241] +5 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-snb6/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-snb7/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2-9: NOTRUN -> [SKIP][242] ([i915#13046] / [i915#5354]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#9809]) +5 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-rkl: [PASS][244] -> [FAIL][245] ([i915#2346]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu-1: NOTRUN -> [SKIP][246] ([i915#9067]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#4213]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-dg2: NOTRUN -> [SKIP][248] ([i915#4103] / [i915#4213]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#9833]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-rkl: NOTRUN -> [SKIP][250] ([i915#9723]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#9723]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][252] ([i915#9723]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-17/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#9833]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu: NOTRUN -> [SKIP][254] ([i915#1769] / [i915#3555] / [i915#3804]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#3804]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html - shard-tglu: NOTRUN -> [SKIP][256] ([i915#3804]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-9/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][257] ([i915#1257]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-4/igt@kms_dp_aux_dev.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#13749]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-5/igt@kms_dp_link_training@non-uhbr-mst.html - shard-rkl: NOTRUN -> [SKIP][259] ([i915#13749]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-1/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-dg2: [PASS][260] -> [SKIP][261] ([i915#13749]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg2-10/igt@kms_dp_link_training@non-uhbr-sst.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-3/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dp_link_training@uhbr-sst: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#13748]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-7/igt@kms_dp_link_training@uhbr-sst.html - shard-dg1: NOTRUN -> [SKIP][263] ([i915#13748]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-17/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#13707]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#3840]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-5/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#3840]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-8/igt@kms_dsc@dsc-with-bpc.html - shard-dg2: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#3840]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-8/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][268] ([i915#3840] / [i915#9053]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests: - shard-tglu: NOTRUN -> [SKIP][269] ([i915#2575]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-4/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#3469]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-6/igt@kms_fbcon_fbt@psr.html - shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#3469]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#3955]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-3/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#4854]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-5/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-dg2-9: NOTRUN -> [SKIP][274] ([i915#1839]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#1839]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-3/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#1839]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-3/igt@kms_feature_discovery@display-4x.html - shard-tglu: NOTRUN -> [SKIP][277] ([i915#1839]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-2/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#9337]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-3/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1: - shard-snb: [PASS][279] -> [FAIL][280] ([i915#11832] / [i915#13734]) +1 other test fail [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-snb7/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-snb7/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-busy-flip: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#3637] / [i915#9934]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-3/igt@kms_flip@2x-busy-flip.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#9934]) +3 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-dg1: NOTRUN -> [SKIP][283] ([i915#9934]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-13/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#3637] / [i915#9934]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#8381]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-10/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#8381]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-5/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#3637] / [i915#9934]) +4 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-9/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][288] ([i915#12745] / [i915#4839]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][289] ([i915#4839]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk6/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1: - shard-snb: [PASS][290] -> [TIMEOUT][291] ([i915#14033]) +1 other test timeout [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-snb6/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-nonexisting-fb: - shard-dg2-9: NOTRUN -> [SKIP][292] ([i915#9934]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#9934]) +11 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-8/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@wf_vblank-ts-check: - shard-rkl: [PASS][294] -> [FAIL][295] ([i915#11832] / [i915#13734]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-rkl-7/igt@kms_flip@wf_vblank-ts-check.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-6/igt@kms_flip@wf_vblank-ts-check.html * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1: - shard-tglu: [PASS][296] -> [FAIL][297] ([i915#13734]) +1 other test fail [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-tglu-2/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-3/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1.html * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][298] ([i915#13734]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-6/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a2.html * igt@kms_flip@wf_vblank-ts-check@b-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][299] ([i915#11832] / [i915#13734]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-6/igt@kms_flip@wf_vblank-ts-check@b-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-dg1: NOTRUN -> [SKIP][300] ([i915#2672] / [i915#3555]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#2672]) +7 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][302] ([i915#2587] / [i915#2672]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html - shard-dg2: NOTRUN -> [SKIP][304] ([i915#2672] / [i915#3555]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][305] ([i915#2672] / [i915#8813]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#2672] / [i915#3555] / [i915#5190]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#2672]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][308] ([i915#2672] / [i915#3555] / [i915#5190]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html - shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#2587] / [i915#2672] / [i915#3555]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][310] ([i915#2672]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html - shard-tglu-1: NOTRUN -> [SKIP][311] ([i915#2587] / [i915#2672]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][312] ([i915#2672] / [i915#3555]) +7 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][313] ([i915#2672] / [i915#3555]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-9: NOTRUN -> [SKIP][314] ([i915#8708]) +6 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][315] ([i915#8708]) +3 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu: - shard-dg2-9: NOTRUN -> [SKIP][316] ([i915#5354]) +5 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][317] +53 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][318] ([i915#8708]) +7 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#8708]) +19 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][320] ([i915#10056] / [i915#13353]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk8/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][321] ([i915#5439]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#3458]) +19 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg2-9: NOTRUN -> [SKIP][323] ([i915#3458]) +2 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][324] ([i915#3023]) +35 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-dg1: NOTRUN -> [SKIP][325] ([i915#3458]) +4 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][326] ([i915#1825]) +18 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#5354]) +30 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][328] ([i915#1825]) +62 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][329] ([i915#9766]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg1: NOTRUN -> [SKIP][330] ([i915#9766]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-19/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][331] +55 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#6118]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-2/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: NOTRUN -> [SKIP][333] ([i915#3555] / [i915#8228]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-4/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#3555] / [i915#8228]) +1 other test skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-7/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#3555] / [i915#8228]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#12394]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][337] ([i915#10656]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-1/igt@kms_joiner@basic-force-ultra-joiner.html - shard-dg2-9: NOTRUN -> [SKIP][338] ([i915#10656]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg1: NOTRUN -> [SKIP][339] ([i915#10656]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-17/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][340] ([i915#12388]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][341] ([i915#12388]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-14/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][342] ([i915#12388]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-8/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#12339]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][344] ([i915#6301]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-8/igt@kms_panel_fitting@legacy.html - shard-rkl: NOTRUN -> [SKIP][345] ([i915#6301]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-5/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][346] ([i915#12756] / [i915#13409] / [i915#13476]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][347] ([i915#13409] / [i915#13476]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][348] ([i915#12178]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][349] ([i915#7862]) +1 other test fail [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk1/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][350] ([i915#10647] / [i915#12169]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk8/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][351] ([i915#10647]) +3 other tests fail [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk8/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][352] ([i915#10647] / [i915#12177]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk3/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_multiple@2x-tiling-x: - shard-rkl: NOTRUN -> [SKIP][353] ([i915#13958]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-x.html - shard-tglu: NOTRUN -> [SKIP][354] ([i915#13958]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-4/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@2x-tiling-y: - shard-dg2: NOTRUN -> [SKIP][355] ([i915#13958]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-6/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][356] ([i915#13958]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-5/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#8806]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-6/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][358] ([i915#3555]) +8 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-3/igt@kms_plane_multiple@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][359] ([i915#3555] / [i915#8806]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-7/igt@kms_plane_multiple@tiling-yf.html - shard-dg2: NOTRUN -> [SKIP][360] ([i915#3555] / [i915#8806]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-4/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: [PASS][361] -> [SKIP][362] ([i915#6953] / [i915#9423]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg2-10/igt@kms_plane_scaling@intel-max-src-size.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][363] ([i915#12247]) +8 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-2/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][364] ([i915#12247]) +9 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a: - shard-rkl: NOTRUN -> [SKIP][365] ([i915#12247]) +8 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - shard-dg1: NOTRUN -> [SKIP][366] ([i915#12247]) +4 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][367] ([i915#12247] / [i915#6953]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][368] ([i915#12247] / [i915#3555] / [i915#6953]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][369] ([i915#12247]) +3 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][370] ([i915#12247] / [i915#6953]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_pm_backlight@basic-brightness: - shard-dg1: NOTRUN -> [SKIP][371] ([i915#5354]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-13/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][372] ([i915#5354]) +3 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-3/igt@kms_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][373] ([i915#9812]) +1 other test skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-4/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][374] ([i915#9685]) +1 other test skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-3/igt@kms_pm_dc@dc5-psr.html - shard-dg1: NOTRUN -> [SKIP][375] ([i915#9685]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-16/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-tglu: NOTRUN -> [SKIP][376] ([i915#3828]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-3/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][377] ([i915#8430]) [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-1/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: [PASS][378] -> [SKIP][379] ([i915#9519]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-dg2: NOTRUN -> [SKIP][380] ([i915#9519]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-4/igt@kms_pm_rpm@dpms-non-lpsp.html - shard-rkl: NOTRUN -> [SKIP][381] ([i915#9519]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-4/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [PASS][382] -> [SKIP][383] ([i915#9519]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_prime@basic-crc-vgem: - shard-dg1: NOTRUN -> [SKIP][384] ([i915#6524]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-12/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][385] ([i915#6524] / [i915#6805]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-4/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][386] ([i915#11520]) +4 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2-9: NOTRUN -> [SKIP][387] ([i915#11520]) +2 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][388] ([i915#9808]) +3 other tests skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][389] ([i915#11520]) +15 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk3/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][390] ([i915#11520]) +3 other tests skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-7/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-mtlp: NOTRUN -> [SKIP][391] ([i915#12316]) +6 other tests skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-4/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][392] ([i915#11520]) +12 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-5/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][393] ([i915#11520]) +3 other tests skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-15/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][394] ([i915#11520]) +8 other tests skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-5/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html - shard-snb: NOTRUN -> [SKIP][395] ([i915#11520]) +5 other tests skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-snb2/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-tglu-1: NOTRUN -> [SKIP][396] ([i915#9683]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][397] ([i915#9683]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-8/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-primary-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][398] ([i915#1072] / [i915#9732]) +4 other tests skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@kms_psr@fbc-pr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr-sprite-plane-move: - shard-tglu: NOTRUN -> [SKIP][399] ([i915#9732]) +14 other tests skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-10/igt@kms_psr@fbc-psr-sprite-plane-move.html * igt@kms_psr@fbc-psr2-primary-render: - shard-mtlp: NOTRUN -> [SKIP][400] ([i915#9688]) +11 other tests skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-6/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@psr-cursor-plane-move: - shard-dg1: NOTRUN -> [SKIP][401] ([i915#1072] / [i915#9732]) +3 other tests skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-17/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-sprite-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][402] ([i915#4077] / [i915#9688]) +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-2/igt@kms_psr@psr-sprite-mmap-gtt@edp-1.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][403] ([i915#1072] / [i915#9732]) +31 other tests skip [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-1/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][404] ([i915#1072] / [i915#9732]) +23 other tests skip [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-5/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][405] ([i915#9732]) +13 other tests skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu: NOTRUN -> [SKIP][406] ([i915#9685]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-2/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][407] ([i915#5289]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2-9: NOTRUN -> [SKIP][408] ([i915#12755] / [i915#5190]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][409] ([i915#5289]) +1 other test skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][410] ([i915#12755] / [i915#5190]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-mtlp: NOTRUN -> [SKIP][411] ([i915#12755]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-none: - shard-tglu: NOTRUN -> [SKIP][412] ([i915#3555]) +1 other test skip [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-9/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_selftest@drm_framebuffer: - shard-rkl: NOTRUN -> [ABORT][413] ([i915#13179]) +1 other test abort [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-7/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][414] ([i915#3555] / [i915#8809] / [i915#8823]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_vrr@flip-basic-fastset: - shard-rkl: NOTRUN -> [SKIP][415] ([i915#9906]) +1 other test skip [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-7/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@max-min: - shard-tglu: NOTRUN -> [SKIP][416] ([i915#9906]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-4/igt@kms_vrr@max-min.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu-1: NOTRUN -> [SKIP][417] ([i915#9906]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-dg1: NOTRUN -> [SKIP][418] ([i915#9906]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-13/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][419] ([i915#2437]) +2 other tests skip [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk8/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][420] ([i915#2437]) +1 other test skip [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-7/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][421] ([i915#2436]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-3/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@mi-rpc: - shard-rkl: NOTRUN -> [SKIP][422] ([i915#2434]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-5/igt@perf@mi-rpc.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][423] ([i915#2433]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-1/igt@perf@unprivileged-single-ctx-counters.html - shard-dg1: NOTRUN -> [SKIP][424] ([i915#2433]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-16/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][425] ([i915#4349]) +4 other tests fail [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-8/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@busy-hang@ccs0: - shard-mtlp: [PASS][426] -> [DMESG-WARN][427] ([i915#13723]) +1 other test dmesg-warn [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-mtlp-7/igt@perf_pmu@busy-hang@ccs0.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-7/igt@perf_pmu@busy-hang@ccs0.html * igt@perf_pmu@busy-hang@vcs1: - shard-mtlp: [PASS][428] -> [ABORT][429] ([i915#13193] / [i915#13723]) +5 other tests abort [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-mtlp-7/igt@perf_pmu@busy-hang@vcs1.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-7/igt@perf_pmu@busy-hang@vcs1.html * igt@perf_pmu@render-node-busy-idle@vcs0: - shard-dg1: [PASS][430] -> [FAIL][431] ([i915#4349]) +3 other tests fail [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg1-17/igt@perf_pmu@render-node-busy-idle@vcs0.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-15/igt@perf_pmu@render-node-busy-idle@vcs0.html * igt@perf_pmu@render-node-busy-idle@vcs1: - shard-mtlp: [PASS][432] -> [FAIL][433] ([i915#4349]) +4 other tests fail [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-mtlp-4/igt@perf_pmu@render-node-busy-idle@vcs1.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-4/igt@perf_pmu@render-node-busy-idle@vcs1.html * igt@perf_pmu@semaphore-busy@vecs0: - shard-mtlp: NOTRUN -> [FAIL][434] ([i915#4349]) +3 other tests fail [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-5/igt@perf_pmu@semaphore-busy@vecs0.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [SKIP][435] ([i915#14121]) +1 other test skip [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-3/igt@prime_mmap@test_aperture_limit.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][436] ([i915#3708]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-6/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][437] ([i915#3291] / [i915#3708]) [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-11/igt@prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][438] ([i915#3291] / [i915#3708]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-1/igt@prime_vgem@basic-write.html - shard-mtlp: NOTRUN -> [SKIP][439] ([i915#10216] / [i915#3708]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-7/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][440] ([i915#3708] / [i915#4077]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-8/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-write-hang: - shard-rkl: NOTRUN -> [SKIP][441] ([i915#3708]) +1 other test skip [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-8/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@bind-unbind-vf@vf-5: - shard-mtlp: NOTRUN -> [FAIL][442] ([i915#12910]) +9 other tests fail [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-3/igt@sriov_basic@bind-unbind-vf@vf-5.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all: - shard-tglu-1: NOTRUN -> [FAIL][443] ([i915#12910]) +9 other tests fail [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-all.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][444] ([i915#9917]) +1 other test skip [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-10/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-rkl: NOTRUN -> [SKIP][445] ([i915#9917]) [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@sysfs_heartbeat_interval@precise: - shard-rkl: NOTRUN -> [FAIL][446] ([i915#14018]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-3/igt@sysfs_heartbeat_interval@precise.html #### Possible fixes #### * igt@gem_ctx_isolation@preservation-reset@ccs0: - shard-mtlp: [DMESG-WARN][447] ([i915#13723]) -> [PASS][448] [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-mtlp-7/igt@gem_ctx_isolation@preservation-reset@ccs0.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-5/igt@gem_ctx_isolation@preservation-reset@ccs0.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][449] ([i915#12714] / [i915#5784]) -> [PASS][450] [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg1-15/igt@gem_eio@unwedge-stress.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-18/igt@gem_eio@unwedge-stress.html * igt@gem_pxp@create-valid-protected-context: - shard-rkl: [TIMEOUT][451] ([i915#12964]) -> [PASS][452] [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-rkl-3/igt@gem_pxp@create-valid-protected-context.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-8/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-rkl: [TIMEOUT][453] ([i915#12917] / [i915#12964]) -> [PASS][454] [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-rkl-1/igt@gem_pxp@verify-pxp-stale-buf-execution.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-8/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_tiled_swapping@non-threaded: - shard-rkl: [FAIL][455] ([i915#12941]) -> [PASS][456] [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-rkl-3/igt@gem_tiled_swapping@non-threaded.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-1/igt@gem_tiled_swapping@non-threaded.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [INCOMPLETE][457] ([i915#12455] / [i915#13820]) -> [PASS][458] +1 other test pass [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-rkl: [FAIL][459] ([i915#12942]) -> [PASS][460] +1 other test pass [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-rkl-7/igt@i915_pm_rc6_residency@rc6-accuracy.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-8/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [FAIL][461] ([i915#3591]) -> [PASS][462] [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-snb: [FAIL][463] ([i915#13653]) -> [PASS][464] [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-snb6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-snb7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [FAIL][465] ([i915#13566]) -> [PASS][466] +3 other tests pass [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-tglu: [FAIL][467] ([i915#13566]) -> [PASS][468] +3 other tests pass [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-256x85.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg2: [SKIP][469] ([i915#3555]) -> [PASS][470] [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg2-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1: - shard-snb: [FAIL][471] ([i915#11832] / [i915#13734]) -> [PASS][472] +1 other test pass [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-snb6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-snb6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-vga1-hdmi-a1.html * igt@kms_flip@absolute-wf_vblank-interruptible: - shard-rkl: [DMESG-WARN][473] ([i915#12917] / [i915#12964]) -> [PASS][474] [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-rkl-3/igt@kms_flip@absolute-wf_vblank-interruptible.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-7/igt@kms_flip@absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1: - shard-tglu: [FAIL][475] ([i915#13734]) -> [PASS][476] +2 other tests pass [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-tglu-10/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-tglu-7/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html * igt@kms_flip@flip-vs-fences@a-hdmi-a1: - shard-rkl: [DMESG-WARN][477] ([i915#12964]) -> [PASS][478] +25 other tests pass [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-rkl-7/igt@kms_flip@flip-vs-fences@a-hdmi-a1.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-7/igt@kms_flip@flip-vs-fences@a-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen: - shard-snb: [SKIP][479] -> [PASS][480] +2 other tests pass [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2: [SKIP][481] ([i915#3555] / [i915#8228]) -> [PASS][482] [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg2-1/igt@kms_hdr@static-toggle-dpms.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-10/igt@kms_hdr@static-toggle-dpms.html * igt@kms_pm_rpm@i2c: - shard-dg1: [DMESG-WARN][483] ([i915#4423]) -> [PASS][484] +3 other tests pass [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg1-18/igt@kms_pm_rpm@i2c.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-16/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][485] ([i915#9519]) -> [PASS][486] [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][487] ([i915#9519]) -> [PASS][488] +1 other test pass [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@perf_pmu@busy-hang@rcs0: - shard-mtlp: [ABORT][489] ([i915#13193] / [i915#13723]) -> [PASS][490] +3 other tests pass [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-mtlp-7/igt@perf_pmu@busy-hang@rcs0.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-mtlp-7/igt@perf_pmu@busy-hang@rcs0.html * igt@prime_self_import@export-vs-gem_close-race: - shard-dg1: [FAIL][491] -> [PASS][492] [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg1-14/igt@prime_self_import@export-vs-gem_close-race.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-15/igt@prime_self_import@export-vs-gem_close-race.html - shard-snb: [FAIL][493] -> [PASS][494] [493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-snb6/igt@prime_self_import@export-vs-gem_close-race.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-snb6/igt@prime_self_import@export-vs-gem_close-race.html #### Warnings #### * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: [FAIL][495] ([i915#14040]) -> [TIMEOUT][496] ([i915#12917] / [i915#12964]) [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-rkl-3/igt@gem_pxp@hw-rejects-pxp-buffer.html [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-4/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@kms_big_fb@4-tiled-8bpp-rotate-0: - shard-dg1: [SKIP][497] ([i915#4538] / [i915#5286]) -> [SKIP][498] ([i915#4423] / [i915#4538] / [i915#5286]) +1 other test skip [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg1-18/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-16/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][499] ([i915#6095]) -> [SKIP][500] ([i915#14098] / [i915#6095]) +3 other tests skip [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-rkl-8/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][501] ([i915#14098] / [i915#6095]) -> [SKIP][502] ([i915#6095]) +2 other tests skip [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-rkl-3/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-2.html [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-8/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs: - shard-dg1: [SKIP][503] ([i915#6095]) -> [SKIP][504] ([i915#4423] / [i915#6095]) +1 other test skip [503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg1-19/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-16/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html * igt@kms_content_protection@legacy: - shard-dg2: [FAIL][505] ([i915#7173]) -> [SKIP][506] ([i915#7118] / [i915#9424]) [505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg2-10/igt@kms_content_protection@legacy.html [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-8/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-dg2: [SKIP][507] ([i915#9424]) -> [FAIL][508] ([i915#7173]) [507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg2-3/igt@kms_content_protection@lic-type-0.html [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-11/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][509] ([i915#9433]) -> [SKIP][510] ([i915#9424]) [509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg1-12/igt@kms_content_protection@mei-interface.html [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-15/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-snb: [INCOMPLETE][511] ([i915#8816]) -> [SKIP][512] [511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-snb6/igt@kms_content_protection@srm.html [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-snb4/igt@kms_content_protection@srm.html * igt@kms_flip@flip-vs-suspend: - shard-glk: [INCOMPLETE][513] ([i915#12745] / [i915#4839]) -> [INCOMPLETE][514] ([i915#12745] / [i915#4839] / [i915#6113]) [513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-glk6/igt@kms_flip@flip-vs-suspend.html [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk3/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: [INCOMPLETE][515] ([i915#12745]) -> [INCOMPLETE][516] ([i915#12745] / [i915#6113]) [515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-glk6/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-glk3/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg1: [SKIP][517] ([i915#8708]) -> [SKIP][518] ([i915#4423] / [i915#8708]) [517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu: - shard-dg2: [SKIP][519] ([i915#3458]) -> [SKIP][520] ([i915#10433] / [i915#3458]) +2 other tests skip [519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-onoff: - shard-dg1: [SKIP][521] ([i915#3458] / [i915#4423]) -> [SKIP][522] ([i915#3458]) [521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-onoff.html [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt: - shard-dg2: [SKIP][523] ([i915#10433] / [i915#3458]) -> [SKIP][524] ([i915#3458]) [523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move: - shard-dg1: [SKIP][525] ([i915#4423]) -> [SKIP][526] [525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-dg1: [SKIP][527] -> [SKIP][528] ([i915#4423]) [527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu.html [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][529] ([i915#4070] / [i915#4816]) -> [SKIP][530] ([i915#4816]) [529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-dg1: [SKIP][531] ([i915#12247]) -> [SKIP][532] ([i915#12247] / [i915#4423]) +1 other test skip [531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg1-17/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-16/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_psr@fbc-psr-cursor-blt: - shard-dg1: [SKIP][533] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][534] ([i915#1072] / [i915#9732]) [533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg1-15/igt@kms_psr@fbc-psr-cursor-blt.html [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-19/igt@kms_psr@fbc-psr-cursor-blt.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg1: [SKIP][535] ([i915#8623]) -> [SKIP][536] ([i915#4423] / [i915#8623]) [535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16433/shard-dg1-18/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/shard-dg1-17/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030 [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808 [i915#11832]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11832 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12353]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353 [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#12455]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12455 [i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12714]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12714 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12941]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12941 [i915#12942]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12942 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#12967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12967 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193 [i915#13304]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13304 [i915#13353]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13353 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13427]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13427 [i915#13447]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13447 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13653]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13653 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13723 [i915#13734]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13734 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781 [i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786 [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820 [i915#13821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14018]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14018 [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033 [i915#14040]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14040 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14076]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14076 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036 [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862 [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816 [i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823 [i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 [i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8326 -> IGTPW_12998 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_16433: 830407db6fa5a871d1a6fcba1e51b42899ff57f6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12998: 12998 IGT_8326: 8326 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12998/index.html [-- Attachment #2: Type: text/html, Size: 178469 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.Full: failure for series starting with [i-g-t,v2,1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions 2025-04-17 8:52 [PATCH i-g-t v2 1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions Jesse.zhang@amd.com ` (5 preceding siblings ...) 2025-04-18 1:12 ` ✗ i915.CI.Full: failure for series starting with [i-g-t,v2,1/2] " Patchwork @ 2025-04-18 3:41 ` Patchwork 6 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-04-18 3:41 UTC (permalink / raw) To: Jesse.zhang@amd.com; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 77049 bytes --] == Series Details == Series: series starting with [i-g-t,v2,1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions URL : https://patchwork.freedesktop.org/series/147878/ State : failure == Summary == CI Bug Log - changes from XEIGT_8326_FULL -> XEIGTPW_12998_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12998_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12998_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 -> 3) ------------------------------ Missing (1): shard-adlp Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12998_FULL: ### IGT changes ### #### Possible regressions #### * igt@xe_pmu@gt-frequency: - shard-dg2-set2: [PASS][1] -> [FAIL][2] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-436/igt@xe_pmu@gt-frequency.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-432/igt@xe_pmu@gt-frequency.html Known issues ------------ Here are the changes found in XEIGTPW_12998_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-2-4-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][3] ([Intel XE#2550] / [Intel XE#3767]) +15 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-2-4-rc-ccs-cc.html * igt@kms_async_flips@test-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#664]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-3/igt@kms_async_flips@test-cursor-atomic.html * igt@kms_big_fb@4-tiled-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#316]) +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#2327]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1407]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +4 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1124]) +6 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +4 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [PASS][11] -> [SKIP][12] ([Intel XE#2314] / [Intel XE#2894]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#2191]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-436/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@linear-tiling-3-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#367]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#367]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#455] / [Intel XE#787]) +42 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#2907]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2887]) +6 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#3432]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#787]) +197 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2887]) +6 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [PASS][23] -> [INCOMPLETE][24] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/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-dp-4: - shard-dg2-set2: [PASS][25] -> [INCOMPLETE][26] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#4418]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-3/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color@ctm-0-50: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2325]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#306]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-7/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#306]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-436/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#373]) +4 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-3/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2252]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#373]) +5 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_content_protection@atomic: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#3278]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-8/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][35] ([Intel XE#1178]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-3/igt@kms_content_protection@atomic@pipe-a-dp-2.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][36] ([Intel XE#1178]) +2 other tests fail [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-436/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_content_protection@type1: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2341]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#1424]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-8/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#2321]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2321]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-6/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#308]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-432/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2320]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#309]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-6/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-dg2-set2: [PASS][44] -> [SKIP][45] ([Intel XE#309]) +4 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-436/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-bmg: [PASS][46] -> [SKIP][47] ([Intel XE#2291]) +5 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-3/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#309]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-bmg: [PASS][49] -> [FAIL][50] ([Intel XE#1475]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2-set2: [PASS][51] -> [SKIP][52] ([Intel XE#4302]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-463/igt@kms_display_modes@extended-mode-basic.html [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_display_modes@extended-mode-basic.html - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#4302]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-7/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_aux_dev: - shard-bmg: [PASS][54] -> [SKIP][55] ([Intel XE#3009]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-1/igt@kms_dp_aux_dev.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_dp_aux_dev.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#4294]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-2/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area: - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#4422]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-7/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html * igt@kms_feature_discovery@display-2x: - shard-bmg: [PASS][58] -> [SKIP][59] ([Intel XE#2373]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-3/igt@kms_feature_discovery@display-2x.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2316]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][61] ([Intel XE#3321]) +2 other tests fail [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-modeset: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#1421]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-6/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][63] -> [SKIP][64] ([Intel XE#2316]) +3 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-2/igt@kms_flip@2x-nonexisting-fb.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_flip@2x-nonexisting-fb.html - shard-dg2-set2: [PASS][65] -> [SKIP][66] ([Intel XE#310]) +8 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-432/igt@kms_flip@2x-nonexisting-fb.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#310]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [PASS][68] -> [FAIL][69] ([Intel XE#2882]) +2 other tests fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-2/igt@kms_flip@2x-plain-flip-fb-recreate.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-7/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@bo-too-big-interruptible@a-edp1: - shard-lnl: NOTRUN -> [TIMEOUT][70] ([Intel XE#1504]) +1 other test timeout [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-3/igt@kms_flip@bo-too-big-interruptible@a-edp1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6: - shard-dg2-set2: [PASS][71] -> [FAIL][72] ([Intel XE#301]) +1 other test fail [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a6.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [PASS][73] -> [FAIL][74] ([Intel XE#301]) +3 other tests fail [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#1401] / [Intel XE#1745]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#1401]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2293] / [Intel XE#2380]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#2293]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#651]) +7 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2311]) +11 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#651]) +8 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#4141]) +7 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - shard-dg2-set2: [PASS][83] -> [SKIP][84] ([Intel XE#656]) +9 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2312]) +5 other tests skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#656]) +29 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2313]) +8 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1469]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#653]) +13 other tests skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#656]) +13 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_hdr@static-toggle-suspend: - shard-bmg: [PASS][91] -> [SKIP][92] ([Intel XE#1503]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-7/igt@kms_hdr@static-toggle-suspend.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#1450]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-7/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html * igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1450] / [Intel XE#2568]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-7/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2925]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#455]) +11 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][97] ([Intel XE#616]) +2 other tests fail [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html * igt@kms_plane_multiple@2x-tiling-4: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#4596]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-none: - shard-bmg: [PASS][99] -> [SKIP][100] ([Intel XE#4596]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-none.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@2x-tiling-x: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#4596]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-6/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#2493]) [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-8/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#2763]) +11 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][104] ([Intel XE#2763]) +2 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b: - shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2763]) +9 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [PASS][107] -> [FAIL][108] ([Intel XE#718]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-1/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2392]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-3/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2-set2: [PASS][110] -> [SKIP][111] ([Intel XE#836]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-436/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-lnl: NOTRUN -> [SKIP][112] ([Intel XE#2893]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#2893] / [Intel XE#4608]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#4608]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#1489]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-7/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#1489]) +6 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-432/igt@kms_psr2_sf@fbc-psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-lnl: NOTRUN -> [SKIP][117] ([Intel XE#1128]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-2/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2234] / [Intel XE#2850]) +6 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-2/igt@kms_psr@fbc-psr2-cursor-plane-move.html - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1406]) +4 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-6/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#4609]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-6/igt@kms_psr@fbc-psr2-cursor-plane-move@edp-1.html * igt@kms_psr@fbc-psr2-sprite-plane-move: - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2850] / [Intel XE#929]) +6 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_psr@fbc-psr2-sprite-plane-move.html * igt@kms_rotation_crc@bad-pixel-format: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#3414]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#3414] / [Intel XE#3904]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_setmode@clone-exclusive-crtc: - shard-bmg: [PASS][124] -> [SKIP][125] ([Intel XE#1435]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-3/igt@kms_setmode@clone-exclusive-crtc.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_setmode@clone-exclusive-crtc.html - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1435]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-4/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#330]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-436/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@flip-dpms: - shard-lnl: [PASS][128] -> [ABORT][129] ([Intel XE#4624]) +1 other test abort [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-lnl-4/igt@kms_vrr@flip-dpms.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-8/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-fb-id: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#756]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-invalid-parameters: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#756]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-7/igt@kms_writeback@writeback-invalid-parameters.html * igt@xe_compute@ccs-mode-compute-kernel: - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#1447]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-7/igt@xe_compute@ccs-mode-compute-kernel.html * igt@xe_compute_preempt@compute-preempt: - shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-463/igt@xe_compute_preempt@compute-preempt.html * igt@xe_copy_basic@mem-copy-linear-0xfffe: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#1123]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0xfffe.html * igt@xe_eudebug@attach-debug-metadata: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2905]) +4 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-3/igt@xe_eudebug@attach-debug-metadata.html * igt@xe_eudebug@basic-client: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#2905]) +5 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-1/igt@xe_eudebug@basic-client.html * igt@xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2905] / [Intel XE#3889]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt@xe_eudebug_online@interrupt-all-set-breakpoint: - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#2905]) +9 other tests skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-436/igt@xe_eudebug_online@interrupt-all-set-breakpoint.html * igt@xe_eudebug_online@set-breakpoint-sigint-debugger: - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#4577]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-6/igt@xe_eudebug_online@set-breakpoint-sigint-debugger.html * igt@xe_eudebug_sriov@deny-eudebug: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#4518]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-3/igt@xe_eudebug_sriov@deny-eudebug.html * igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#688]) +5 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-7/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-reopen.html * igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap: - shard-dg2-set2: [PASS][142] -> [SKIP][143] ([Intel XE#1392]) +7 other tests skip [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-436/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#1392]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_basic@multigpu-no-exec-rebind: - shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2322]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-rebind.html * igt@xe_exec_basic@multigpu-once-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][146] ([Intel XE#1392]) +4 other tests skip [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-3/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#288]) +17 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt@xe_exec_threads@threads-hang-rebind-err: - shard-dg2-set2: [PASS][148] -> [DMESG-WARN][149] ([Intel XE#3876]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-432/igt@xe_exec_threads@threads-hang-rebind-err.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@xe_exec_threads@threads-hang-rebind-err.html * igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit: - shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#2229]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-2/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html * igt@xe_live_ktest@xe_eudebug: - shard-bmg: NOTRUN -> [SKIP][151] ([Intel XE#2833]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: [PASS][152] -> [FAIL][153] ([Intel XE#1999]) +2 other tests fail [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-432/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-436/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_media_fill@media-fill: - shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#2459] / [Intel XE#2596]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-3/igt@xe_media_fill@media-fill.html * igt@xe_oa@enable-disable@ccs-0: - shard-lnl: NOTRUN -> [FAIL][155] ([Intel XE#4804]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-8/igt@xe_oa@enable-disable@ccs-0.html * igt@xe_oa@enable-disable@rcs-0: - shard-bmg: NOTRUN -> [FAIL][156] ([Intel XE#4804]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-3/igt@xe_oa@enable-disable@rcs-0.html * igt@xe_oa@invalid-oa-exponent: - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#2541] / [Intel XE#3573]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-432/igt@xe_oa@invalid-oa-exponent.html * igt@xe_pat@pat-index-xelpg: - shard-lnl: NOTRUN -> [SKIP][158] ([Intel XE#979]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-4/igt@xe_pat@pat-index-xelpg.html * igt@xe_pm@d3cold-multiple-execs: - shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#2284] / [Intel XE#366]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-463/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@s3-d3hot-basic-exec: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#584]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-4/igt@xe_pm@s3-d3hot-basic-exec.html * igt@xe_pmu@all-fn-engine-activity-load: - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#4650]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@xe_pmu@all-fn-engine-activity-load.html * igt@xe_pmu@fn-engine-activity-sched-if-idle: - shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#4650]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-7/igt@xe_pmu@fn-engine-activity-sched-if-idle.html * igt@xe_pxp@pxp-stale-queue-post-termination-irq: - shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#4733]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-1/igt@xe_pxp@pxp-stale-queue-post-termination-irq.html * igt@xe_pxp@pxp-termination-key-update-post-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#4733]) +2 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@xe_pxp@pxp-termination-key-update-post-suspend.html * igt@xe_query@multigpu-query-invalid-query: - shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#944]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-4/igt@xe_query@multigpu-query-invalid-query.html * igt@xe_query@multigpu-query-mem-usage: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#944]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@xe_query@multigpu-query-mem-usage.html * igt@xe_query@multigpu-query-topology: - shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#944]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@xe_query@multigpu-query-topology.html * igt@xe_render_copy@render-stress-2-copies: - shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#4814]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@xe_render_copy@render-stress-2-copies.html * igt@xe_spin_batch@spin-mem-copy: - shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#4821]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-432/igt@xe_spin_batch@spin-mem-copy.html * igt@xe_sriov_auto_provisioning@fair-allocation: - shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#4130]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-432/igt@xe_sriov_auto_provisioning@fair-allocation.html * igt@xe_sriov_scheduling@nonpreempt-engine-resets: - shard-bmg: NOTRUN -> [SKIP][171] ([Intel XE#4351]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html #### Possible fixes #### * igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries-display-off: - shard-lnl: [ABORT][172] ([Intel XE#4624]) -> [PASS][173] +1 other test pass [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-lnl-7/igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries-display-off.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-8/igt@intel_sysfs_debugfs@xe-debugfs-read-all-entries-display-off.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: [SKIP][174] ([Intel XE#2191]) -> [PASS][175] +1 other test pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-436/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [DMESG-WARN][176] ([Intel XE#3428]) -> [PASS][177] +2 other tests pass [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2-set2: [SKIP][178] ([Intel XE#309]) -> [PASS][179] +3 other tests pass [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-464/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-463/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [SKIP][180] ([Intel XE#2291]) -> [PASS][181] +3 other tests pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [SKIP][182] ([Intel XE#4302]) -> [PASS][183] [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-4/igt@kms_display_modes@extended-mode-basic.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-1/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-bmg: [SKIP][184] ([Intel XE#1340]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-4/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [SKIP][186] ([Intel XE#4294]) -> [PASS][187] [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-4/igt@kms_dp_linktrain_fallback@dp-fallback.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-7/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-dg2-set2: [SKIP][188] ([Intel XE#310]) -> [PASS][189] +6 other tests pass [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-464/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-432/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-bmg: [SKIP][190] ([Intel XE#2316]) -> [PASS][191] +4 other tests pass [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-4/igt@kms_flip@2x-modeset-vs-vblank-race.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-6/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-expired-vblank@c-dp4: - shard-dg2-set2: [FAIL][192] ([Intel XE#301] / [Intel XE#3321]) -> [PASS][193] [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@c-dp4.html * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6: - shard-dg2-set2: [FAIL][194] ([Intel XE#301]) -> [PASS][195] +2 other tests pass [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-463/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a6.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-lnl: [FAIL][196] ([Intel XE#886]) -> [PASS][197] +1 other test pass [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-lnl-3/igt@kms_flip@plain-flip-ts-check-interruptible.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-6/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: - shard-dg2-set2: [SKIP][198] ([Intel XE#656]) -> [PASS][199] +8 other tests pass [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-463/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [SKIP][200] ([Intel XE#3012]) -> [PASS][201] [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_plane_cursor@viewport: - shard-dg2-set2: [FAIL][202] ([Intel XE#616]) -> [PASS][203] +1 other test pass [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-436/igt@kms_plane_cursor@viewport.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-463/igt@kms_plane_cursor@viewport.html * igt@kms_plane_multiple@2x-tiling-none: - shard-dg2-set2: [SKIP][204] ([Intel XE#4596]) -> [PASS][205] [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-464/igt@kms_plane_multiple@2x-tiling-none.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-463/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@2x-tiling-x: - shard-bmg: [SKIP][206] ([Intel XE#4596]) -> [PASS][207] [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-4/igt@kms_plane_multiple@2x-tiling-x.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [FAIL][208] ([Intel XE#718]) -> [PASS][209] [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2-set2: [SKIP][210] ([Intel XE#836]) -> [PASS][211] [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-464/igt@kms_pm_rpm@modeset-non-lpsp.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-463/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][212] ([Intel XE#4459]) -> [PASS][213] +1 other test pass [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@xe_exec_basic@multigpu-once-rebind: - shard-dg2-set2: [SKIP][214] ([Intel XE#1392]) -> [PASS][215] +6 other tests pass [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-432/igt@xe_exec_basic@multigpu-once-rebind.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-433/igt@xe_exec_basic@multigpu-once-rebind.html * igt@xe_pm@s4-basic: - shard-lnl: [ABORT][216] ([Intel XE#1794]) -> [PASS][217] [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-lnl-2/igt@xe_pm@s4-basic.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-lnl-5/igt@xe_pm@s4-basic.html #### Warnings #### * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][218] ([Intel XE#787]) -> [SKIP][219] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-433/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-6.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][220] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][221] ([Intel XE#787]) +10 other tests skip [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html * igt@kms_content_protection@atomic: - shard-bmg: [SKIP][222] ([Intel XE#2341]) -> [FAIL][223] ([Intel XE#1178]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-4/igt@kms_content_protection@atomic.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-3/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-dg2-set2: [FAIL][224] ([Intel XE#1178]) -> [SKIP][225] ([Intel XE#455]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-463/igt@kms_content_protection@atomic-dpms.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [FAIL][226] ([Intel XE#1178]) -> [SKIP][227] ([Intel XE#2341]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-7/igt@kms_content_protection@lic-type-0.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-dg2-set2: [SKIP][228] ([Intel XE#455]) -> [FAIL][229] ([Intel XE#1178]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-464/igt@kms_content_protection@srm.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-436/igt@kms_content_protection@srm.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6: - shard-dg2-set2: [SKIP][230] ([i915#3804]) -> [SKIP][231] ([Intel XE#4494] / [i915#3804]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-436/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-436/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [FAIL][232] ([Intel XE#3321]) -> [SKIP][233] ([Intel XE#2316]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [SKIP][234] ([Intel XE#2316]) -> [FAIL][235] ([Intel XE#3321]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][236] ([Intel XE#2311]) -> [SKIP][237] ([Intel XE#2312]) +14 other tests skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][238] ([Intel XE#651]) -> [SKIP][239] ([Intel XE#656]) +13 other tests skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][240] ([Intel XE#2312]) -> [SKIP][241] ([Intel XE#4141]) +9 other tests skip [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][242] ([Intel XE#4141]) -> [SKIP][243] ([Intel XE#2312]) +9 other tests skip [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][244] ([Intel XE#2312]) -> [SKIP][245] ([Intel XE#2311]) +15 other tests skip [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt: - shard-dg2-set2: [SKIP][246] ([Intel XE#656]) -> [SKIP][247] ([Intel XE#651]) +15 other tests skip [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][248] ([Intel XE#656]) -> [SKIP][249] ([Intel XE#653]) +15 other tests skip [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: [SKIP][250] ([Intel XE#653]) -> [SKIP][251] ([Intel XE#656]) +12 other tests skip [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][252] ([Intel XE#2313]) -> [SKIP][253] ([Intel XE#2312]) +12 other tests skip [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][254] ([Intel XE#2312]) -> [SKIP][255] ([Intel XE#2313]) +17 other tests skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-dg2-set2: [SKIP][256] ([Intel XE#4596]) -> [SKIP][257] ([Intel XE#455]) [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-464/igt@kms_plane_multiple@2x-tiling-yf.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-432/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2-set2: [FAIL][258] ([Intel XE#1729]) -> [SKIP][259] ([Intel XE#362]) [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][260] ([Intel XE#1500]) -> [SKIP][261] ([Intel XE#362]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@xe_module_load@load: - shard-bmg: ([PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [PASS][267], [PASS][268], [PASS][269], [DMESG-WARN][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [SKIP][279], [PASS][280], [PASS][281], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287]) ([Intel XE#2457] / [Intel XE#3428]) -> ([PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [SKIP][305], [PASS][306], [PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313]) ([Intel XE#2457]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-1/igt@xe_module_load@load.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-4/igt@xe_module_load@load.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-4/igt@xe_module_load@load.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-2/igt@xe_module_load@load.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-1/igt@xe_module_load@load.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-3/igt@xe_module_load@load.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-3/igt@xe_module_load@load.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-3/igt@xe_module_load@load.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-6/igt@xe_module_load@load.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-6/igt@xe_module_load@load.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-6/igt@xe_module_load@load.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-7/igt@xe_module_load@load.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-7/igt@xe_module_load@load.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-7/igt@xe_module_load@load.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-2/igt@xe_module_load@load.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-2/igt@xe_module_load@load.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-7/igt@xe_module_load@load.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-6/igt@xe_module_load@load.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-4/igt@xe_module_load@load.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-4/igt@xe_module_load@load.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-1/igt@xe_module_load@load.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-1/igt@xe_module_load@load.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-6/igt@xe_module_load@load.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-4/igt@xe_module_load@load.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-3/igt@xe_module_load@load.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8326/shard-bmg-2/igt@xe_module_load@load.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-2/igt@xe_module_load@load.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-2/igt@xe_module_load@load.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-2/igt@xe_module_load@load.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-2/igt@xe_module_load@load.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-6/igt@xe_module_load@load.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-6/igt@xe_module_load@load.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-6/igt@xe_module_load@load.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-3/igt@xe_module_load@load.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-3/igt@xe_module_load@load.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-3/igt@xe_module_load@load.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-7/igt@xe_module_load@load.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-7/igt@xe_module_load@load.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-7/igt@xe_module_load@load.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-7/igt@xe_module_load@load.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-3/igt@xe_module_load@load.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-1/igt@xe_module_load@load.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-1/igt@xe_module_load@load.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-1/igt@xe_module_load@load.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-1/igt@xe_module_load@load.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-1/igt@xe_module_load@load.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@xe_module_load@load.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@xe_module_load@load.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@xe_module_load@load.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@xe_module_load@load.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@xe_module_load@load.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/shard-bmg-4/igt@xe_module_load@load.html [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#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [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#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [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#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [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#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [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#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#3876]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3876 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351 [Intel XE#4418]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4418 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494 [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518 [Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4577 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4624 [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4804]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4804 [Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814 [Intel XE#4821]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4821 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [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#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [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#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8326 -> IGTPW_12998 * Linux: xe-2965-1afb38d5acb616dc76381ec0d80b081106146bbd -> xe-2967-830407db6fa5a871d1a6fcba1e51b42899ff57f6 IGTPW_12998: 12998 IGT_8326: 8326 xe-2965-1afb38d5acb616dc76381ec0d80b081106146bbd: 1afb38d5acb616dc76381ec0d80b081106146bbd xe-2967-830407db6fa5a871d1a6fcba1e51b42899ff57f6: 830407db6fa5a871d1a6fcba1e51b42899ff57f6 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12998/index.html [-- Attachment #2: Type: text/html, Size: 90637 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH i-g-t v2 1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions
@ 2025-04-18 2:29 Jesse.zhang@amd.com
0 siblings, 0 replies; 11+ messages in thread
From: Jesse.zhang@amd.com @ 2025-04-18 2:29 UTC (permalink / raw)
To: igt-dev
Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig, Kamil Konieczny,
Jesse.zhang@amd.com, Jesse . Zhang, Sunil Khatri
Add UAPI definitions for queue priority levels (NORMAL_LOW, LOW, etc.)
and secure queue flag in amdgpu_drm.h. This matches the libdrm changes
in commit fdf384d4b546 ("amdgpu: add priority and secure flags for user queues").
https://gitlab.freedesktop.org/mesa/drm/-/commit/fdf384d4b546850bc4c200541c42d29a62b2eca7
Related driver patches provided by Alex:
https://lists.freedesktop.org/archives/amd-gfx/2025-April/122782.html
https://lists.freedesktop.org/archives/amd-gfx/2025-April/122780.html
https://lists.freedesktop.org/archives/amd-gfx/2025-April/122786.html
v2: In general, UAPI changes should be part of a different change and only uapi should be part of it (Sunil)
Signed-off-by: Jesse.Zhang <Jesse.zhang@amd.com>
Reviewed-by: Sunil Khatri <sunil.khatri@amd.com>
---
include/drm-uapi/amdgpu_drm.h | 12 +++++++++++-
1 file changed, 11 insertions(+), 1 deletion(-)
diff --git a/include/drm-uapi/amdgpu_drm.h b/include/drm-uapi/amdgpu_drm.h
index 8191d0bd0..3f4813879 100644
--- a/include/drm-uapi/amdgpu_drm.h
+++ b/include/drm-uapi/amdgpu_drm.h
@@ -329,6 +329,16 @@ union drm_amdgpu_ctx {
#define AMDGPU_USERQ_OP_CREATE 1
#define AMDGPU_USERQ_OP_FREE 2
+/* queue priority levels */
+#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_MASK 0x3
+#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_SHIFT 0
+#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_NORMAL_LOW 0
+#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_LOW 1
+#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_NORMAL_HIGH 2
+#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_PRIORITY_HIGH 3 /* admin only */
+/* for queues that need access to protected content */
+#define AMDGPU_USERQ_CREATE_FLAGS_QUEUE_SECURE (1 << 2)
+
/*
* This structure is a container to pass input configuration
* info for all supported userqueue related operations.
@@ -355,7 +365,7 @@ struct drm_amdgpu_userq_in {
* and doorbell_offset in the doorbell bo.
*/
__u32 doorbell_offset;
- __u32 _pad;
+ __u32 flags;
/**
* @queue_va: Virtual address of the GPU memory which holds the queue
* object. The queue holds the workload packets.
--
2.25.1
^ permalink raw reply related [flat|nested] 11+ messages in threadend of thread, other threads:[~2025-04-22 8:21 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-04-17 8:52 [PATCH i-g-t v2 1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions Jesse.zhang@amd.com 2025-04-17 8:52 ` [PATCH i-g-t v2 2/2] lib/amdgpu: Implement priority and secure flags for user queues Jesse.zhang@amd.com 2025-04-17 12:44 ` Khatri, Sunil 2025-04-17 12:42 ` [PATCH i-g-t v2 1/2] drm-uapi/amdgpu: Add queue priority and secure flags definitions Khatri, Sunil 2025-04-17 13:21 ` ✗ Xe.CI.BAT: failure for series starting with [i-g-t,v2,1/2] " Patchwork 2025-04-17 13:41 ` ✓ i915.CI.BAT: success " Patchwork 2025-04-17 16:37 ` [PATCH i-g-t v2 1/2] " Kamil Konieczny 2025-04-22 8:21 ` Christian König 2025-04-18 1:12 ` ✗ i915.CI.Full: failure for series starting with [i-g-t,v2,1/2] " Patchwork 2025-04-18 3:41 ` ✗ Xe.CI.Full: " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2025-04-18 2:29 [PATCH i-g-t v2 1/2] " Jesse.zhang@amd.com
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox