* [igt-dev] [PATCH 1/3] xe_exec_balancer: Enable parallel submission and compute mode
@ 2023-09-15 23:33 Matthew Brost
2023-09-15 23:33 ` [igt-dev] [PATCH 2/3] xe_exec_threads: Use DRM_XE_VM_CREATE_COMPUTE_MODE when creating a compute VM Matthew Brost
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Matthew Brost @ 2023-09-15 23:33 UTC (permalink / raw)
To: igt-dev
This is now supported. Test it.
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
---
tests/intel/xe_exec_balancer.c | 21 +++++++++++++++------
1 file changed, 15 insertions(+), 6 deletions(-)
diff --git a/tests/intel/xe_exec_balancer.c b/tests/intel/xe_exec_balancer.c
index 3fb535988c..75b25ddd19 100644
--- a/tests/intel/xe_exec_balancer.c
+++ b/tests/intel/xe_exec_balancer.c
@@ -384,6 +384,12 @@ test_exec(int fd, int gt, int class, int n_exec_queues, int n_execs,
* @virtual-userptr-rebind: virtual userptr rebind
* @virtual-userptr-invalidate: virtual userptr invalidate
* @virtual-userptr-invalidate-race: virtual userptr invalidate racy
+ * @parallel-basic: parallel basic
+ * @parallel-userptr: parallel userptr
+ * @parallel-rebind: parallel rebind
+ * @parallel-userptr-rebind: parallel userptr rebind
+ * @parallel-userptr-invalidate: parallel userptr invalidate
+ * @parallel-userptr-invalidate-race: parallel userptr invalidate racy
*/
static void
@@ -461,8 +467,8 @@ test_cm(int fd, int gt, int class, int n_exec_queues, int n_execs,
};
struct drm_xe_exec_queue_create create = {
.vm_id = vm,
- .width = 1,
- .num_placements = num_placements,
+ .width = flags & PARALLEL ? num_placements : 1,
+ .num_placements = flags & PARALLEL ? 1 : num_placements,
.instances = to_user_pointer(eci),
.extensions = to_user_pointer(&ext),
};
@@ -471,6 +477,7 @@ test_cm(int fd, int gt, int class, int n_exec_queues, int n_execs,
&create), 0);
exec_queues[i] = create.exec_queue_id;
}
+ exec.num_batch_buffer = flags & PARALLEL ? num_placements : 1;
sync[0].addr = to_user_pointer(&data[0].vm_sync);
if (bo)
@@ -488,8 +495,12 @@ test_cm(int fd, int gt, int class, int n_exec_queues, int n_execs,
uint64_t batch_addr = addr + batch_offset;
uint64_t sdi_offset = (char *)&data[i].data - (char *)data;
uint64_t sdi_addr = addr + sdi_offset;
+ uint64_t batches[MAX_INSTANCE];
int e = i % n_exec_queues;
+ for (j = 0; j < num_placements && flags & PARALLEL; ++j)
+ batches[j] = batch_addr;
+
b = 0;
data[i].batch[b++] = MI_STORE_DWORD_IMM_GEN4;
data[i].batch[b++] = sdi_addr;
@@ -501,7 +512,8 @@ test_cm(int fd, int gt, int class, int n_exec_queues, int n_execs,
sync[0].addr = addr + (char *)&data[i].exec_sync - (char *)data;
exec.exec_queue_id = exec_queues[e];
- exec.address = batch_addr;
+ exec.address = flags & PARALLEL ?
+ to_user_pointer(batches) : batch_addr;
xe_exec(fd, &exec);
if (flags & REBIND && i + 1 != n_execs) {
@@ -662,9 +674,6 @@ igt_main
test_exec(fd, gt, class, 1, 0,
s->flags);
- if (s->flags & PARALLEL)
- continue;
-
igt_subtest_f("once-cm-%s", s->name)
xe_for_each_gt(fd, gt)
xe_for_each_hw_engine_class(class)
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread* [igt-dev] [PATCH 2/3] xe_exec_threads: Use DRM_XE_VM_CREATE_COMPUTE_MODE when creating a compute VM 2023-09-15 23:33 [igt-dev] [PATCH 1/3] xe_exec_balancer: Enable parallel submission and compute mode Matthew Brost @ 2023-09-15 23:33 ` Matthew Brost 2023-09-18 4:56 ` Niranjana Vishwanathapura 2023-09-15 23:33 ` [igt-dev] [PATCH 3/3] xe: Update uAPI and remove XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE Matthew Brost ` (4 subsequent siblings) 5 siblings, 1 reply; 9+ messages in thread From: Matthew Brost @ 2023-09-15 23:33 UTC (permalink / raw) To: igt-dev XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE was used creating a compute VM. This just happened to work as it is same value as DRM_XE_VM_CREATE_COMPUTE_MODE. Fix this and use correct flag, DRM_XE_VM_CREATE_COMPUTE_MODE. Signed-off-by: Matthew Brost <matthew.brost@intel.com> --- tests/intel/xe_exec_threads.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c index ae4da0568a..34bcb3d4d5 100644 --- a/tests/intel/xe_exec_threads.c +++ b/tests/intel/xe_exec_threads.c @@ -286,7 +286,7 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr, if (!vm) { vm = xe_vm_create(fd, DRM_XE_VM_CREATE_ASYNC_BIND_OPS | - XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE, 0); + DRM_XE_VM_CREATE_COMPUTE_MODE, 0); owns_vm = true; } @@ -1075,7 +1075,7 @@ static void threads(int fd, int flags) to_user_pointer(&ext)); vm_compute_mode = xe_vm_create(fd, DRM_XE_VM_CREATE_ASYNC_BIND_OPS | - XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE, + DRM_XE_VM_CREATE_COMPUTE_MODE, 0); vm_err_thread.capture = &capture; -- 2.34.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH 2/3] xe_exec_threads: Use DRM_XE_VM_CREATE_COMPUTE_MODE when creating a compute VM 2023-09-15 23:33 ` [igt-dev] [PATCH 2/3] xe_exec_threads: Use DRM_XE_VM_CREATE_COMPUTE_MODE when creating a compute VM Matthew Brost @ 2023-09-18 4:56 ` Niranjana Vishwanathapura 0 siblings, 0 replies; 9+ messages in thread From: Niranjana Vishwanathapura @ 2023-09-18 4:56 UTC (permalink / raw) To: Matthew Brost; +Cc: igt-dev On Fri, Sep 15, 2023 at 04:33:03PM -0700, Matthew Brost wrote: >XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE was used creating a compute VM. >This just happened to work as it is same value as >DRM_XE_VM_CREATE_COMPUTE_MODE. Fix this and use correct flag, >DRM_XE_VM_CREATE_COMPUTE_MODE. > >Signed-off-by: Matthew Brost <matthew.brost@intel.com> Reviewed-by: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> >--- > tests/intel/xe_exec_threads.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c >index ae4da0568a..34bcb3d4d5 100644 >--- a/tests/intel/xe_exec_threads.c >+++ b/tests/intel/xe_exec_threads.c >@@ -286,7 +286,7 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr, > > if (!vm) { > vm = xe_vm_create(fd, DRM_XE_VM_CREATE_ASYNC_BIND_OPS | >- XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE, 0); >+ DRM_XE_VM_CREATE_COMPUTE_MODE, 0); > owns_vm = true; > } > >@@ -1075,7 +1075,7 @@ static void threads(int fd, int flags) > to_user_pointer(&ext)); > vm_compute_mode = xe_vm_create(fd, > DRM_XE_VM_CREATE_ASYNC_BIND_OPS | >- XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE, >+ DRM_XE_VM_CREATE_COMPUTE_MODE, > 0); > > vm_err_thread.capture = &capture; >-- >2.34.1 > ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH 3/3] xe: Update uAPI and remove XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE 2023-09-15 23:33 [igt-dev] [PATCH 1/3] xe_exec_balancer: Enable parallel submission and compute mode Matthew Brost 2023-09-15 23:33 ` [igt-dev] [PATCH 2/3] xe_exec_threads: Use DRM_XE_VM_CREATE_COMPUTE_MODE when creating a compute VM Matthew Brost @ 2023-09-15 23:33 ` Matthew Brost 2023-09-18 4:55 ` Niranjana Vishwanathapura 2023-09-16 1:07 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [1/3] xe_exec_balancer: Enable parallel submission and compute mode Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 9+ messages in thread From: Matthew Brost @ 2023-09-15 23:33 UTC (permalink / raw) To: igt-dev XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE has been removed from uAPI, remove all references in Xe tests. Signed-off-by: Matthew Brost <matthew.brost@intel.com> --- include/drm-uapi/xe_drm.h | 27 ++++++++++----------------- tests/intel/xe_evict.c | 14 +++----------- tests/intel/xe_exec_balancer.c | 8 +------- tests/intel/xe_exec_compute_mode.c | 20 ++------------------ tests/intel/xe_exec_reset.c | 10 ++-------- tests/intel/xe_exec_threads.c | 13 ++----------- tests/intel/xe_noexec_ping_pong.c | 10 +--------- 7 files changed, 21 insertions(+), 81 deletions(-) diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h index 804c02270d..8b05573cec 100644 --- a/include/drm-uapi/xe_drm.h +++ b/include/drm-uapi/xe_drm.h @@ -3,8 +3,8 @@ * Copyright © 2023 Intel Corporation */ -#ifndef _XE_DRM_H_ -#define _XE_DRM_H_ +#ifndef _UAPI_XE_DRM_H_ +#define _UAPI_XE_DRM_H_ #include "drm.h" @@ -39,7 +39,7 @@ extern "C" { * redefine the interface more easily than an ever growing struct of * increasing complexity, and for large parts of that interface to be * entirely optional. The downside is more pointer chasing; chasing across - * the boundary with pointers encapsulated inside u64. + * the __user boundary with pointers encapsulated inside u64. * * Example chaining: * @@ -707,21 +707,14 @@ struct drm_xe_exec_queue_set_property { /** @exec_queue_id: Exec queue ID */ __u32 exec_queue_id; -#define XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY 0 +#define XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY 0 #define XE_EXEC_QUEUE_SET_PROPERTY_TIMESLICE 1 #define XE_EXEC_QUEUE_SET_PROPERTY_PREEMPTION_TIMEOUT 2 - /* - * Long running or ULLS engine mode. DMA fences not allowed in this - * mode. Must match the value of DRM_XE_VM_CREATE_COMPUTE_MODE, serves - * as a sanity check the UMD knows what it is doing. Can only be set at - * engine create time. - */ -#define XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE 3 -#define XE_EXEC_QUEUE_SET_PROPERTY_PERSISTENCE 4 -#define XE_EXEC_QUEUE_SET_PROPERTY_JOB_TIMEOUT 5 -#define XE_EXEC_QUEUE_SET_PROPERTY_ACC_TRIGGER 6 -#define XE_EXEC_QUEUE_SET_PROPERTY_ACC_NOTIFY 7 -#define XE_EXEC_QUEUE_SET_PROPERTY_ACC_GRANULARITY 8 +#define XE_EXEC_QUEUE_SET_PROPERTY_PERSISTENCE 3 +#define XE_EXEC_QUEUE_SET_PROPERTY_JOB_TIMEOUT 4 +#define XE_EXEC_QUEUE_SET_PROPERTY_ACC_TRIGGER 5 +#define XE_EXEC_QUEUE_SET_PROPERTY_ACC_NOTIFY 6 +#define XE_EXEC_QUEUE_SET_PROPERTY_ACC_GRANULARITY 7 /** @property: property to set */ __u32 property; @@ -1057,4 +1050,4 @@ struct drm_xe_vm_madvise { } #endif -#endif /* _XE_DRM_H_ */ +#endif /* _UAPI_XE_DRM_H_ */ diff --git a/tests/intel/xe_evict.c b/tests/intel/xe_evict.c index 5b64e56b45..5d8981f8da 100644 --- a/tests/intel/xe_evict.c +++ b/tests/intel/xe_evict.c @@ -252,19 +252,11 @@ test_evict_cm(int fd, struct drm_xe_engine_class_instance *eci, } for (i = 0; i < n_exec_queues; i++) { - struct drm_xe_ext_exec_queue_set_property ext = { - .base.next_extension = 0, - .base.name = XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, - .property = XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE, - .value = 1, - }; - if (flags & MULTI_VM) - exec_queues[i] = xe_exec_queue_create(fd, i & 1 ? vm2 : vm, eci, - to_user_pointer(&ext)); + exec_queues[i] = xe_exec_queue_create(fd, i & 1 ? vm2 : + vm, eci, 0); else - exec_queues[i] = xe_exec_queue_create(fd, vm, eci, - to_user_pointer(&ext)); + exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0); } for (i = 0; i < n_execs; i++) { diff --git a/tests/intel/xe_exec_balancer.c b/tests/intel/xe_exec_balancer.c index 75b25ddd19..dbb870b959 100644 --- a/tests/intel/xe_exec_balancer.c +++ b/tests/intel/xe_exec_balancer.c @@ -459,18 +459,12 @@ test_cm(int fd, int gt, int class, int n_exec_queues, int n_execs, memset(data, 0, bo_size); for (i = 0; i < n_exec_queues; i++) { - struct drm_xe_ext_exec_queue_set_property ext = { - .base.next_extension = 0, - .base.name = XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, - .property = XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE, - .value = 1, - }; struct drm_xe_exec_queue_create create = { .vm_id = vm, .width = flags & PARALLEL ? num_placements : 1, .num_placements = flags & PARALLEL ? 1 : num_placements, .instances = to_user_pointer(eci), - .extensions = to_user_pointer(&ext), + .extensions = 0, }; igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, diff --git a/tests/intel/xe_exec_compute_mode.c b/tests/intel/xe_exec_compute_mode.c index 6d10847270..02e7ef201c 100644 --- a/tests/intel/xe_exec_compute_mode.c +++ b/tests/intel/xe_exec_compute_mode.c @@ -120,15 +120,7 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci, xe_get_default_alignment(fd)); for (i = 0; (flags & EXEC_QUEUE_EARLY) && i < n_exec_queues; i++) { - struct drm_xe_ext_exec_queue_set_property ext = { - .base.next_extension = 0, - .base.name = XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, - .property = XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE, - .value = 1, - }; - - exec_queues[i] = xe_exec_queue_create(fd, vm, eci, - to_user_pointer(&ext)); + exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0); if (flags & BIND_EXECQUEUE) bind_exec_queues[i] = xe_bind_exec_queue_create(fd, vm, 0); @@ -156,15 +148,7 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci, memset(data, 0, bo_size); for (i = 0; !(flags & EXEC_QUEUE_EARLY) && i < n_exec_queues; i++) { - struct drm_xe_ext_exec_queue_set_property ext = { - .base.next_extension = 0, - .base.name = XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, - .property = XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE, - .value = 1, - }; - - exec_queues[i] = xe_exec_queue_create(fd, vm, eci, - to_user_pointer(&ext)); + exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0); if (flags & BIND_EXECQUEUE) bind_exec_queues[i] = xe_bind_exec_queue_create(fd, vm, 0); diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c index f12af4d921..7b4921cd49 100644 --- a/tests/intel/xe_exec_reset.c +++ b/tests/intel/xe_exec_reset.c @@ -536,14 +536,8 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci, memset(data, 0, bo_size); for (i = 0; i < n_exec_queues; i++) { - struct drm_xe_ext_exec_queue_set_property compute = { - .base.next_extension = 0, - .base.name = XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, - .property = XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE, - .value = 1, - }; struct drm_xe_ext_exec_queue_set_property preempt_timeout = { - .base.next_extension = to_user_pointer(&compute), + .base.next_extension = 0, .base.name = XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, .property = XE_EXEC_QUEUE_SET_PROPERTY_PREEMPTION_TIMEOUT, .value = 1000, @@ -553,7 +547,7 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci, if (flags & EXEC_QUEUE_RESET) ext = to_user_pointer(&preempt_timeout); else - ext = to_user_pointer(&compute); + ext = 0; exec_queues[i] = xe_exec_queue_create(fd, vm, eci, ext); }; diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c index 34bcb3d4d5..4bcc81f90c 100644 --- a/tests/intel/xe_exec_threads.c +++ b/tests/intel/xe_exec_threads.c @@ -313,17 +313,8 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr, } memset(data, 0, bo_size); - for (i = 0; i < n_exec_queues; i++) { - struct drm_xe_ext_exec_queue_set_property ext = { - .base.next_extension = 0, - .base.name = XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, - .property = XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE, - .value = 1, - }; - - exec_queues[i] = xe_exec_queue_create(fd, vm, eci, - to_user_pointer(&ext)); - }; + for (i = 0; i < n_exec_queues; i++) + exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0); pthread_barrier_wait(&barrier); diff --git a/tests/intel/xe_noexec_ping_pong.c b/tests/intel/xe_noexec_ping_pong.c index 3f486adf97..88b22ed11c 100644 --- a/tests/intel/xe_noexec_ping_pong.c +++ b/tests/intel/xe_noexec_ping_pong.c @@ -64,13 +64,6 @@ static void test_ping_pong(int fd, struct drm_xe_engine_class_instance *eci) * stats. */ for (i = 0; i < NUM_VMS; ++i) { - struct drm_xe_ext_exec_queue_set_property ext = { - .base.next_extension = 0, - .base.name = XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, - .property = XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE, - .value = 1, - }; - vm[i] = xe_vm_create(fd, DRM_XE_VM_CREATE_COMPUTE_MODE, 0); for (j = 0; j < NUM_BOS; ++j) { igt_debug("Creating bo size %lu for vm %u\n", @@ -82,8 +75,7 @@ static void test_ping_pong(int fd, struct drm_xe_engine_class_instance *eci) xe_vm_bind(fd, vm[i], bo[i][j], 0, 0x40000 + j*bo_size, bo_size, NULL, 0); } - exec_queues[i] = xe_exec_queue_create(fd, vm[i], eci, - to_user_pointer(&ext)); + exec_queues[i] = xe_exec_queue_create(fd, vm[i], eci, 0); } igt_info("Now sleeping for %ds.\n", SECONDS_TO_WAIT); -- 2.34.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH 3/3] xe: Update uAPI and remove XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE 2023-09-15 23:33 ` [igt-dev] [PATCH 3/3] xe: Update uAPI and remove XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE Matthew Brost @ 2023-09-18 4:55 ` Niranjana Vishwanathapura 0 siblings, 0 replies; 9+ messages in thread From: Niranjana Vishwanathapura @ 2023-09-18 4:55 UTC (permalink / raw) To: Matthew Brost; +Cc: igt-dev On Fri, Sep 15, 2023 at 04:33:04PM -0700, Matthew Brost wrote: >XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE has been removed from uAPI, >remove all references in Xe tests. > >Signed-off-by: Matthew Brost <matthew.brost@intel.com> Reviewed-by: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> >--- > include/drm-uapi/xe_drm.h | 27 ++++++++++----------------- > tests/intel/xe_evict.c | 14 +++----------- > tests/intel/xe_exec_balancer.c | 8 +------- > tests/intel/xe_exec_compute_mode.c | 20 ++------------------ > tests/intel/xe_exec_reset.c | 10 ++-------- > tests/intel/xe_exec_threads.c | 13 ++----------- > tests/intel/xe_noexec_ping_pong.c | 10 +--------- > 7 files changed, 21 insertions(+), 81 deletions(-) > >diff --git a/include/drm-uapi/xe_drm.h b/include/drm-uapi/xe_drm.h >index 804c02270d..8b05573cec 100644 >--- a/include/drm-uapi/xe_drm.h >+++ b/include/drm-uapi/xe_drm.h >@@ -3,8 +3,8 @@ > * Copyright © 2023 Intel Corporation > */ > >-#ifndef _XE_DRM_H_ >-#define _XE_DRM_H_ >+#ifndef _UAPI_XE_DRM_H_ >+#define _UAPI_XE_DRM_H_ > > #include "drm.h" > >@@ -39,7 +39,7 @@ extern "C" { > * redefine the interface more easily than an ever growing struct of > * increasing complexity, and for large parts of that interface to be > * entirely optional. The downside is more pointer chasing; chasing across >- * the boundary with pointers encapsulated inside u64. >+ * the __user boundary with pointers encapsulated inside u64. > * > * Example chaining: > * >@@ -707,21 +707,14 @@ struct drm_xe_exec_queue_set_property { > /** @exec_queue_id: Exec queue ID */ > __u32 exec_queue_id; > >-#define XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY 0 >+#define XE_EXEC_QUEUE_SET_PROPERTY_PRIORITY 0 > #define XE_EXEC_QUEUE_SET_PROPERTY_TIMESLICE 1 > #define XE_EXEC_QUEUE_SET_PROPERTY_PREEMPTION_TIMEOUT 2 >- /* >- * Long running or ULLS engine mode. DMA fences not allowed in this >- * mode. Must match the value of DRM_XE_VM_CREATE_COMPUTE_MODE, serves >- * as a sanity check the UMD knows what it is doing. Can only be set at >- * engine create time. >- */ >-#define XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE 3 >-#define XE_EXEC_QUEUE_SET_PROPERTY_PERSISTENCE 4 >-#define XE_EXEC_QUEUE_SET_PROPERTY_JOB_TIMEOUT 5 >-#define XE_EXEC_QUEUE_SET_PROPERTY_ACC_TRIGGER 6 >-#define XE_EXEC_QUEUE_SET_PROPERTY_ACC_NOTIFY 7 >-#define XE_EXEC_QUEUE_SET_PROPERTY_ACC_GRANULARITY 8 >+#define XE_EXEC_QUEUE_SET_PROPERTY_PERSISTENCE 3 >+#define XE_EXEC_QUEUE_SET_PROPERTY_JOB_TIMEOUT 4 >+#define XE_EXEC_QUEUE_SET_PROPERTY_ACC_TRIGGER 5 >+#define XE_EXEC_QUEUE_SET_PROPERTY_ACC_NOTIFY 6 >+#define XE_EXEC_QUEUE_SET_PROPERTY_ACC_GRANULARITY 7 > /** @property: property to set */ > __u32 property; > >@@ -1057,4 +1050,4 @@ struct drm_xe_vm_madvise { > } > #endif > >-#endif /* _XE_DRM_H_ */ >+#endif /* _UAPI_XE_DRM_H_ */ >diff --git a/tests/intel/xe_evict.c b/tests/intel/xe_evict.c >index 5b64e56b45..5d8981f8da 100644 >--- a/tests/intel/xe_evict.c >+++ b/tests/intel/xe_evict.c >@@ -252,19 +252,11 @@ test_evict_cm(int fd, struct drm_xe_engine_class_instance *eci, > } > > for (i = 0; i < n_exec_queues; i++) { >- struct drm_xe_ext_exec_queue_set_property ext = { >- .base.next_extension = 0, >- .base.name = XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, >- .property = XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE, >- .value = 1, >- }; >- > if (flags & MULTI_VM) >- exec_queues[i] = xe_exec_queue_create(fd, i & 1 ? vm2 : vm, eci, >- to_user_pointer(&ext)); >+ exec_queues[i] = xe_exec_queue_create(fd, i & 1 ? vm2 : >+ vm, eci, 0); > else >- exec_queues[i] = xe_exec_queue_create(fd, vm, eci, >- to_user_pointer(&ext)); >+ exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0); > } > > for (i = 0; i < n_execs; i++) { >diff --git a/tests/intel/xe_exec_balancer.c b/tests/intel/xe_exec_balancer.c >index 75b25ddd19..dbb870b959 100644 >--- a/tests/intel/xe_exec_balancer.c >+++ b/tests/intel/xe_exec_balancer.c >@@ -459,18 +459,12 @@ test_cm(int fd, int gt, int class, int n_exec_queues, int n_execs, > memset(data, 0, bo_size); > > for (i = 0; i < n_exec_queues; i++) { >- struct drm_xe_ext_exec_queue_set_property ext = { >- .base.next_extension = 0, >- .base.name = XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, >- .property = XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE, >- .value = 1, >- }; > struct drm_xe_exec_queue_create create = { > .vm_id = vm, > .width = flags & PARALLEL ? num_placements : 1, > .num_placements = flags & PARALLEL ? 1 : num_placements, > .instances = to_user_pointer(eci), >- .extensions = to_user_pointer(&ext), >+ .extensions = 0, > }; > > igt_assert_eq(igt_ioctl(fd, DRM_IOCTL_XE_EXEC_QUEUE_CREATE, >diff --git a/tests/intel/xe_exec_compute_mode.c b/tests/intel/xe_exec_compute_mode.c >index 6d10847270..02e7ef201c 100644 >--- a/tests/intel/xe_exec_compute_mode.c >+++ b/tests/intel/xe_exec_compute_mode.c >@@ -120,15 +120,7 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci, > xe_get_default_alignment(fd)); > > for (i = 0; (flags & EXEC_QUEUE_EARLY) && i < n_exec_queues; i++) { >- struct drm_xe_ext_exec_queue_set_property ext = { >- .base.next_extension = 0, >- .base.name = XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, >- .property = XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE, >- .value = 1, >- }; >- >- exec_queues[i] = xe_exec_queue_create(fd, vm, eci, >- to_user_pointer(&ext)); >+ exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0); > if (flags & BIND_EXECQUEUE) > bind_exec_queues[i] = > xe_bind_exec_queue_create(fd, vm, 0); >@@ -156,15 +148,7 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci, > memset(data, 0, bo_size); > > for (i = 0; !(flags & EXEC_QUEUE_EARLY) && i < n_exec_queues; i++) { >- struct drm_xe_ext_exec_queue_set_property ext = { >- .base.next_extension = 0, >- .base.name = XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, >- .property = XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE, >- .value = 1, >- }; >- >- exec_queues[i] = xe_exec_queue_create(fd, vm, eci, >- to_user_pointer(&ext)); >+ exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0); > if (flags & BIND_EXECQUEUE) > bind_exec_queues[i] = > xe_bind_exec_queue_create(fd, vm, 0); >diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c >index f12af4d921..7b4921cd49 100644 >--- a/tests/intel/xe_exec_reset.c >+++ b/tests/intel/xe_exec_reset.c >@@ -536,14 +536,8 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci, > memset(data, 0, bo_size); > > for (i = 0; i < n_exec_queues; i++) { >- struct drm_xe_ext_exec_queue_set_property compute = { >- .base.next_extension = 0, >- .base.name = XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, >- .property = XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE, >- .value = 1, >- }; > struct drm_xe_ext_exec_queue_set_property preempt_timeout = { >- .base.next_extension = to_user_pointer(&compute), >+ .base.next_extension = 0, > .base.name = XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, > .property = XE_EXEC_QUEUE_SET_PROPERTY_PREEMPTION_TIMEOUT, > .value = 1000, >@@ -553,7 +547,7 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci, > if (flags & EXEC_QUEUE_RESET) > ext = to_user_pointer(&preempt_timeout); > else >- ext = to_user_pointer(&compute); >+ ext = 0; > > exec_queues[i] = xe_exec_queue_create(fd, vm, eci, ext); > }; >diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c >index 34bcb3d4d5..4bcc81f90c 100644 >--- a/tests/intel/xe_exec_threads.c >+++ b/tests/intel/xe_exec_threads.c >@@ -313,17 +313,8 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr, > } > memset(data, 0, bo_size); > >- for (i = 0; i < n_exec_queues; i++) { >- struct drm_xe_ext_exec_queue_set_property ext = { >- .base.next_extension = 0, >- .base.name = XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, >- .property = XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE, >- .value = 1, >- }; >- >- exec_queues[i] = xe_exec_queue_create(fd, vm, eci, >- to_user_pointer(&ext)); >- }; >+ for (i = 0; i < n_exec_queues; i++) >+ exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0); > > pthread_barrier_wait(&barrier); > >diff --git a/tests/intel/xe_noexec_ping_pong.c b/tests/intel/xe_noexec_ping_pong.c >index 3f486adf97..88b22ed11c 100644 >--- a/tests/intel/xe_noexec_ping_pong.c >+++ b/tests/intel/xe_noexec_ping_pong.c >@@ -64,13 +64,6 @@ static void test_ping_pong(int fd, struct drm_xe_engine_class_instance *eci) > * stats. > */ > for (i = 0; i < NUM_VMS; ++i) { >- struct drm_xe_ext_exec_queue_set_property ext = { >- .base.next_extension = 0, >- .base.name = XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, >- .property = XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE, >- .value = 1, >- }; >- > vm[i] = xe_vm_create(fd, DRM_XE_VM_CREATE_COMPUTE_MODE, 0); > for (j = 0; j < NUM_BOS; ++j) { > igt_debug("Creating bo size %lu for vm %u\n", >@@ -82,8 +75,7 @@ static void test_ping_pong(int fd, struct drm_xe_engine_class_instance *eci) > xe_vm_bind(fd, vm[i], bo[i][j], 0, 0x40000 + j*bo_size, > bo_size, NULL, 0); > } >- exec_queues[i] = xe_exec_queue_create(fd, vm[i], eci, >- to_user_pointer(&ext)); >+ exec_queues[i] = xe_exec_queue_create(fd, vm[i], eci, 0); > } > > igt_info("Now sleeping for %ds.\n", SECONDS_TO_WAIT); >-- >2.34.1 > ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [1/3] xe_exec_balancer: Enable parallel submission and compute mode 2023-09-15 23:33 [igt-dev] [PATCH 1/3] xe_exec_balancer: Enable parallel submission and compute mode Matthew Brost 2023-09-15 23:33 ` [igt-dev] [PATCH 2/3] xe_exec_threads: Use DRM_XE_VM_CREATE_COMPUTE_MODE when creating a compute VM Matthew Brost 2023-09-15 23:33 ` [igt-dev] [PATCH 3/3] xe: Update uAPI and remove XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE Matthew Brost @ 2023-09-16 1:07 ` Patchwork 2023-09-16 2:25 ` [igt-dev] ✗ CI.xeBAT: failure " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-09-16 1:07 UTC (permalink / raw) To: Matthew Brost; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6075 bytes --] == Series Details == Series: series starting with [1/3] xe_exec_balancer: Enable parallel submission and compute mode URL : https://patchwork.freedesktop.org/series/123821/ State : success == Summary == CI Bug Log - changes from CI_DRM_13643 -> IGTPW_9809 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/index.html Participating hosts (40 -> 40) ------------------------------ Additional (1): fi-kbl-soraka Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9809 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_close_race@basic-threads: - fi-hsw-4770: [PASS][1] -> [INCOMPLETE][2] ([i915#2295]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/fi-hsw-4770/igt@gem_close_race@basic-threads.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/fi-hsw-4770/igt@gem_close_race@basic-threads.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][3] ([fdo#109271] / [i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][5] ([i915#1886] / [i915#7913]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@kms_dsc@dsc-basic: - fi-kbl-soraka: NOTRUN -> [SKIP][6] ([fdo#109271]) +9 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/fi-kbl-soraka/igt@kms_dsc@dsc-basic.html #### Possible fixes #### * igt@i915_selftest@live@workarounds: - bat-dg2-9: [DMESG-FAIL][7] ([i915#7913]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/bat-dg2-9/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/bat-dg2-9/igt@i915_selftest@live@workarounds.html * igt@kms_hdmi_inject@inject-audio: - fi-kbl-guc: [FAIL][9] ([IGT#3] / [i915#6121]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][11] ([i915#8668]) -> [PASS][12] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2295]: https://gitlab.freedesktop.org/drm/intel/issues/2295 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7490 -> IGTPW_9809 CI-20190529: 20190529 CI_DRM_13643: dc4cd6e4e53d46211952fe7c0e408fce3e212993 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9809: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/index.html IGT_7490: 7490 Testlist changes ---------------- +igt@xe_exec_balancer@many-cm-parallel-basic +igt@xe_exec_balancer@many-cm-parallel-rebind +igt@xe_exec_balancer@many-cm-parallel-userptr +igt@xe_exec_balancer@many-cm-parallel-userptr-invalidate +igt@xe_exec_balancer@many-cm-parallel-userptr-invalidate-race +igt@xe_exec_balancer@many-cm-parallel-userptr-rebind +igt@xe_exec_balancer@many-execqueues-cm-parallel-basic +igt@xe_exec_balancer@many-execqueues-cm-parallel-rebind +igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr +igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-invalidate +igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-invalidate-race +igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-rebind +igt@xe_exec_balancer@no-exec-cm-parallel-basic +igt@xe_exec_balancer@no-exec-cm-parallel-rebind +igt@xe_exec_balancer@no-exec-cm-parallel-userptr +igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate +igt@xe_exec_balancer@no-exec-cm-parallel-userptr-invalidate-race +igt@xe_exec_balancer@no-exec-cm-parallel-userptr-rebind +igt@xe_exec_balancer@once-cm-parallel-basic +igt@xe_exec_balancer@once-cm-parallel-rebind +igt@xe_exec_balancer@once-cm-parallel-userptr +igt@xe_exec_balancer@once-cm-parallel-userptr-invalidate +igt@xe_exec_balancer@once-cm-parallel-userptr-invalidate-race +igt@xe_exec_balancer@once-cm-parallel-userptr-rebind +igt@xe_exec_balancer@twice-cm-parallel-basic +igt@xe_exec_balancer@twice-cm-parallel-rebind +igt@xe_exec_balancer@twice-cm-parallel-userptr +igt@xe_exec_balancer@twice-cm-parallel-userptr-invalidate +igt@xe_exec_balancer@twice-cm-parallel-userptr-invalidate-race +igt@xe_exec_balancer@twice-cm-parallel-userptr-rebind -igt@kms_writeback@writeback-check-output-xrgb2101010 -igt@kms_writeback@writeback-fb-id-xrgb2101010 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/index.html [-- Attachment #2: Type: text/html, Size: 7192 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✗ CI.xeBAT: failure for series starting with [1/3] xe_exec_balancer: Enable parallel submission and compute mode 2023-09-15 23:33 [igt-dev] [PATCH 1/3] xe_exec_balancer: Enable parallel submission and compute mode Matthew Brost ` (2 preceding siblings ...) 2023-09-16 1:07 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [1/3] xe_exec_balancer: Enable parallel submission and compute mode Patchwork @ 2023-09-16 2:25 ` Patchwork 2023-09-16 11:24 ` [igt-dev] ✗ Fi.CI.IGT: " Patchwork 2023-09-20 3:42 ` [igt-dev] [PATCH 1/3] " Niranjana Vishwanathapura 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-09-16 2:25 UTC (permalink / raw) To: Matthew Brost; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3035 bytes --] == Series Details == Series: series starting with [1/3] xe_exec_balancer: Enable parallel submission and compute mode URL : https://patchwork.freedesktop.org/series/123821/ State : failure == Summary == CI Bug Log - changes from XEIGT_7490_BAT -> XEIGTPW_9809_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_9809_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_9809_BAT, please notify your bug team (lgci.bug.filing@intel.com) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_9809_BAT: ### IGT changes ### #### Possible regressions #### * igt@xe_exec_compute_mode@twice-basic: - bat-adlp-7: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7490/bat-adlp-7/igt@xe_exec_compute_mode@twice-basic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9809/bat-adlp-7/igt@xe_exec_compute_mode@twice-basic.html Known issues ------------ Here are the changes found in XEIGTPW_9809_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_evict@evict-beng-mixed-threads-small-multi-vm: - bat-dg2-oem2: [PASS][3] -> [INCOMPLETE][4] ([Intel XE#685]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7490/bat-dg2-oem2/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9809/bat-dg2-oem2/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html - bat-atsm-2: [PASS][5] -> [INCOMPLETE][6] ([Intel XE#685]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7490/bat-atsm-2/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9809/bat-atsm-2/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 [Intel XE#685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/685 Build changes ------------- * IGT: IGT_7490 -> IGTPW_9809 * Linux: xe-375-4a9681392cecd56a372d06b648f7b3a37fdd5c63 -> xe-376-9da40abcc0ccdf8fdfed4e21d76060bfcd35fe7d IGTPW_9809: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/index.html IGT_7490: 7490 xe-375-4a9681392cecd56a372d06b648f7b3a37fdd5c63: 4a9681392cecd56a372d06b648f7b3a37fdd5c63 xe-376-9da40abcc0ccdf8fdfed4e21d76060bfcd35fe7d: 9da40abcc0ccdf8fdfed4e21d76060bfcd35fe7d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9809/index.html [-- Attachment #2: Type: text/html, Size: 3691 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [1/3] xe_exec_balancer: Enable parallel submission and compute mode 2023-09-15 23:33 [igt-dev] [PATCH 1/3] xe_exec_balancer: Enable parallel submission and compute mode Matthew Brost ` (3 preceding siblings ...) 2023-09-16 2:25 ` [igt-dev] ✗ CI.xeBAT: failure " Patchwork @ 2023-09-16 11:24 ` Patchwork 2023-09-20 3:42 ` [igt-dev] [PATCH 1/3] " Niranjana Vishwanathapura 5 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2023-09-16 11:24 UTC (permalink / raw) To: Matthew Brost; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 99818 bytes --] == Series Details == Series: series starting with [1/3] xe_exec_balancer: Enable parallel submission and compute mode URL : https://patchwork.freedesktop.org/series/123821/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13643_full -> IGTPW_9809_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9809_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9809_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9809/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9809_full: ### IGT changes ### #### Possible regressions #### * igt@gem_ppgtt@shrink-vs-evict-pinned: - shard-rkl: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-rkl-6/igt@gem_ppgtt@shrink-vs-evict-pinned.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-1/igt@gem_ppgtt@shrink-vs-evict-pinned.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs: - shard-mtlp: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-3/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-4_tiled_mtl_mc_ccs.html Known issues ------------ Here are the changes found in IGTPW_9809_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-11/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8411]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-4/igt@api_intel_bb@object-reloc-purge-cache.html - shard-rkl: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-7/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#7701]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-5/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#7701]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-11/igt@device_reset@unbind-cold-reset-rebind.html * igt@device_reset@unbind-reset-rebind: - shard-dg2: [PASS][9] -> [INCOMPLETE][10] ([i915#5507]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg2-3/igt@device_reset@unbind-reset-rebind.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-5/igt@device_reset@unbind-reset-rebind.html * igt@drm_buddy@drm_buddy_test: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8661]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-12/igt@drm_buddy@drm_buddy_test.html * igt@drm_fdinfo@isolation@rcs0: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8414]) +14 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-4/igt@drm_fdinfo@isolation@rcs0.html * igt@drm_fdinfo@virtual-busy-idle-all: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8414]) +2 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-5/igt@drm_fdinfo@virtual-busy-idle-all.html * igt@drm_mm@drm_mm_test: - shard-snb: NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#8661]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-snb6/igt@drm_mm@drm_mm_test.html - shard-apl: NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#8661]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-apl1/igt@drm_mm@drm_mm_test.html - shard-dg2: NOTRUN -> [SKIP][16] ([i915#8661]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-6/igt@drm_mm@drm_mm_test.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#3281]) +4 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-2/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#3936]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-2/igt@gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#3936]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-1/igt@gem_busy@semaphore.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#4873]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-6/igt@gem_caching@writes.html * igt@gem_ccs@block-copy-compressed: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#3555]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-1/igt@gem_ccs@block-copy-compressed.html * igt@gem_close_race@multigpu-basic-threads: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#7697]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-3/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#6335]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-1/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8562]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-11/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_param@set-priority-not-supported: - shard-dg2: NOTRUN -> [SKIP][25] ([fdo#109314]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-7/igt@gem_ctx_param@set-priority-not-supported.html - shard-rkl: NOTRUN -> [SKIP][26] ([fdo#109314]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-2/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@engines-hang@vcs0: - shard-mtlp: NOTRUN -> [FAIL][27] ([i915#2410]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-5/igt@gem_ctx_persistence@engines-hang@vcs0.html * igt@gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#8555]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-6/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#5882]) +5 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-2/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html * igt@gem_ctx_sseu@engines: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#280]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-1/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#280]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-5/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#280]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-3/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@reset-stress: - shard-dg2: [PASS][33] -> [FAIL][34] ([i915#5784]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg2-5/igt@gem_eio@reset-stress.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-11/igt@gem_eio@reset-stress.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][35] -> [FAIL][36] ([i915#5784]) +2 other tests fail [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg1-14/igt@gem_eio@unwedge-stress.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-17/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#4771]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-19/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#4771]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-10/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#8555]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-3/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_endless@dispatch@ccs0: - shard-dg2: NOTRUN -> [TIMEOUT][40] ([i915#7016]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-6/igt@gem_exec_endless@dispatch@ccs0.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [PASS][41] -> [FAIL][42] ([i915#2846]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-solo: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4473]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-8/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-rkl: NOTRUN -> [FAIL][44] ([i915#2842]) +4 other tests fail [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-6/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-pace-solo: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3539]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-16/igt@gem_exec_fair@basic-pace-solo.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [PASS][46] -> [FAIL][47] ([i915#2842]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4473] / [i915#4771]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-8/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fence@parallel@vcs0: - shard-mtlp: NOTRUN -> [DMESG-FAIL][49] ([i915#8962] / [i915#9121]) +2 other tests dmesg-fail [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-4/igt@gem_exec_fence@parallel@vcs0.html * igt@gem_exec_fence@parallel@vecs0: - shard-mtlp: NOTRUN -> [FAIL][50] ([i915#8957]) +2 other tests fail [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-4/igt@gem_exec_fence@parallel@vecs0.html * igt@gem_exec_fence@submit: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4812]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-11/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-uc-prw-default: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3539]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-7/igt@gem_exec_flush@basic-uc-prw-default.html * igt@gem_exec_flush@basic-wb-pro-default: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#3539] / [i915#4852]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-7/igt@gem_exec_flush@basic-wb-pro-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-tglu: NOTRUN -> [SKIP][54] ([i915#7697]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-10/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_parallel@contexts@ccs0: - shard-mtlp: NOTRUN -> [DMESG-WARN][55] ([i915#9262]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-2/igt@gem_exec_parallel@contexts@ccs0.html * igt@gem_exec_params@secure-non-master: - shard-mtlp: NOTRUN -> [SKIP][56] ([fdo#112283]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-2/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#3281]) +12 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-10/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#3281]) +22 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-1/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4537] / [i915#4812]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-5/igt@gem_exec_schedule@preempt-queue-chain.html - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4812]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-14/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4860]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-6/igt@gem_fence_thrash@bo-copy.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4860]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-1/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_gtt_cpu_tlb: - shard-dg1: NOTRUN -> [SKIP][63] ([i915#4077]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-12/igt@gem_gtt_cpu_tlb.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4613]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-2/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@massive: - shard-tglu: NOTRUN -> [SKIP][65] ([i915#4613]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-9/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@random-engines: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#4613]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-1/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][67] -> [TIMEOUT][68] ([i915#5493]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg1-16/igt@gem_lmem_swapping@smem-oom@lmem0.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#8289]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-10/igt@gem_media_fill@media-fill.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4083]) +10 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-6/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4077]) +25 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-3/igt@gem_mmap_gtt@big-bo-tiledy.html * igt@gem_mmap_gtt@coherency: - shard-rkl: NOTRUN -> [SKIP][72] ([fdo#111656]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-7/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4083]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-11/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4083]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-14/igt@gem_mmap_wc@read.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3282]) +4 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3282]) +6 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-1/igt@gem_pread@snoop.html * igt@gem_pwrite@basic-random: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#3282]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-2/igt@gem_pwrite@basic-random.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#4270]) +2 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-1/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#4270]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-6/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4270]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-11/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4270]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-12/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4270]) +7 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-2/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#8428]) +9 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-6/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#4079]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-12/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_gtt: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#4079]) +4 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-2/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@evict-snoop: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#4885]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-8/igt@gem_softpin@evict-snoop.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4885]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-1/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4079]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-10/igt@gem_tiled_pread_pwrite.html * igt@gem_tiling_max_stride: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4077]) +7 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-3/igt@gem_tiling_max_stride.html * igt@gem_unfence_active_buffers: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#4879]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-8/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][91] ([fdo#110542]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-1/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#3297]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-10/igt@gem_userptr_blits@coherency-unsync.html - shard-rkl: NOTRUN -> [SKIP][93] ([i915#3297]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-2/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#3297]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-6/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@unsync-unmap: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#3297]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-15/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#3297]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-7/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_userptr_blits@vma-merge: - shard-snb: NOTRUN -> [FAIL][97] ([i915#2724]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-snb4/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_linear_blits: - shard-tglu: NOTRUN -> [SKIP][98] ([fdo#109289]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-10/igt@gen3_render_linear_blits.html * igt@gen7_exec_parse@basic-offset: - shard-rkl: NOTRUN -> [SKIP][99] ([fdo#109289]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-6/igt@gen7_exec_parse@basic-offset.html * igt@gen7_exec_parse@bitmasks: - shard-dg1: NOTRUN -> [SKIP][100] ([fdo#109289]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-12/igt@gen7_exec_parse@bitmasks.html * igt@gen7_exec_parse@cmd-crossing-page: - shard-dg2: NOTRUN -> [SKIP][101] ([fdo#109289]) +2 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-1/igt@gen7_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@allowed-single: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#2856]) +6 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-7/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#2527]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-4/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@secure-batches: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#2527]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-15/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@shadow-peek: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#2856]) +6 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-8/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [PASS][106] -> [DMESG-WARN][107] ([i915#8617]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#8436]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-5/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#6590]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-2/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#8403]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-2/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [PASS][111] -> [SKIP][112] ([i915#1397]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-1/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html - shard-dg1: [PASS][113] -> [SKIP][114] ([i915#1397]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-18/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][115] -> [SKIP][116] ([i915#1397]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg2-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp-stress.html - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#1397]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-1/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-mtlp: NOTRUN -> [SKIP][118] ([fdo#109293]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-6/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][119] ([i915#6621]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-2/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][120] -> [INCOMPLETE][121] ([i915#7790]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-snb2/igt@i915_pm_rps@reset.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-snb4/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds@gt1: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#8925]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-5/igt@i915_pm_rps@thresholds@gt1.html * igt@i915_pm_sseu@full-enable: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#4387]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-12/igt@i915_pm_sseu@full-enable.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#5723]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-2/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][125] ([i915#9311] / [i915#9312]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-11/igt@i915_selftest@mock@memory_region.html - shard-mtlp: NOTRUN -> [DMESG-WARN][126] ([i915#9311] / [i915#9312]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-2/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: NOTRUN -> [FAIL][127] ([fdo#103375]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#6645]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-6/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@debugfs-reader: - shard-mtlp: NOTRUN -> [ABORT][129] ([i915#7461] / [i915#9262]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-6/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@sysfs-reader: - shard-mtlp: NOTRUN -> [ABORT][130] ([i915#9262]) +10 other tests abort [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-4/igt@i915_suspend@sysfs-reader.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#4212]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-10/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#4212]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-17/igt@kms_addfb_basic@tile-pitch-mismatch.html - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#4212]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-8/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-2: - shard-glk: [PASS][134] -> [FAIL][135] ([i915#2521]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-glk4/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-2.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-glk4/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-2.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#8502]) +11 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#8502]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [DMESG-FAIL][138] ([i915#8561]) +3 other tests dmesg-fail [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-2/igt@kms_async_flips@crc@pipe-d-edp-1.html * igt@kms_async_flips@invalid-async-flip: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#6228]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-5/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#1769] / [i915#3555]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#1769] / [i915#3555]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][142] ([fdo#111614]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-6/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][143] ([fdo#111615] / [i915#5286]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-4/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#5286]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-15/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#5286]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#4538] / [i915#5286]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-18/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [FAIL][147] ([i915#5138]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][148] ([fdo#111614]) +4 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-6/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][149] ([fdo#111614] / [i915#3638]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#5190]) +15 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-11/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [SKIP][151] ([fdo#111615]) +17 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#4538]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#4538] / [i915#5190]) +4 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-7/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][154] ([fdo#111615]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-6/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#6187]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][156] ([fdo#110723]) +3 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][157] ([fdo#111615]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_joiner@2x-modeset: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#2705]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-3/igt@kms_big_joiner@2x-modeset.html * igt@kms_big_joiner@basic: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#2705]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-1/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3886] / [i915#6095]) +15 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-1/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#3886] / [i915#5354] / [i915#6095]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-4/igt@kms_ccs@pipe-a-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#5354] / [i915#6095]) +6 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-2/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-apl: NOTRUN -> [SKIP][163] ([fdo#109271] / [i915#3886]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-apl6/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3734] / [i915#5354] / [i915#6095]) +3 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-2/igt@kms_ccs@pipe-a-missing-ccs-buffer-yf_tiled_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_mtl_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][165] ([i915#5354] / [i915#6095]) +3 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-7/igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#6095]) +59 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-2/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs_cc: - shard-dg1: NOTRUN -> [SKIP][167] ([i915#5354] / [i915#6095]) +4 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-14/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#3689] / [i915#3886] / [i915#5354]) +12 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-5/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#3689] / [i915#5354] / [i915#6095]) +3 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-8/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#5354]) +17 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-2/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][171] ([i915#3689] / [i915#5354] / [i915#6095]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-17/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][172] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-4/igt@kms_ccs@pipe-c-random-ccs-data-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#3689] / [i915#5354]) +20 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-7/igt@kms_ccs@pipe-d-crc-primary-basic-y_tiled_ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#4087] / [i915#7213]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-3/igt@kms_cdclk@mode-transition-all-outputs.html - shard-rkl: NOTRUN -> [SKIP][175] ([i915#3742]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-4/igt@kms_cdclk@mode-transition-all-outputs.html - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#7213] / [i915#9010]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-3/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling: - shard-dg1: NOTRUN -> [SKIP][177] ([i915#3742]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-14/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-limited-range: - shard-mtlp: NOTRUN -> [SKIP][178] ([fdo#111827]) +4 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-1/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg2: NOTRUN -> [SKIP][179] ([fdo#111827]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-11/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#7828]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-10/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#7828]) +8 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-2/igt@kms_chamelium_frames@hdmi-crc-multiple.html - shard-rkl: NOTRUN -> [SKIP][182] ([i915#7828]) +7 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-2/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@hdmi-hpd-after-suspend: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#7828]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-after-suspend.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#7828]) +9 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-2/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_concurrent@pipe-d: - shard-rkl: NOTRUN -> [SKIP][185] ([i915#4070] / [i915#533] / [i915#6768]) +7 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-6/igt@kms_concurrent@pipe-d.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#7118]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#3116]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3299]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-3/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#8814]) +6 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#3555]) +3 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#3359]) +2 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#3359]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-rkl: NOTRUN -> [SKIP][193] ([i915#3359]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#3555]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#3555]) +6 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2: NOTRUN -> [SKIP][196] ([fdo#109274] / [i915#5354]) +3 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-11/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#3546]) +7 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][198] ([fdo#111825]) +5 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-rkl: NOTRUN -> [SKIP][199] ([fdo#111767] / [fdo#111825]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-mtlp: NOTRUN -> [SKIP][200] ([fdo#111767] / [i915#3546]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#4103]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][202] ([i915#9227]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-19/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#9226] / [i915#9261]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-19/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#8588]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-11/igt@kms_display_modes@mst-extended-mode-negative.html - shard-rkl: NOTRUN -> [SKIP][205] ([i915#8588]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-6/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#3555] / [i915#3840]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-6/igt@kms_dsc@dsc-with-bpc.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#4881]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-10/igt@kms_fence_pin_leak.html - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#4881]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-1/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][209] ([fdo#109274] / [fdo#111767]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-5/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-tglu: NOTRUN -> [SKIP][210] ([fdo#109274] / [i915#3637]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-8/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2: NOTRUN -> [SKIP][211] ([fdo#109274]) +7 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-snb: NOTRUN -> [SKIP][212] ([fdo#109271] / [fdo#111767]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-snb2/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#3637]) +11 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-4/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#8381]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-4/igt@kms_flip@flip-vs-fences.html - shard-dg1: NOTRUN -> [SKIP][215] ([i915#8381]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-14/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3: - shard-dg2: NOTRUN -> [FAIL][216] ([fdo#103375]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-5/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a3.html * igt@kms_flip@flip-vs-suspend@b-hdmi-a1: - shard-snb: NOTRUN -> [DMESG-WARN][217] ([i915#8841]) +4 other tests dmesg-warn [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-snb1/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#8810]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][219] ([i915#2587] / [i915#2672]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#2672]) +4 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#2672]) +3 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#2672]) +3 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8810]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#2672] / [i915#3555]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#5274]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-10/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#8708]) +18 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#5354]) +45 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][228] ([fdo#109280]) +7 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#8708]) +27 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#3458]) +2 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#3023]) +14 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][232] ([i915#8708]) +2 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][233] ([fdo#111825] / [i915#1825]) +29 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#5460]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#3458]) +18 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][236] ([fdo#111825]) +5 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#1825]) +64 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-6/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-10/igt@kms_hdr@invalid-metadata-sizes.html - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#8228]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-2/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#6301]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-6/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-rkl: NOTRUN -> [SKIP][242] ([i915#6301]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-7/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-mtlp: NOTRUN -> [SKIP][243] ([fdo#109289]) +6 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-8/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1: - shard-mtlp: [PASS][244] -> [ABORT][245] ([i915#9262]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-mtlp-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1: - shard-mtlp: [PASS][246] -> [DMESG-WARN][247] ([i915#9262]) +2 other tests dmesg-warn [246]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-mtlp-5/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1.html [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#8821]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-10/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][249] ([i915#8292]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html - shard-dg1: NOTRUN -> [FAIL][250] ([i915#8292]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#5176]) +11 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][252] ([i915#5176]) +3 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-8/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#5176]) +11 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#5176]) +19 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-18/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#5235]) +1 other test skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#5235]) +11 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html - shard-dg1: NOTRUN -> [SKIP][257] ([i915#5235]) +11 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][258] ([i915#5235]) +3 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-9/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#5235]) +23 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][260] ([fdo#109271]) +162 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-snb2/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html * igt@kms_prime@basic-modeset-hybrid: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#6524]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-3/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#658]) +1 other test skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb: - shard-tglu: NOTRUN -> [SKIP][263] ([i915#658]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-5/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][264] ([fdo#111068] / [i915#658]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#658]) +4 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-7/igt@kms_psr2_su@page_flip-nv12.html - shard-apl: NOTRUN -> [SKIP][266] ([fdo#109271] / [i915#658]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-apl4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@cursor_plane_move: - shard-tglu: NOTRUN -> [SKIP][267] ([fdo#110189]) +6 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-4/igt@kms_psr@cursor_plane_move.html * igt@kms_psr@primary_render: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#1072]) +5 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-1/igt@kms_psr@primary_render.html * igt@kms_psr@psr2_primary_page_flip: - shard-dg1: NOTRUN -> [SKIP][269] ([i915#1072]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-19/igt@kms_psr@psr2_primary_page_flip.html * igt@kms_psr@psr2_sprite_plane_move: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#1072]) +6 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-5/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_rotation_crc@bad-pixel-format: - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#4235]) +3 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-3/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#4235]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-3/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#5289]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#4235] / [i915#5190]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-rkl: NOTRUN -> [SKIP][275] ([fdo#111615] / [i915#5289]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-rkl: [PASS][276] -> [INCOMPLETE][277] ([i915#8875]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-rkl-7/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_selftest@drm_cmdline: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#8661]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-3/igt@kms_selftest@drm_cmdline.html * igt@kms_setmode@basic-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8809]) +2 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#3555] / [i915#4098]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-2/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-snb: [PASS][281] -> [FAIL][282] ([i915#9196]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-snb4/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-snb2/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@kms_universal_plane@cursor-fb-leak-pipe-b: - shard-tglu: [PASS][283] -> [FAIL][284] ([i915#9196]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-tglu-5/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html * igt@kms_vblank@pipe-c-query-forked-hang: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#4070] / [i915#6768]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-4/igt@kms_vblank@pipe-c-query-forked-hang.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8808]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-5/igt@kms_vrr@flip-suspend.html * igt@kms_writeback@writeback-invalid-parameters: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#2437]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-4/igt@kms_writeback@writeback-invalid-parameters.html - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#2437]) +1 other test skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-6/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#2437]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-3/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config: - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#7387]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-3/igt@perf@global-sseu-config.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][291] ([i915#7484]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@polling@0-rcs0: - shard-mtlp: NOTRUN -> [FAIL][292] ([i915#9259]) +3 other tests fail [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-5/igt@perf@polling@0-rcs0.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg1: [PASS][293] -> [FAIL][294] ([i915#5234]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg1-17/igt@perf_pmu@all-busy-idle-check-all.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-12/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@busy-double-start@rcs0: - shard-dg1: NOTRUN -> [FAIL][295] ([i915#4349]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-18/igt@perf_pmu@busy-double-start@rcs0.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][296] ([fdo#112283]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-5/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#8440]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-3/igt@perf_pmu@faulting-read@gtt.html * igt@perf_pmu@rc6-all-gts: - shard-tglu: NOTRUN -> [SKIP][298] ([i915#8516]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-4/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6-suspend: - shard-mtlp: NOTRUN -> [ABORT][299] ([i915#9262] / [i915#9268]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-7/igt@perf_pmu@rc6-suspend.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#8516]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-7/igt@perf_pmu@rc6@other-idle-gt0.html * igt@perf_pmu@semaphore-busy@rcs0: - shard-mtlp: NOTRUN -> [FAIL][301] ([i915#4349]) +14 other tests fail [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-6/igt@perf_pmu@semaphore-busy@rcs0.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][302] ([i915#3708] / [i915#4077]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-7/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#3291] / [i915#3708]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-11/igt@prime_vgem@basic-fence-read.html - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#3708]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-2/igt@prime_vgem@basic-fence-read.html * igt@sysfs_timeslice_duration@timeout@vecs0: - shard-mtlp: NOTRUN -> [TIMEOUT][305] ([i915#6950]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-3/igt@sysfs_timeslice_duration@timeout@vecs0.html * igt@v3d/v3d_mmap@mmap-bo: - shard-mtlp: NOTRUN -> [SKIP][306] ([i915#2575]) +19 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-6/igt@v3d/v3d_mmap@mmap-bo.html * igt@v3d/v3d_submit_cl@bad-multisync-in-sync: - shard-rkl: NOTRUN -> [SKIP][307] ([fdo#109315]) +5 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-2/igt@v3d/v3d_submit_cl@bad-multisync-in-sync.html * igt@v3d/v3d_submit_csd@bad-flag: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#2575]) +14 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-1/igt@v3d/v3d_submit_csd@bad-flag.html * igt@v3d/v3d_submit_csd@bad-multisync-extension: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#2575]) +1 other test skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-15/igt@v3d/v3d_submit_csd@bad-multisync-extension.html * igt@v3d/v3d_wait_bo@unused-bo-0ns: - shard-tglu: NOTRUN -> [SKIP][310] ([fdo#109315] / [i915#2575]) +2 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-3/igt@v3d/v3d_wait_bo@unused-bo-0ns.html * igt@v3d/v3d_wait_bo@unused-bo-1ns: - shard-apl: NOTRUN -> [SKIP][311] ([fdo#109271]) +52 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-apl7/igt@v3d/v3d_wait_bo@unused-bo-1ns.html * igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#2575]) +1 other test skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-10/igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done.html * igt@vc4/vc4_perfmon@create-perfmon-exceed: - shard-mtlp: NOTRUN -> [SKIP][313] ([i915#7711]) +16 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-8/igt@vc4/vc4_perfmon@create-perfmon-exceed.html * igt@vc4/vc4_tiling@get-after-free: - shard-dg1: NOTRUN -> [SKIP][314] ([i915#7711]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-14/igt@vc4/vc4_tiling@get-after-free.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#7711]) +8 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-10/igt@vc4/vc4_tiling@get-bad-modifier.html - shard-rkl: NOTRUN -> [SKIP][316] ([i915#7711]) +5 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-2/igt@vc4/vc4_tiling@get-bad-modifier.html #### Possible fixes #### * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [FAIL][317] ([i915#7742]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_ctx_freq@sysfs@gt0: - shard-dg2: [FAIL][319] ([i915#6786]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg2-6/igt@gem_ctx_freq@sysfs@gt0.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-3/igt@gem_ctx_freq@sysfs@gt0.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: [FAIL][321] ([i915#2410]) -> [PASS][322] +2 other tests pass [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-mtlp-4/igt@gem_ctx_persistence@engines-hostile@vcs0.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-8/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][323] ([i915#2842]) -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][325] ([i915#2842]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-glk7/igt@gem_exec_fair@basic-pace-share@rcs0.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-rkl: [FAIL][327] ([i915#2842]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fence@invalid-fence-array: - shard-mtlp: [ABORT][329] ([i915#9262]) -> [PASS][330] +2 other tests pass [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-mtlp-2/igt@gem_exec_fence@invalid-fence-array.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-1/igt@gem_exec_fence@invalid-fence-array.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: [ABORT][331] ([i915#7975] / [i915#8213]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg2-2/igt@gem_exec_suspend@basic-s4-devices@lmem0.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-dg1: [FAIL][333] ([i915#3591]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg1: [SKIP][335] ([i915#1397]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-18/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][337] ([i915#1397]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg2-1/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][339] ([i915#1397]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-4/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_suspend@debugfs-reader: - shard-dg2: [FAIL][341] ([fdo#103375]) -> [PASS][342] +2 other tests pass [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg2-5/igt@i915_suspend@debugfs-reader.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-11/igt@i915_suspend@debugfs-reader.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [FAIL][343] ([i915#3743]) -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][345] ([i915#2346]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: [INCOMPLETE][347] -> [PASS][348] [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg2-1/igt@kms_fbcon_fbt@fbc-suspend.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-10/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: [INCOMPLETE][349] -> [PASS][350] [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-rkl: [INCOMPLETE][351] ([i915#8875]) -> [PASS][352] [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-rkl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-tglu: [FAIL][353] ([i915#9196]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-8/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@kms_universal_plane@cursor-fb-leak-pipe-d: - shard-dg1: [FAIL][355] ([i915#9196]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg1-15/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-16/igt@kms_universal_plane@cursor-fb-leak-pipe-d.html * igt@sysfs_heartbeat_interval@mixed@ccs0: - shard-mtlp: [ABORT][357] ([i915#8552]) -> [PASS][358] [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-mtlp-2/igt@sysfs_heartbeat_interval@mixed@ccs0.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-3/igt@sysfs_heartbeat_interval@mixed@ccs0.html * igt@sysfs_heartbeat_interval@mixed@vecs0: - shard-mtlp: [FAIL][359] ([i915#1731]) -> [PASS][360] [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-mtlp-2/igt@sysfs_heartbeat_interval@mixed@vecs0.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-mtlp-3/igt@sysfs_heartbeat_interval@mixed@vecs0.html #### Warnings #### * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-tglu: [FAIL][361] ([i915#2681] / [i915#3591]) -> [WARN][362] ([i915#2681]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][363] ([i915#3955]) -> [SKIP][364] ([fdo#110189] / [i915#3955]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@flip-vs-suspend-interruptible@b-vga1: - shard-snb: [DMESG-WARN][365] ([i915#8841]) -> [DMESG-WARN][366] ([i915#5090] / [i915#8841]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-snb2/igt@kms_flip@flip-vs-suspend-interruptible@b-vga1.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-snb5/igt@kms_flip@flip-vs-suspend-interruptible@b-vga1.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][367] ([i915#4816]) -> [SKIP][368] ([i915#4070] / [i915#4816]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@cursor_plane_move: - shard-dg1: [SKIP][369] ([i915#1072] / [i915#4078]) -> [SKIP][370] ([i915#1072]) +1 other test skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg1-12/igt@kms_psr@cursor_plane_move.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-14/igt@kms_psr@cursor_plane_move.html * igt@kms_psr@sprite_plane_onoff: - shard-dg1: [SKIP][371] ([i915#1072]) -> [SKIP][372] ([i915#1072] / [i915#4078]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg1-17/igt@kms_psr@sprite_plane_onoff.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg1-18/igt@kms_psr@sprite_plane_onoff.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][373] ([i915#7331]) -> [INCOMPLETE][374] ([i915#5493]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13643/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/shard-dg2-7/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1731]: https://gitlab.freedesktop.org/drm/intel/issues/1731 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#2724]: https://gitlab.freedesktop.org/drm/intel/issues/2724 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5090]: https://gitlab.freedesktop.org/drm/intel/issues/5090 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5507]: https://gitlab.freedesktop.org/drm/intel/issues/5507 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786 [i915#6950]: https://gitlab.freedesktop.org/drm/intel/issues/6950 [i915#7016]: https://gitlab.freedesktop.org/drm/intel/issues/7016 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7331]: https://gitlab.freedesktop.org/drm/intel/issues/7331 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8403]: https://gitlab.freedesktop.org/drm/intel/issues/8403 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8436]: https://gitlab.freedesktop.org/drm/intel/issues/8436 [i915#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8552]: https://gitlab.freedesktop.org/drm/intel/issues/8552 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#8957]: https://gitlab.freedesktop.org/drm/intel/issues/8957 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9259]: https://gitlab.freedesktop.org/drm/intel/issues/9259 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9268]: https://gitlab.freedesktop.org/drm/intel/issues/9268 [i915#9293]: https://gitlab.freedesktop.org/drm/intel/issues/9293 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9312]: https://gitlab.freedesktop.org/drm/intel/issues/9312 [i915#9337]: https://gitlab.freedesktop.org/drm/intel/issues/9337 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7490 -> IGTPW_9809 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13643: dc4cd6e4e53d46211952fe7c0e408fce3e212993 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9809: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/index.html IGT_7490: 7490 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9809/index.html [-- Attachment #2: Type: text/html, Size: 122952 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH 1/3] xe_exec_balancer: Enable parallel submission and compute mode 2023-09-15 23:33 [igt-dev] [PATCH 1/3] xe_exec_balancer: Enable parallel submission and compute mode Matthew Brost ` (4 preceding siblings ...) 2023-09-16 11:24 ` [igt-dev] ✗ Fi.CI.IGT: " Patchwork @ 2023-09-20 3:42 ` Niranjana Vishwanathapura 5 siblings, 0 replies; 9+ messages in thread From: Niranjana Vishwanathapura @ 2023-09-20 3:42 UTC (permalink / raw) To: Matthew Brost; +Cc: igt-dev On Fri, Sep 15, 2023 at 04:33:02PM -0700, Matthew Brost wrote: >This is now supported. Test it. > >Signed-off-by: Matthew Brost <matthew.brost@intel.com> Reviewed-by: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> >--- > tests/intel/xe_exec_balancer.c | 21 +++++++++++++++------ > 1 file changed, 15 insertions(+), 6 deletions(-) > >diff --git a/tests/intel/xe_exec_balancer.c b/tests/intel/xe_exec_balancer.c >index 3fb535988c..75b25ddd19 100644 >--- a/tests/intel/xe_exec_balancer.c >+++ b/tests/intel/xe_exec_balancer.c >@@ -384,6 +384,12 @@ test_exec(int fd, int gt, int class, int n_exec_queues, int n_execs, > * @virtual-userptr-rebind: virtual userptr rebind > * @virtual-userptr-invalidate: virtual userptr invalidate > * @virtual-userptr-invalidate-race: virtual userptr invalidate racy >+ * @parallel-basic: parallel basic >+ * @parallel-userptr: parallel userptr >+ * @parallel-rebind: parallel rebind >+ * @parallel-userptr-rebind: parallel userptr rebind >+ * @parallel-userptr-invalidate: parallel userptr invalidate >+ * @parallel-userptr-invalidate-race: parallel userptr invalidate racy > */ > > static void >@@ -461,8 +467,8 @@ test_cm(int fd, int gt, int class, int n_exec_queues, int n_execs, > }; > struct drm_xe_exec_queue_create create = { > .vm_id = vm, >- .width = 1, >- .num_placements = num_placements, >+ .width = flags & PARALLEL ? num_placements : 1, >+ .num_placements = flags & PARALLEL ? 1 : num_placements, > .instances = to_user_pointer(eci), > .extensions = to_user_pointer(&ext), > }; >@@ -471,6 +477,7 @@ test_cm(int fd, int gt, int class, int n_exec_queues, int n_execs, > &create), 0); > exec_queues[i] = create.exec_queue_id; > } >+ exec.num_batch_buffer = flags & PARALLEL ? num_placements : 1; > > sync[0].addr = to_user_pointer(&data[0].vm_sync); > if (bo) >@@ -488,8 +495,12 @@ test_cm(int fd, int gt, int class, int n_exec_queues, int n_execs, > uint64_t batch_addr = addr + batch_offset; > uint64_t sdi_offset = (char *)&data[i].data - (char *)data; > uint64_t sdi_addr = addr + sdi_offset; >+ uint64_t batches[MAX_INSTANCE]; > int e = i % n_exec_queues; > >+ for (j = 0; j < num_placements && flags & PARALLEL; ++j) >+ batches[j] = batch_addr; >+ > b = 0; > data[i].batch[b++] = MI_STORE_DWORD_IMM_GEN4; > data[i].batch[b++] = sdi_addr; >@@ -501,7 +512,8 @@ test_cm(int fd, int gt, int class, int n_exec_queues, int n_execs, > sync[0].addr = addr + (char *)&data[i].exec_sync - (char *)data; > > exec.exec_queue_id = exec_queues[e]; >- exec.address = batch_addr; >+ exec.address = flags & PARALLEL ? >+ to_user_pointer(batches) : batch_addr; > xe_exec(fd, &exec); > > if (flags & REBIND && i + 1 != n_execs) { >@@ -662,9 +674,6 @@ igt_main > test_exec(fd, gt, class, 1, 0, > s->flags); > >- if (s->flags & PARALLEL) >- continue; >- > igt_subtest_f("once-cm-%s", s->name) > xe_for_each_gt(fd, gt) > xe_for_each_hw_engine_class(class) >-- >2.34.1 > ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-09-20 3:42 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-15 23:33 [igt-dev] [PATCH 1/3] xe_exec_balancer: Enable parallel submission and compute mode Matthew Brost 2023-09-15 23:33 ` [igt-dev] [PATCH 2/3] xe_exec_threads: Use DRM_XE_VM_CREATE_COMPUTE_MODE when creating a compute VM Matthew Brost 2023-09-18 4:56 ` Niranjana Vishwanathapura 2023-09-15 23:33 ` [igt-dev] [PATCH 3/3] xe: Update uAPI and remove XE_EXEC_QUEUE_SET_PROPERTY_COMPUTE_MODE Matthew Brost 2023-09-18 4:55 ` Niranjana Vishwanathapura 2023-09-16 1:07 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [1/3] xe_exec_balancer: Enable parallel submission and compute mode Patchwork 2023-09-16 2:25 ` [igt-dev] ✗ CI.xeBAT: failure " Patchwork 2023-09-16 11:24 ` [igt-dev] ✗ Fi.CI.IGT: " Patchwork 2023-09-20 3:42 ` [igt-dev] [PATCH 1/3] " Niranjana Vishwanathapura
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox