* [i-g-t, v2, 0/4] separate sync data and batch buffer
@ 2024-11-08 1:10 fei.yang
2024-11-08 1:10 ` [i-g-t, v2, 1/4] tests/intel/xe_exec_fault_mode: separate exec_sync " fei.yang
` (7 more replies)
0 siblings, 8 replies; 12+ messages in thread
From: fei.yang @ 2024-11-08 1:10 UTC (permalink / raw)
To: igt-dev; +Cc: Fei Yang
From: Fei Yang <fei.yang@intel.com>
In INVALIDATE cases the test purposely remap the data buffer to a
different physical location in the midle of execution to exercise the
page fault handling flow. After the remapping we lose access to the old
physical location, and that would cause a problem for comparing ufence
value at the end of the execution. To fix this the exec_sync data needs
to be separated from the batch buffer for instructions, and during the
execution we don't remap the exec_sync data.
Signed-off-by: Fei Yang <fei.yang@intel.com>
Fei Yang (4):
tests/intel/xe_exec_fault_mode: separate exec_sync and batch buffer
tests/intel/xe_exec_threads: remove redundant wait
tests/intel/xe_exec_threads: wait for all submissions to complete
tests/intel/xe_exec_threads: separate exec_sync and batch buffer
tests/intel/xe_exec_fault_mode.c | 66 ++++++++++++++++++++++++--------
tests/intel/xe_exec_threads.c | 65 +++++++++++++++++++++++--------
2 files changed, 99 insertions(+), 32 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 12+ messages in thread
* [i-g-t, v2, 1/4] tests/intel/xe_exec_fault_mode: separate exec_sync and batch buffer
2024-11-08 1:10 [i-g-t, v2, 0/4] separate sync data and batch buffer fei.yang
@ 2024-11-08 1:10 ` fei.yang
2024-11-12 13:23 ` Nirmoy Das
2024-11-08 1:10 ` [i-g-t, v2, 2/4] tests/intel/xe_exec_threads: remove redundant wait fei.yang
` (6 subsequent siblings)
7 siblings, 1 reply; 12+ messages in thread
From: fei.yang @ 2024-11-08 1:10 UTC (permalink / raw)
To: igt-dev; +Cc: Fei Yang
From: Fei Yang <fei.yang@intel.com>
In INVALIDATE cases the test purposely remap the data buffer to a
different physical location in the midle of execution to exercise the
page fault handling flow. After the remapping we lose access to the old
physical location, and that would cause a problem for comparing ufence
value at the end of the execution. To fix this the exec_sync data needs
to be separated from the batch buffer for instructions, and during the
execution we don't remap the exec_sync data.
v2: Separate only exec_sync. Keep data field together with the batch
buffer (Matt Roper)
Signed-off-by: Fei Yang <fei.yang@intel.com>
---
tests/intel/xe_exec_fault_mode.c | 66 ++++++++++++++++++++++++--------
1 file changed, 50 insertions(+), 16 deletions(-)
diff --git a/tests/intel/xe_exec_fault_mode.c b/tests/intel/xe_exec_fault_mode.c
index d416c773b..ae40e099b 100644
--- a/tests/intel/xe_exec_fault_mode.c
+++ b/tests/intel/xe_exec_fault_mode.c
@@ -116,6 +116,7 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
{
uint32_t vm;
uint64_t addr = 0x1a0000;
+ uint64_t sync_addr = 0x101a0000;
#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
struct drm_xe_sync sync[1] = {
{ .type = DRM_XE_SYNC_TYPE_USER_FENCE, .flags = DRM_XE_SYNC_FLAG_SIGNAL,
@@ -128,15 +129,15 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
};
uint32_t exec_queues[MAX_N_EXEC_QUEUES];
uint32_t bind_exec_queues[MAX_N_EXEC_QUEUES];
- size_t bo_size;
+ size_t bo_size, sync_size;
uint32_t bo = 0;
struct {
uint32_t batch[16];
uint64_t pad;
uint64_t vm_sync;
- uint64_t exec_sync;
uint32_t data;
} *data;
+ uint64_t *exec_sync;
int i, j, b;
int map_fd = -1;
@@ -151,6 +152,8 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
DRM_XE_VM_CREATE_FLAG_FAULT_MODE, 0);
bo_size = sizeof(*data) * n_execs;
bo_size = xe_bb_size(fd, bo_size);
+ sync_size = sizeof(*exec_sync) * n_execs;
+ sync_size = xe_bb_size(fd, sync_size);
if (flags & USERPTR) {
#define MAP_ADDRESS 0x00007fadeadbe000
@@ -178,6 +181,12 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
}
memset(data, 0, bo_size);
+#define EXEC_SYNC_ADDRESS 0x00007fbdeadbe000
+ exec_sync = mmap((void *)EXEC_SYNC_ADDRESS, sync_size, PROT_READ | PROT_WRITE,
+ MAP_SHARED | MAP_FIXED | MAP_ANONYMOUS, -1, 0);
+ igt_assert(exec_sync != MAP_FAILED);
+ memset(exec_sync, 0, sync_size);
+
for (i = 0; i < n_exec_queues; i++) {
exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0);
if (flags & BIND_EXEC_QUEUE)
@@ -212,6 +221,13 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
bind_exec_queues[0], NSEC_PER_SEC);
data[0].vm_sync = 0;
+ xe_vm_bind_userptr_async(fd, vm, bind_exec_queues[0],
+ to_user_pointer(exec_sync), sync_addr,
+ sync_size, sync, 1);
+ xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE,
+ bind_exec_queues[0], NSEC_PER_SEC);
+ data[0].vm_sync = 0;
+
if (flags & PREFETCH) {
/* Should move to system memory */
xe_vm_prefetch_async(fd, vm, bind_exec_queues[0], 0, addr,
@@ -239,14 +255,14 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
data[i].batch[b++] = MI_BATCH_BUFFER_END;
igt_assert(b <= ARRAY_SIZE(data[i].batch));
- sync[0].addr = addr + (char *)&data[i].exec_sync - (char *)data;
+ sync[0].addr = sync_addr + (char *)&exec_sync[i] - (char *)exec_sync;
exec.exec_queue_id = exec_queues[e];
exec.address = batch_addr;
xe_exec(fd, &exec);
if (flags & REBIND && i + 1 != n_execs) {
- xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE,
+ xe_wait_ufence(fd, &exec_sync[i], USER_FENCE_VALUE,
exec_queues[e], NSEC_PER_SEC);
xe_vm_unbind_async(fd, vm, bind_exec_queues[e], 0,
addr, bo_size, NULL, 0);
@@ -275,7 +291,7 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
* physical memory on next mmap call triggering
* an invalidate.
*/
- xe_wait_ufence(fd, &data[i].exec_sync,
+ xe_wait_ufence(fd, &exec_sync[i],
USER_FENCE_VALUE, exec_queues[e],
NSEC_PER_SEC);
igt_assert_eq(data[i].data, 0xc0ffee);
@@ -311,48 +327,66 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
* submission here. For RACE cases we need to wait for all submissions
* to complete because the GuC scheduling can be out of order, the
* completion of the last submission doesn't mean all submission are
- * completed.
+ * completed. For REBIND cases we only need to wait for the last
+ * submission.
*/
- j = (flags & INVALIDATE && !(flags & RACE)) ? n_execs - 1 : 0;
+ j = ((flags & INVALIDATE && !(flags & RACE)) ||
+ (flags & REBIND)) ? n_execs - 1 : 0;
for (i = j; i < n_execs; i++) {
int64_t timeout = NSEC_PER_SEC;
if (flags & INVALID_VA && !(flags & ENABLE_SCRATCH))
- igt_assert_eq(__xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE,
+ igt_assert_eq(__xe_wait_ufence(fd, &exec_sync[i], USER_FENCE_VALUE,
exec_queues[i % n_exec_queues], &timeout), -EIO);
else
- igt_assert_eq(__xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE,
+ igt_assert_eq(__xe_wait_ufence(fd, &exec_sync[i], USER_FENCE_VALUE,
exec_queues[i % n_exec_queues], &timeout), 0);
}
}
- sync[0].addr = to_user_pointer(&data[0].vm_sync);
- xe_vm_unbind_async(fd, vm, bind_exec_queues[0], 0, addr, bo_size,
- sync, 1);
- xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE,
- bind_exec_queues[0], NSEC_PER_SEC);
if (flags & INVALID_FAULT) {
for (i = 0; i < n_execs; i++) {
int ret;
int64_t timeout = NSEC_PER_SEC;
- ret = __xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE,
+ ret = __xe_wait_ufence(fd, &exec_sync[i], USER_FENCE_VALUE,
exec_queues[i % n_exec_queues], &timeout);
igt_assert(ret == -EIO || ret == 0);
}
} else if (!(flags & INVALID_VA)) {
+ /*
+ * For INVALIDATE && RACE cases, due the the remmap in the
+ * middle of the execution, we lose access to some of the
+ * 0xc0ffee written to the old location, so check only for
+ * the second half of the submissions.
+ */
+ if (flags & INVALIDATE && flags & RACE)
+ j = n_execs / 2 + 1;
for (i = j; i < n_execs; i++)
igt_assert_eq(data[i].data, 0xc0ffee);
-
}
+ sync[0].addr = to_user_pointer(&data[0].vm_sync);
+ data[0].vm_sync = 0;
+ xe_vm_unbind_async(fd, vm, bind_exec_queues[0], 0, sync_addr, sync_size,
+ sync, 1);
+ xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE,
+ bind_exec_queues[0], NSEC_PER_SEC);
+ data[0].vm_sync = 0;
+ xe_vm_unbind_async(fd, vm, bind_exec_queues[0], 0, addr, bo_size,
+ sync, 1);
+ xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE,
+ bind_exec_queues[0], NSEC_PER_SEC);
+
for (i = 0; i < n_exec_queues; i++) {
xe_exec_queue_destroy(fd, exec_queues[i]);
if (bind_exec_queues[i])
xe_exec_queue_destroy(fd, bind_exec_queues[i]);
}
+ munmap(exec_sync, sync_size);
+
if (bo) {
munmap(data, bo_size);
gem_close(fd, bo);
--
2.25.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [i-g-t, v2, 2/4] tests/intel/xe_exec_threads: remove redundant wait
2024-11-08 1:10 [i-g-t, v2, 0/4] separate sync data and batch buffer fei.yang
2024-11-08 1:10 ` [i-g-t, v2, 1/4] tests/intel/xe_exec_fault_mode: separate exec_sync " fei.yang
@ 2024-11-08 1:10 ` fei.yang
2024-11-08 1:10 ` [i-g-t, v2, 3/4] tests/intel/xe_exec_threads: wait for all submissions to complete fei.yang
` (5 subsequent siblings)
7 siblings, 0 replies; 12+ messages in thread
From: fei.yang @ 2024-11-08 1:10 UTC (permalink / raw)
To: igt-dev; +Cc: Fei Yang, Matt Roper
From: Fei Yang <fei.yang@intel.com>
The for-loop for REBIND case accidentally wait twice for the execs of
0x20*n interations. Copyi paste the code from INVALIDATE case which is
correct.
Signed-off-by: Fei Yang <fei.yang@intel.com>
Reviewed-by: Matt Roper <matthew.d.roper@intel.com>
---
tests/intel/xe_exec_threads.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c
index 413d6626b..962957cd7 100644
--- a/tests/intel/xe_exec_threads.c
+++ b/tests/intel/xe_exec_threads.c
@@ -340,7 +340,7 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
xe_exec(fd, &exec);
if (flags & REBIND && i && !(i & 0x1f)) {
- for (j = i - 0x20; j <= i; ++j)
+ for (j = i == 0x20 ? 0 : i - 0x1f; j <= i; ++j)
xe_wait_ufence(fd, &data[j].exec_sync,
USER_FENCE_VALUE,
exec_queues[e], fence_timeout);
--
2.25.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [i-g-t, v2, 3/4] tests/intel/xe_exec_threads: wait for all submissions to complete
2024-11-08 1:10 [i-g-t, v2, 0/4] separate sync data and batch buffer fei.yang
2024-11-08 1:10 ` [i-g-t, v2, 1/4] tests/intel/xe_exec_fault_mode: separate exec_sync " fei.yang
2024-11-08 1:10 ` [i-g-t, v2, 2/4] tests/intel/xe_exec_threads: remove redundant wait fei.yang
@ 2024-11-08 1:10 ` fei.yang
2024-11-12 13:14 ` Nirmoy Das
2024-11-08 1:10 ` [i-g-t, v2, 4/4] tests/intel/xe_exec_threads: separate exec_sync and batch buffer fei.yang
` (4 subsequent siblings)
7 siblings, 1 reply; 12+ messages in thread
From: fei.yang @ 2024-11-08 1:10 UTC (permalink / raw)
To: igt-dev; +Cc: Fei Yang
From: Fei Yang <fei.yang@intel.com>
In test_compute_mode, there is an one second sleep waiting for all the
submissions to complete, but a hardcode wait is not reliable for test
that could have thousands of xe_execs submissions. Instead we should
wait for the ufence to make sure the GPU is inactive before unbinding
the BO.
Signed-off-by: Fei Yang <fei.yang@intel.com>
---
tests/intel/xe_exec_threads.c | 28 ++++++++++++++++++++++------
1 file changed, 22 insertions(+), 6 deletions(-)
diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c
index 962957cd7..433f2620a 100644
--- a/tests/intel/xe_exec_threads.c
+++ b/tests/intel/xe_exec_threads.c
@@ -404,16 +404,32 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
}
}
- j = flags & INVALIDATE ?
- (flags & RACE ? n_execs / 2 + 1 : n_execs - 1) : 0;
+ j = 0; /* wait for all submissions to complete */
+ if (flags & INVALIDATE)
+ /*
+ * For !RACE cases xe_wait_ufence has been called in above for-loop
+ * except the last batch of submissions. For RACE cases we will need
+ * to wait for the second half of the submissions to complete. There
+ * is a potential race here because the first half submissions might
+ * have updated the fence in the old physical location while the test
+ * is remapping the buffer from a different physical location, but the
+ * wait_ufence only checks the fence from the new location which would
+ * never be updated. We have to assume the first half of the submissions
+ * complete before the second half. Will have a follow up patch to fix
+ * this completely.
+ */
+ j = (flags & RACE) ? (n_execs / 2 + 1) : (((n_execs - 1) & ~0x1f) + 1);
+ else if (flags & REBIND)
+ /*
+ * For REBIND cases xe_wait_ufence has been called in above for-loop
+ * except the last batch of submissions.
+ */
+ j = ((n_execs - 1) & ~0x1f) + 1;
+
for (i = j; i < n_execs; i++)
xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE,
exec_queues[i % n_exec_queues], fence_timeout);
- /* Wait for all execs to complete */
- if (flags & INVALIDATE)
- sleep(1);
-
sync[0].addr = to_user_pointer(&data[0].vm_sync);
xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1);
xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, 0, fence_timeout);
--
2.25.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* [i-g-t, v2, 4/4] tests/intel/xe_exec_threads: separate exec_sync and batch buffer
2024-11-08 1:10 [i-g-t, v2, 0/4] separate sync data and batch buffer fei.yang
` (2 preceding siblings ...)
2024-11-08 1:10 ` [i-g-t, v2, 3/4] tests/intel/xe_exec_threads: wait for all submissions to complete fei.yang
@ 2024-11-08 1:10 ` fei.yang
2024-11-12 13:23 ` Nirmoy Das
2024-11-08 1:48 ` ✓ Fi.CI.BAT: success for separate sync data and batch buffer (rev2) Patchwork
` (3 subsequent siblings)
7 siblings, 1 reply; 12+ messages in thread
From: fei.yang @ 2024-11-08 1:10 UTC (permalink / raw)
To: igt-dev; +Cc: Fei Yang
From: Fei Yang <fei.yang@intel.com>
In INVALIDATE cases the test purposely remap the data buffer to a
different physical location in the midle of execution to exercise the
page fault handling flow. After the remapping we lose access to the old
physical location, and that would cause a problem for comparing ufence
value at the end of the execution. To fix this the exec_sync data needs
to be separated from the batch buffer for instructions, and during the
execution we don't remap the exec_sync data.
v2: Separate only exec_sync. Keep data field together with the batch
buffer (Matt Roper)
Signed-off-by: Fei Yang <fei.yang@intel.com>
---
tests/intel/xe_exec_threads.c | 55 +++++++++++++++++++++++------------
1 file changed, 36 insertions(+), 19 deletions(-)
diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c
index 433f2620a..661117bed 100644
--- a/tests/intel/xe_exec_threads.c
+++ b/tests/intel/xe_exec_threads.c
@@ -241,6 +241,7 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
struct drm_xe_engine_class_instance *eci,
int n_exec_queues, int n_execs, unsigned int flags)
{
+ uint64_t sync_addr = addr + 0x10000000;
#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
struct drm_xe_sync sync[1] = {
{ .type = DRM_XE_SYNC_TYPE_USER_FENCE, .flags = DRM_XE_SYNC_FLAG_SIGNAL,
@@ -253,15 +254,15 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
};
int64_t fence_timeout;
uint32_t exec_queues[MAX_N_EXEC_QUEUES];
- size_t bo_size;
+ size_t bo_size, sync_size;
uint32_t bo = 0;
struct {
uint32_t batch[16];
uint64_t pad;
uint64_t vm_sync;
- uint64_t exec_sync;
uint32_t data;
} *data;
+ uint64_t *exec_sync;
int i, j, b;
int map_fd = -1;
bool owns_vm = false, owns_fd = false;
@@ -280,6 +281,8 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
bo_size = sizeof(*data) * n_execs;
bo_size = xe_bb_size(fd, bo_size);
+ sync_size = sizeof(*exec_sync) * n_execs;
+ sync_size = xe_bb_size(fd, sync_size);
if (flags & USERPTR) {
if (flags & INVALIDATE) {
@@ -301,6 +304,12 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
}
memset(data, 0, bo_size);
+ exec_sync = mmap(from_user_pointer(userptr + 0x10000000),
+ sync_size, PROT_READ | PROT_WRITE,
+ MAP_SHARED | MAP_FIXED | MAP_ANONYMOUS, -1, 0);
+ igt_assert(exec_sync != MAP_FAILED);
+ memset(exec_sync, 0, sync_size);
+
for (i = 0; i < n_exec_queues; i++)
exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0);
@@ -312,9 +321,12 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
else
xe_vm_bind_userptr_async(fd, vm, 0, to_user_pointer(data), addr,
bo_size, sync, 1);
-
fence_timeout = (igt_run_in_simulation() ? 30 : 3) * NSEC_PER_SEC;
+ xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, 0, fence_timeout);
+ data[0].vm_sync = 0;
+ xe_vm_bind_userptr_async(fd, vm, 0, to_user_pointer(exec_sync),
+ sync_addr, sync_size, sync, 1);
xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, 0, fence_timeout);
data[0].vm_sync = 0;
@@ -333,7 +345,7 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
data[i].batch[b++] = MI_BATCH_BUFFER_END;
igt_assert(b <= ARRAY_SIZE(data[i].batch));
- sync[0].addr = addr + (char *)&data[i].exec_sync - (char *)data;
+ sync[0].addr = sync_addr + (char *)&exec_sync[i] - (char *)exec_sync;
exec.exec_queue_id = exec_queues[e];
exec.address = batch_addr;
@@ -341,7 +353,7 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
if (flags & REBIND && i && !(i & 0x1f)) {
for (j = i == 0x20 ? 0 : i - 0x1f; j <= i; ++j)
- xe_wait_ufence(fd, &data[j].exec_sync,
+ xe_wait_ufence(fd, &exec_sync[j],
USER_FENCE_VALUE,
exec_queues[e], fence_timeout);
xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size,
@@ -371,7 +383,7 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
* an invalidate.
*/
for (j = i == 0x20 ? 0 : i - 0x1f; j <= i; ++j)
- xe_wait_ufence(fd, &data[j].exec_sync,
+ xe_wait_ufence(fd, &exec_sync[j],
USER_FENCE_VALUE,
exec_queues[e],
fence_timeout);
@@ -409,16 +421,9 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
/*
* For !RACE cases xe_wait_ufence has been called in above for-loop
* except the last batch of submissions. For RACE cases we will need
- * to wait for the second half of the submissions to complete. There
- * is a potential race here because the first half submissions might
- * have updated the fence in the old physical location while the test
- * is remapping the buffer from a different physical location, but the
- * wait_ufence only checks the fence from the new location which would
- * never be updated. We have to assume the first half of the submissions
- * complete before the second half. Will have a follow up patch to fix
- * this completely.
+ * to wait for all submissions to complete.
*/
- j = (flags & RACE) ? (n_execs / 2 + 1) : (((n_execs - 1) & ~0x1f) + 1);
+ j = (flags & RACE) ? 0 : (((n_execs - 1) & ~0x1f) + 1);
else if (flags & REBIND)
/*
* For REBIND cases xe_wait_ufence has been called in above for-loop
@@ -427,19 +432,31 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
j = ((n_execs - 1) & ~0x1f) + 1;
for (i = j; i < n_execs; i++)
- xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE,
+ xe_wait_ufence(fd, &exec_sync[i], USER_FENCE_VALUE,
exec_queues[i % n_exec_queues], fence_timeout);
+ /*
+ * For INVALIDATE && RACE cases, due the the remmap in the
+ * middle of the execution, we lose access to some of the
+ * 0xc0ffee written to the old location, so check only for
+ * the second half of the submissions.
+ */
+ if (flags & INVALIDATE && flags & RACE)
+ j = n_execs / 2 + 1;
+ for (i = j; i < n_execs; i++)
+ igt_assert_eq(data[i].data, 0xc0ffee);
+
sync[0].addr = to_user_pointer(&data[0].vm_sync);
+ xe_vm_unbind_async(fd, vm, 0, 0, sync_addr, sync_size, sync, 1);
+ xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, 0, fence_timeout);
+ data[0].vm_sync = 0;
xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1);
xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, 0, fence_timeout);
- for (i = j; i < n_execs; i++)
- igt_assert_eq(data[i].data, 0xc0ffee);
-
for (i = 0; i < n_exec_queues; i++)
xe_exec_queue_destroy(fd, exec_queues[i]);
+ munmap(exec_sync, sync_size);
if (bo) {
munmap(data, bo_size);
gem_close(fd, bo);
--
2.25.1
^ permalink raw reply related [flat|nested] 12+ messages in thread
* ✓ Fi.CI.BAT: success for separate sync data and batch buffer (rev2)
2024-11-08 1:10 [i-g-t, v2, 0/4] separate sync data and batch buffer fei.yang
` (3 preceding siblings ...)
2024-11-08 1:10 ` [i-g-t, v2, 4/4] tests/intel/xe_exec_threads: separate exec_sync and batch buffer fei.yang
@ 2024-11-08 1:48 ` Patchwork
2024-11-08 1:50 ` ✗ CI.xeBAT: failure " Patchwork
` (2 subsequent siblings)
7 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-11-08 1:48 UTC (permalink / raw)
To: fei.yang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5103 bytes --]
== Series Details ==
Series: separate sync data and batch buffer (rev2)
URL : https://patchwork.freedesktop.org/series/140743/
State : success
== Summary ==
CI Bug Log - changes from IGT_8100 -> IGTPW_12066
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/index.html
Participating hosts (45 -> 42)
------------------------------
Additional (1): bat-arls-6
Missing (4): bat-dg1-7 bat-arls-2 bat-arls-1 fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12066:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_selftest@live@gem_contexts:
- {bat-arls-6}: NOTRUN -> [DMESG-WARN][1] +33 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/bat-arls-6/igt@i915_selftest@live@gem_contexts.html
Known issues
------------
Here are the changes found in IGTPW_12066 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-arlh-2: [PASS][2] -> [ABORT][3] ([i915#10341])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8100/bat-arlh-2/igt@i915_selftest@live.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/bat-arlh-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-2: [PASS][4] -> [ABORT][5] ([i915#12061])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8100/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/bat-arlh-2/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-arlh-3: [INCOMPLETE][6] ([i915#10341]) -> [PASS][7] +1 other test pass
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8100/bat-arlh-3/igt@i915_selftest@live.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/bat-arlh-3/igt@i915_selftest@live.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10197
[i915#10200]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10200
[i915#10202]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10202
[i915#10206]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10206
[i915#10207]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10207
[i915#10208]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10208
[i915#10209]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10209
[i915#10211]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10211
[i915#10212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10212
[i915#10213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10213
[i915#10214]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10214
[i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216
[i915#10341]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10341
[i915#11671]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11671
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12203]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12203
[i915#12637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12637
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9886]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9886
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8100 -> IGTPW_12066
* Linux: CI_DRM_15647 -> CI_DRM_15654
CI-20190529: 20190529
CI_DRM_15647: 438ef86a725b59a171dba81fc258bb23a0ff536c @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15654: 4e8bea155458842471845b85ddc1cddddd151db9 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12066: e3c613c6a1d34dfb2c66fbb9296d1e6abb10bce1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8100: 84e42580f918da926481fd2fb37be01451d6ee9a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/index.html
[-- Attachment #2: Type: text/html, Size: 3957 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ CI.xeBAT: failure for separate sync data and batch buffer (rev2)
2024-11-08 1:10 [i-g-t, v2, 0/4] separate sync data and batch buffer fei.yang
` (4 preceding siblings ...)
2024-11-08 1:48 ` ✓ Fi.CI.BAT: success for separate sync data and batch buffer (rev2) Patchwork
@ 2024-11-08 1:50 ` Patchwork
2024-11-08 4:44 ` ✗ Fi.CI.IGT: " Patchwork
2024-11-09 8:40 ` ✗ CI.xeFULL: " Patchwork
7 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-11-08 1:50 UTC (permalink / raw)
To: fei.yang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4166 bytes --]
== Series Details ==
Series: separate sync data and batch buffer (rev2)
URL : https://patchwork.freedesktop.org/series/140743/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8100_BAT -> XEIGTPW_12066_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12066_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12066_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12066_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-edp-1:
- bat-lnl-1: [PASS][1] -> [DMESG-WARN][2] +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/bat-lnl-1/igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-edp-1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/bat-lnl-1/igt@kms_pipe_crc_basic@hang-read-crc@pipe-b-edp-1.html
Known issues
------------
Here are the changes found in XEIGTPW_12066_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_evict@evict-beng-small:
- bat-adlp-7: NOTRUN -> [SKIP][3] ([Intel XE#261] / [Intel XE#688]) +15 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/bat-adlp-7/igt@xe_evict@evict-beng-small.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch:
- bat-adlp-7: NOTRUN -> [SKIP][4] ([Intel XE#288]) +32 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-adlp-7: NOTRUN -> [SKIP][5] ([Intel XE#2229])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
#### Possible fixes ####
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-bmg-1: [INCOMPLETE][6] ([Intel XE#2874] / [Intel XE#2998]) -> [PASS][7] +1 other test pass
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/bat-bmg-1/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
- bat-adlp-7: [INCOMPLETE][8] ([Intel XE#2874]) -> [PASS][9] +1 other test pass
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2998]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2998
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
Build changes
-------------
* IGT: IGT_8100 -> IGTPW_12066
* Linux: xe-2179-438ef86a725b59a171dba81fc258bb23a0ff536c -> xe-2186-4e8bea155458842471845b85ddc1cddddd151db9
IGTPW_12066: e3c613c6a1d34dfb2c66fbb9296d1e6abb10bce1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8100: 84e42580f918da926481fd2fb37be01451d6ee9a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2179-438ef86a725b59a171dba81fc258bb23a0ff536c: 438ef86a725b59a171dba81fc258bb23a0ff536c
xe-2186-4e8bea155458842471845b85ddc1cddddd151db9: 4e8bea155458842471845b85ddc1cddddd151db9
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/index.html
[-- Attachment #2: Type: text/html, Size: 4927 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.IGT: failure for separate sync data and batch buffer (rev2)
2024-11-08 1:10 [i-g-t, v2, 0/4] separate sync data and batch buffer fei.yang
` (5 preceding siblings ...)
2024-11-08 1:50 ` ✗ CI.xeBAT: failure " Patchwork
@ 2024-11-08 4:44 ` Patchwork
2024-11-09 8:40 ` ✗ CI.xeFULL: " Patchwork
7 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-11-08 4:44 UTC (permalink / raw)
To: fei.yang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100262 bytes --]
== Series Details ==
Series: separate sync data and batch buffer (rev2)
URL : https://patchwork.freedesktop.org/series/140743/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15654_full -> IGTPW_12066_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12066_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12066_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/index.html
Participating hosts (9 -> 9)
------------------------------
Additional (1): shard-glk-0
Missing (1): shard-glk
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12066_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_ctx_engines@invalid-engines:
- shard-dg1: [PASS][1] -> [INCOMPLETE][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg1-16/igt@gem_ctx_engines@invalid-engines.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-19/igt@gem_ctx_engines@invalid-engines.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a3:
- shard-dg2: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg2-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a3.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a3.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-270.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_async_flips@crc@pipe-a-dp-4:
- {shard-dg2-9}: NOTRUN -> [FAIL][6] +3 other tests fail
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-9/igt@kms_async_flips@crc@pipe-a-dp-4.html
* igt@kms_rotation_crc@bad-pixel-format:
- {shard-dg2-9}: NOTRUN -> [SKIP][7]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-9/igt@kms_rotation_crc@bad-pixel-format.html
Known issues
------------
Here are the changes found in IGTPW_12066_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8411]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-18/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#8411])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-7/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-tglu-1: NOTRUN -> [SKIP][10] ([i915#11078])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@most-busy-idle-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][11] ([i915#8414]) +26 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-7/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html
* igt@drm_fdinfo@virtual-busy-hang-all:
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8414])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-8/igt@drm_fdinfo@virtual-busy-hang-all.html
- shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-17/igt@drm_fdinfo@virtual-busy-hang-all.html
* igt@gem_busy@close-race:
- shard-dg2: NOTRUN -> [FAIL][14] ([i915#12296] / [i915#12577])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-10/igt@gem_busy@close-race.html
* igt@gem_caching@read-writes:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#4873])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-6/igt@gem_caching@read-writes.html
* igt@gem_ccs@block-copy-compressed:
- shard-snb: NOTRUN -> [SKIP][16] +148 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-snb7/igt@gem_ccs@block-copy-compressed.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: NOTRUN -> [INCOMPLETE][17] ([i915#7297])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-3/igt@gem_ccs@suspend-resume.html
- shard-rkl: NOTRUN -> [SKIP][18] ([i915#9323])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-4/igt@gem_ccs@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#9323])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-18/igt@gem_ccs@suspend-resume.html
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#9323])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-8/igt@gem_ccs@suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#9323])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-6/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][22] ([i915#12392] / [i915#7297])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][23] ([i915#7697])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-5/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_ctx_persistence@engines-mixed-process:
- shard-snb: NOTRUN -> [SKIP][24] ([i915#1099]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-snb6/igt@gem_ctx_persistence@engines-mixed-process.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#8555])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-mtlp: NOTRUN -> [SKIP][26] ([i915#8555])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-dg2: NOTRUN -> [SKIP][27] ([i915#8555])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@hostile:
- shard-tglu: NOTRUN -> [FAIL][28] ([i915#11980] / [i915#12580])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-4/igt@gem_ctx_persistence@hostile.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#280])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-13/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_ctx_sseu@mmap-args:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#280])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-4/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@hibernate:
- shard-dg1: [PASS][31] -> [ABORT][32] ([i915#7975] / [i915#8213])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg1-18/igt@gem_eio@hibernate.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-14/igt@gem_eio@hibernate.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#4812]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-1/igt@gem_exec_balancer@bonded-true-hang.html
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#4812]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-14/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@parallel-out-fence:
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#4525])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-4/igt@gem_exec_balancer@parallel-out-fence.html
* igt@gem_exec_capture@capture-invisible:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#6334]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-5/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +4 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-8/igt@gem_exec_fair@basic-none-rrul.html
- shard-rkl: NOTRUN -> [FAIL][38] ([i915#2842]) +1 other test fail
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-7/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-tglu-1: NOTRUN -> [FAIL][39] ([i915#2842]) +1 other test fail
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-pace-share:
- shard-tglu: [PASS][40] -> [FAIL][41] ([i915#2842]) +1 other test fail
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-tglu-9/igt@gem_exec_fair@basic-pace-share.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-7/igt@gem_exec_fair@basic-pace-share.html
* igt@gem_exec_fair@basic-pace@bcs0:
- shard-tglu: NOTRUN -> [FAIL][42] ([i915#2842]) +9 other tests fail
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-6/igt@gem_exec_fair@basic-pace@bcs0.html
- shard-rkl: [PASS][43] -> [FAIL][44] ([i915#2842])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-rkl-3/igt@gem_exec_fair@basic-pace@bcs0.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-1/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_fence@submit:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4812]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-2/igt@gem_exec_fence@submit.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) +2 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-18/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#5107])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-10/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][48] ([i915#3281]) +6 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-noreloc.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#3281]) +6 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_exec_reloc@basic-gtt-read-active:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#3281]) +15 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-7/igt@gem_exec_reloc@basic-gtt-read-active.html
* igt@gem_exec_reloc@basic-write-gtt-active:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#3281]) +14 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-17/igt@gem_exec_reloc@basic-write-gtt-active.html
* igt@gem_exec_schedule@pi-common@vcs0:
- shard-rkl: NOTRUN -> [FAIL][52] ([i915#12296]) +4 other tests fail
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-4/igt@gem_exec_schedule@pi-common@vcs0.html
* igt@gem_exec_schedule@pi-common@vecs0:
- shard-dg2: NOTRUN -> [FAIL][53] ([i915#12296]) +7 other tests fail
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-1/igt@gem_exec_schedule@pi-common@vecs0.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_fence_thrash@bo-write-verify-none:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4860]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-17/igt@gem_fence_thrash@bo-write-verify-none.html
* igt@gem_fenced_exec_thrash@no-spare-fences-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4860])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-6/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
- shard-dg2: NOTRUN -> [SKIP][57] ([i915#4860]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-4/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4613]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-8/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
- shard-dg1: NOTRUN -> [SKIP][59] ([i915#12193])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4565])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][61] ([i915#4613]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-8/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#4613]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][63] ([i915#4613]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_mmap_gtt@basic-small-bo-tiledx:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4077]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-5/igt@gem_mmap_gtt@basic-small-bo-tiledx.html
* igt@gem_mmap_gtt@flink-race:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#4077]) +5 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-12/igt@gem_mmap_gtt@flink-race.html
* igt@gem_mmap_wc@fault-concurrent:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4083]) +4 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-13/igt@gem_mmap_wc@fault-concurrent.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083]) +7 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-2/igt@gem_mmap_wc@write-prefaulted.html
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4083]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-3/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#3282]) +6 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-4/igt@gem_partial_pwrite_pread@write-uncached.html
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#3282])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-5/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3282])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-5/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pxp@create-protected-buffer:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#4270]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-3/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@create-regular-buffer:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4270])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-5/igt@gem_pxp@create-regular-buffer.html
* igt@gem_pxp@create-regular-context-1:
- shard-tglu-1: NOTRUN -> [SKIP][74] ([i915#4270]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@gem_pxp@create-regular-context-1.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-tglu: NOTRUN -> [SKIP][75] ([i915#4270])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-6/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_readwrite@read-bad-handle:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#3282]) +1 other test skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-14/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#8428]) +5 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-7/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#5190] / [i915#8428]) +13 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-10/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4079])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-5/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#8411])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#4079]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-7/igt@gem_set_tiling_vs_gtt.html
* igt@gem_set_tiling_vs_pwrite:
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#4079])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-13/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_tiled_partial_pwrite_pread@writes:
- shard-dg2: NOTRUN -> [SKIP][83] ([i915#4077]) +13 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-10/igt@gem_tiled_partial_pwrite_pread@writes.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: NOTRUN -> [SKIP][84] ([i915#3297])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-1/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3297])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-1/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#4880]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-14/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#3297] / [i915#4880])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#3297]) +4 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-1/igt@gem_userptr_blits@readonly-unsync.html
- shard-dg1: NOTRUN -> [SKIP][89] ([i915#3297]) +3 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-17/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#3297])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap.html
* igt@gen7_exec_parse@bitmasks:
- shard-dg2: NOTRUN -> [SKIP][91] +14 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-5/igt@gen7_exec_parse@bitmasks.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#2856]) +2 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-4/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-cmd:
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#2527]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-19/igt@gen9_exec_parse@bb-start-cmd.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: NOTRUN -> [SKIP][94] ([i915#2527])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-1/igt@gen9_exec_parse@bb-start-param.html
- shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@gen9_exec_parse@bb-start-param.html
- shard-mtlp: NOTRUN -> [SKIP][96] ([i915#2856])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-8/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_fb_tiling:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#4881])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-1/igt@i915_fb_tiling.html
* igt@i915_module_load@load:
- shard-tglu: NOTRUN -> [SKIP][98] ([i915#6227])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-9/igt@i915_module_load@load.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#6412])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-5/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-reset:
- shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#8399]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#11681] / [i915#6621]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-4/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@reset:
- shard-mtlp: NOTRUN -> [FAIL][102] ([i915#8346])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-7/igt@i915_pm_rps@reset.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][103] ([i915#11681]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-7/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_pm_sseu@full-enable:
- shard-dg2: NOTRUN -> [SKIP][104] ([i915#4387])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-10/igt@i915_pm_sseu@full-enable.html
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#4387])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-5/igt@i915_pm_sseu@full-enable.html
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#4387])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-12/igt@i915_pm_sseu@full-enable.html
- shard-mtlp: NOTRUN -> [SKIP][107] ([i915#8437])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-3/igt@i915_pm_sseu@full-enable.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][108] ([i915#6245])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-18/igt@i915_query@hwconfig_table.html
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#6245])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-4/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@mock:
- shard-tglu: NOTRUN -> [DMESG-WARN][110] ([i915#9311]) +1 other test dmesg-warn
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-8/igt@i915_selftest@mock.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#4212])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-14/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#4212] / [i915#5190])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-1/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#4212])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#8709]) +3 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#8709]) +11 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#1769] / [i915#3555])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition:
- shard-dg1: [PASS][117] -> [DMESG-WARN][118] ([i915#4423])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg1-19/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-14/igt@kms_atomic_transition@plane-toggle-modeset-transition.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#5286]) +4 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-4/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#5286]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-dg1: NOTRUN -> [SKIP][121] ([i915#5286])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-13/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#5286]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#4538] / [i915#5286])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#3638])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#3638]) +2 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-13/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#4538] / [i915#5190]) +12 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-10/igt@kms_big_fb@y-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][127] +19 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#6187])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#4538]) +7 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][131] ([i915#6095]) +85 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-2/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][132] ([i915#12313]) +3 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#6095]) +160 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][134] ([i915#12313]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#6095]) +14 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#10307] / [i915#6095]) +184 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][137] ([i915#6095]) +14 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-7/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-dg1: NOTRUN -> [SKIP][138] ([i915#12313])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-14/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#12313])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-4/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
- shard-rkl: NOTRUN -> [SKIP][140] ([i915#12313])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#6095]) +39 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#11616] / [i915#7213])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-2/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#7213]) +3 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-2/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_color@ctm-max:
- shard-mtlp: NOTRUN -> [SKIP][144] +8 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-3/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-tglu: NOTRUN -> [SKIP][145] ([i915#7828]) +6 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-8/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_frames@hdmi-crc-multiple:
- shard-dg2: NOTRUN -> [SKIP][146] ([i915#7828]) +12 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-4/igt@kms_chamelium_frames@hdmi-crc-multiple.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#7828]) +5 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#7828]) +7 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-19/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#7828]) +3 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-6/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#7828]) +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#3116] / [i915#3299]) +1 other test skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-9/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@legacy:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#7116] / [i915#9424])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-12/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@legacy@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][153] ([i915#7173])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-10/igt@kms_content_protection@legacy@pipe-a-dp-4.html
* igt@kms_content_protection@srm:
- shard-tglu: NOTRUN -> [SKIP][154] ([i915#6944] / [i915#7116] / [i915#7118])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-5/igt@kms_content_protection@srm.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][155] ([i915#7118] / [i915#9424]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-2/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#3555]) +2 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#11453] / [i915#3359]) +4 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#11453] / [i915#3359])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#3555]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#11453] / [i915#3359]) +1 other test skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#11453] / [i915#3359]) +1 other test skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#11453] / [i915#3359]) +2 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-14/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#3555]) +6 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-rkl: NOTRUN -> [SKIP][164] ([i915#3555]) +3 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#8814])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x21:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#8814]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-2/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-dg1: NOTRUN -> [SKIP][167] ([i915#4103] / [i915#4213])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-18/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-mtlp: [PASS][168] -> [FAIL][169] ([i915#2346])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#9067])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-8/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#9067])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#9067])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#9067])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-19/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#4103]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_display_modes@mst-extended-mode-negative:
- shard-dg1: NOTRUN -> [SKIP][175] ([i915#8588])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-18/igt@kms_display_modes@mst-extended-mode-negative.html
- shard-tglu: NOTRUN -> [SKIP][176] ([i915#8588])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-7/igt@kms_display_modes@mst-extended-mode-negative.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#1769] / [i915#3555] / [i915#3804])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#3804])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#3804])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dsc@dsc-basic:
- shard-dg1: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#3840])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-12/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#3555] / [i915#3840]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-8/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_feature_discovery@chamelium:
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#4854])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-16/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#1839])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-2/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#1839])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-7/igt@kms_feature_discovery@display-2x.html
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#1839])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-16/igt@kms_feature_discovery@display-2x.html
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#1839])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-7/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#1839]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-11/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#9337])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-5/igt@kms_feature_discovery@dp-mst.html
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#9337])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-7/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#658]) +1 other test skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-12/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#3637]) +1 other test skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#8381])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-19/igt@kms_flip@2x-flip-vs-fences.html
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#8381]) +1 other test skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-6/igt@kms_flip@2x-flip-vs-fences.html
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#8381])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-4/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][195] ([i915#3637]) +2 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-dg1: NOTRUN -> [SKIP][196] ([i915#9934]) +3 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-12/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#3637]) +6 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-7/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#3637] / [i915#3966])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-9/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1:
- shard-snb: [PASS][199] -> [FAIL][200] ([i915#2122]) +7 other tests fail
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-snb2/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-snb4/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- shard-mtlp: NOTRUN -> [FAIL][201] ([i915#2122]) +1 other test fail
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-6/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-dg2: [PASS][202] -> [FAIL][203] ([i915#79])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg2-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-rkl: NOTRUN -> [SKIP][204] ([i915#2672] / [i915#3555]) +1 other test skip
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#2672]) +1 other test skip
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#2672] / [i915#3555])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#2587] / [i915#2672]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/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-32bpp-yftileccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#2587] / [i915#2672]) +3 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#2587] / [i915#2672]) +4 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#2672] / [i915#3555])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][212] ([i915#2672] / [i915#8813]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][213] ([i915#2587] / [i915#2672] / [i915#3555])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#2587] / [i915#2672] / [i915#3555])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][215] ([i915#2672]) +4 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#2587] / [i915#2672] / [i915#3555])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#2672] / [i915#3555]) +3 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#2672] / [i915#3555]) +2 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-19/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#2672] / [i915#3555] / [i915#5190]) +3 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#5354]) +54 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite:
- shard-snb: [PASS][221] -> [SKIP][222] +12 other tests skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#1825]) +24 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][224] +27 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#3458]) +19 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][226] ([i915#8708]) +14 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#8708]) +25 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt:
- shard-tglu: NOTRUN -> [SKIP][228] +64 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][229] ([i915#1825]) +14 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][230] +45 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#3458]) +15 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#9766])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-3/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#10433] / [i915#3458])
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#3023]) +10 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#8708]) +2 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-5/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@brightness-with-hdr@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][237] ([i915#12701])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-10/igt@kms_hdr@brightness-with-hdr@pipe-a-dp-4.html
* igt@kms_hdr@static-toggle:
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-17/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][239] ([i915#10656])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-19/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#12394])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-13/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][241] ([i915#10656])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-7/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#10656])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-8/igt@kms_joiner@basic-force-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#12394])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-7/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#10656])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-7/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][245] ([i915#4816])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#6301])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-4/igt@kms_panel_fitting@atomic-fastset.html
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#6301])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_multiple@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#8806])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-4/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#12247]) +14 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#12247] / [i915#9423])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#12247]) +4 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#12247]) +7 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#12247] / [i915#6953] / [i915#9423])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-4/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#12247] / [i915#6953])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#12247] / [i915#6953])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][256] ([i915#12247]) +3 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- shard-dg1: NOTRUN -> [SKIP][257] ([i915#12247] / [i915#12504]) +2 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][258] ([i915#12247])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][259] ([i915#12247] / [i915#6953])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
- shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#12247] / [i915#6953])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c:
- shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#12247]) +3 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg1: NOTRUN -> [SKIP][262] ([i915#5354])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-16/igt@kms_pm_backlight@fade-with-dpms.html
- shard-tglu: NOTRUN -> [SKIP][263] ([i915#9812])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-8/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-psr:
- shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#9685])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-psr:
- shard-mtlp: NOTRUN -> [SKIP][265] ([i915#10139])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-3/igt@kms_pm_dc@dc6-psr.html
- shard-dg2: NOTRUN -> [SKIP][266] ([i915#9685])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-10/igt@kms_pm_dc@dc6-psr.html
- shard-rkl: NOTRUN -> [SKIP][267] ([i915#9685])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-5/igt@kms_pm_dc@dc6-psr.html
- shard-dg1: NOTRUN -> [SKIP][268] ([i915#9685])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-12/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [PASS][269] -> [SKIP][270] ([i915#4281])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#8430])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-4/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#9519]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-3/igt@kms_pm_rpm@dpms-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#9519])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-13/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [PASS][274] -> [SKIP][275] ([i915#9519]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp.html
- shard-rkl: [PASS][276] -> [SKIP][277] ([i915#9519]) +1 other test skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][278] ([i915#9519]) +1 other test skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-5/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#9519])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#6524] / [i915#6805])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-5/igt@kms_prime@basic-crc-vgem.html
- shard-dg1: NOTRUN -> [SKIP][281] ([i915#6524])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-17/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#11520]) +5 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
- shard-snb: NOTRUN -> [SKIP][283] ([i915#11520]) +7 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-snb7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][284] ([i915#9808])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][285] ([i915#11520]) +5 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu-1: NOTRUN -> [SKIP][286] ([i915#11520])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-mtlp: NOTRUN -> [SKIP][287] ([i915#12316]) +6 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-2/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#11520]) +12 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-4/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-dg1: NOTRUN -> [SKIP][289] ([i915#11520]) +13 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-12/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-mtlp: NOTRUN -> [SKIP][290] ([i915#4348])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-7/igt@kms_psr2_su@page_flip-nv12.html
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#9683])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-13/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr2_su@page_flip-p010:
- shard-dg2: NOTRUN -> [SKIP][292] ([i915#9683]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-1/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][293] ([i915#9683]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-9/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-cursor-render:
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#9688]) +11 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-8/igt@kms_psr@fbc-pr-cursor-render.html
* igt@kms_psr@fbc-psr2-primary-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][295] ([i915#9732]) +16 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-9/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html
* igt@kms_psr@psr-cursor-render:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#1072] / [i915#9732]) +29 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-5/igt@kms_psr@psr-cursor-render.html
* igt@kms_psr@psr-sprite-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#9732]) +11 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html
- shard-dg1: NOTRUN -> [SKIP][298] ([i915#1072] / [i915#9732]) +23 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-19/igt@kms_psr@psr-sprite-mmap-cpu.html
* igt@kms_psr@psr2-cursor-blt:
- shard-rkl: NOTRUN -> [SKIP][299] ([i915#1072] / [i915#9732]) +14 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-5/igt@kms_psr@psr2-cursor-blt.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][300] ([i915#5190]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#5289])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-tglu: NOTRUN -> [SKIP][302] ([i915#3555]) +5 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-6/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu-1: NOTRUN -> [ABORT][303] ([i915#12231]) +1 other test abort
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic:
- shard-snb: [PASS][304] -> [FAIL][305] ([i915#5465]) +2 other tests fail
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-snb5/igt@kms_setmode@basic.html
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-snb1/igt@kms_setmode@basic.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-mtlp: NOTRUN -> [SKIP][306] ([i915#3555] / [i915#8809])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-1/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_setmode@basic@pipe-a-vga-1-pipe-b-hdmi-a-1:
- shard-snb: NOTRUN -> [FAIL][307] ([i915#5465]) +3 other tests fail
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-snb1/igt@kms_setmode@basic@pipe-a-vga-1-pipe-b-hdmi-a-1.html
* igt@kms_sysfs_edid_timing:
- shard-dg1: NOTRUN -> [FAIL][308] ([IGT#2] / [i915#6493])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-16/igt@kms_sysfs_edid_timing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#8623])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg1: NOTRUN -> [SKIP][310] ([i915#8623])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-19/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg1: NOTRUN -> [SKIP][311] ([i915#9906])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-19/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][312] ([i915#11920])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-11/igt@kms_vrr@lobf.html
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#11920])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-7/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#9906]) +1 other test skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output:
- shard-dg2: NOTRUN -> [SKIP][315] ([i915#2437]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-4/igt@kms_writeback@writeback-check-output.html
- shard-rkl: NOTRUN -> [SKIP][316] ([i915#2437])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-5/igt@kms_writeback@writeback-check-output.html
- shard-dg1: NOTRUN -> [SKIP][317] ([i915#2437])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-12/igt@kms_writeback@writeback-check-output.html
- shard-tglu: NOTRUN -> [SKIP][318] ([i915#2437])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-3/igt@kms_writeback@writeback-check-output.html
- shard-mtlp: NOTRUN -> [SKIP][319] ([i915#2437])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-3/igt@kms_writeback@writeback-check-output.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu-1: NOTRUN -> [SKIP][320] ([i915#2437] / [i915#9412])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-mtlp: [PASS][321] -> [FAIL][322] ([i915#11943])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-mtlp-3/igt@perf_pmu@all-busy-idle-check-all.html
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-8/igt@perf_pmu@all-busy-idle-check-all.html
* igt@perf_pmu@busy-accuracy-98:
- shard-tglu: [PASS][323] -> [FAIL][324] ([i915#12513] / [i915#4349])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-tglu-8/igt@perf_pmu@busy-accuracy-98.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-3/igt@perf_pmu@busy-accuracy-98.html
* igt@perf_pmu@busy-accuracy-98@rcs0:
- shard-rkl: [PASS][325] -> [FAIL][326] ([i915#4349]) +1 other test fail
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-rkl-1/igt@perf_pmu@busy-accuracy-98@rcs0.html
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-2/igt@perf_pmu@busy-accuracy-98@rcs0.html
* igt@perf_pmu@busy-accuracy-98@vcs1:
- shard-tglu: [PASS][327] -> [FAIL][328] ([i915#12513])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-tglu-8/igt@perf_pmu@busy-accuracy-98@vcs1.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-3/igt@perf_pmu@busy-accuracy-98@vcs1.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: [PASS][329] -> [FAIL][330] ([i915#4349])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-mtlp-5/igt@perf_pmu@busy-double-start@bcs0.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-7/igt@perf_pmu@busy-double-start@bcs0.html
* igt@perf_pmu@busy-double-start@vcs0:
- shard-dg1: [PASS][331] -> [FAIL][332] ([i915#4349]) +1 other test fail
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg1-17/igt@perf_pmu@busy-double-start@vcs0.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-13/igt@perf_pmu@busy-double-start@vcs0.html
* igt@perf_pmu@most-busy-idle-check-all:
- shard-dg2: [PASS][333] -> [FAIL][334] ([i915#11943] / [i915#12515]) +1 other test fail
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg2-3/igt@perf_pmu@most-busy-idle-check-all.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-4/igt@perf_pmu@most-busy-idle-check-all.html
* igt@perf_pmu@most-busy-idle-check-all@rcs0:
- shard-dg1: [PASS][335] -> [FAIL][336] ([i915#11943]) +2 other tests fail
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg1-19/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-19/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
- shard-mtlp: [PASS][337] -> [FAIL][338] ([i915#11943] / [i915#12515]) +1 other test fail
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-mtlp-4/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-6/igt@perf_pmu@most-busy-idle-check-all@rcs0.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: NOTRUN -> [SKIP][339] ([i915#3708]) +1 other test skip
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-7/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-write-hang:
- shard-mtlp: NOTRUN -> [SKIP][340] ([i915#3708])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-8/igt@prime_vgem@fence-write-hang.html
- shard-dg2: NOTRUN -> [SKIP][341] ([i915#3708])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-5/igt@prime_vgem@fence-write-hang.html
- shard-dg1: NOTRUN -> [SKIP][342] ([i915#3708])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-18/igt@prime_vgem@fence-write-hang.html
* igt@sriov_basic@enable-vfs-bind-unbind-each:
- shard-dg1: NOTRUN -> [SKIP][343] ([i915#9917])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-19/igt@sriov_basic@enable-vfs-bind-unbind-each.html
- shard-tglu-1: NOTRUN -> [SKIP][344] ([i915#9917])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each.html
#### Possible fixes ####
* igt@gem_ctx_engines@invalid-engines:
- shard-mtlp: [FAIL][345] ([i915#12031]) -> [PASS][346]
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-mtlp-8/igt@gem_ctx_engines@invalid-engines.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-3/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_eio@hibernate:
- shard-dg2: [ABORT][347] ([i915#10030] / [i915#7975] / [i915#8213]) -> [PASS][348]
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg2-2/igt@gem_eio@hibernate.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-11/igt@gem_eio@hibernate.html
* igt@gem_eio@kms:
- shard-dg2: [FAIL][349] ([i915#5784]) -> [PASS][350]
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg2-2/igt@gem_eio@kms.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-7/igt@gem_eio@kms.html
* igt@gem_exec_balancer@nop:
- shard-mtlp: [DMESG-WARN][351] ([i915#12412]) -> [PASS][352]
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-mtlp-5/igt@gem_exec_balancer@nop.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-4/igt@gem_exec_balancer@nop.html
* igt@gem_exec_fair@basic-pace@vecs0:
- shard-rkl: [FAIL][353] ([i915#2842]) -> [PASS][354] +1 other test pass
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-rkl-3/igt@gem_exec_fair@basic-pace@vecs0.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-1/igt@gem_exec_fair@basic-pace@vecs0.html
* igt@gem_wait@write-busy:
- shard-snb: [INCOMPLETE][355] -> [PASS][356] +1 other test pass
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-snb2/igt@gem_wait@write-busy.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-snb1/igt@gem_wait@write-busy.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-dg1: [ABORT][357] ([i915#9820]) -> [PASS][358]
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg1-19/igt@i915_module_load@reload-with-fault-injection.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-13/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-dg2: [SKIP][359] ([i915#12402]) -> [PASS][360]
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg2-5/igt@kms_dp_linktrain_fallback@dp-fallback.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-10/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1:
- shard-snb: [DMESG-WARN][361] -> [PASS][362] +1 other test pass
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-snb5/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html
* igt@kms_flip@flip-vs-blocking-wf-vblank:
- shard-rkl: [FAIL][363] ([i915#11989] / [i915#2122]) -> [PASS][364]
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-rkl-2/igt@kms_flip@flip-vs-blocking-wf-vblank.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-5/igt@kms_flip@flip-vs-blocking-wf-vblank.html
- shard-dg2: [FAIL][365] ([i915#2122]) -> [PASS][366]
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg2-5/igt@kms_flip@flip-vs-blocking-wf-vblank.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-4/igt@kms_flip@flip-vs-blocking-wf-vblank.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1:
- shard-mtlp: [FAIL][367] ([i915#11989]) -> [PASS][368]
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-mtlp-3/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-6/igt@kms_flip@flip-vs-blocking-wf-vblank@c-edp1.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1:
- shard-tglu: [FAIL][369] ([i915#2122]) -> [PASS][370] +2 other tests pass
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-tglu-6/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-tglu-4/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend@b-edp1:
- shard-mtlp: [INCOMPLETE][371] ([i915#6113]) -> [PASS][372] +1 other test pass
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-mtlp-5/igt@kms_flip@flip-vs-suspend@b-edp1.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-mtlp-5/igt@kms_flip@flip-vs-suspend@b-edp1.html
* igt@kms_flip@plain-flip-fb-recreate@a-vga1:
- shard-snb: [FAIL][373] ([i915#2122]) -> [PASS][374] +8 other tests pass
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-snb6/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-snb4/igt@kms_flip@plain-flip-fb-recreate@a-vga1.html
* igt@kms_flip@wf_vblank-ts-check:
- shard-snb: [FAIL][375] ([i915#10826] / [i915#2122]) -> [PASS][376]
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-snb7/igt@kms_flip@wf_vblank-ts-check.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-snb5/igt@kms_flip@wf_vblank-ts-check.html
* igt@kms_flip@wf_vblank-ts-check@a-vga1:
- shard-snb: [FAIL][377] ([i915#10826]) -> [PASS][378]
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-snb7/igt@kms_flip@wf_vblank-ts-check@a-vga1.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-snb5/igt@kms_flip@wf_vblank-ts-check@a-vga1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite:
- shard-dg2: [FAIL][379] ([i915#6880]) -> [PASS][380]
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-snb: [SKIP][381] -> [PASS][382] +6 other tests pass
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [SKIP][383] ([i915#9519]) -> [PASS][384] +1 other test pass
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][385] ([i915#9519]) -> [PASS][386]
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [ABORT][387] ([i915#9697]) -> [ABORT][388] ([i915#9820])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-rkl-5/igt@i915_module_load@reload-with-fault-injection.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-4k:
- shard-dg1: [SKIP][389] ([i915#4423] / [i915#7828]) -> [SKIP][390] ([i915#7828])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg1-12/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-17/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html
* igt@kms_content_protection@legacy:
- shard-dg2: [SKIP][391] ([i915#7118] / [i915#9424]) -> [TIMEOUT][392] ([i915#7173])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg2-7/igt@kms_content_protection@legacy.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-10/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][393] ([i915#9424]) -> [SKIP][394] ([i915#9433])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg1-16/igt@kms_content_protection@mei-interface.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-13/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][395] ([i915#7118] / [i915#7162] / [i915#9424]) -> [SKIP][396] ([i915#7118] / [i915#9424])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg2-10/igt@kms_content_protection@type1.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-3/igt@kms_content_protection@type1.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-dg1: [SKIP][397] ([i915#2672] / [i915#3555] / [i915#4423]) -> [SKIP][398] ([i915#2672] / [i915#3555])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg1: [SKIP][399] ([i915#2587] / [i915#2672] / [i915#4423]) -> [SKIP][400] ([i915#2587] / [i915#2672])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite:
- shard-dg2: [SKIP][401] ([i915#10433] / [i915#3458]) -> [SKIP][402] ([i915#3458]) +3 other tests skip
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][403] ([i915#3458]) -> [SKIP][404] ([i915#10433] / [i915#3458]) +2 other tests skip
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: [SKIP][405] ([i915#12713]) -> [FAIL][406] ([i915#12701])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg2-7/igt@kms_hdr@brightness-with-hdr.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg2-10/igt@kms_hdr@brightness-with-hdr.html
- shard-rkl: [SKIP][407] ([i915#1187] / [i915#12713]) -> [SKIP][408] ([i915#12713])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][409] ([i915#4070] / [i915#4816]) -> [SKIP][410] ([i915#4816])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pm_rpm@pm-tiling:
- shard-dg1: [SKIP][411] ([i915#4077] / [i915#4423]) -> [SKIP][412] ([i915#4077])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15654/shard-dg1-12/igt@kms_pm_rpm@pm-tiling.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/shard-dg1-18/igt@kms_pm_rpm@pm-tiling.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030
[i915#10139]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10139
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11453
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11943]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11943
[i915#11980]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11980
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[i915#12031]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12031
[i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193
[i915#12231]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12231
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12296]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12296
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402
[i915#12412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12412
[i915#12504]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12504
[i915#12513]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12513
[i915#12515]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12515
[i915#12577]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12577
[i915#12580]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12580
[i915#12591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12591
[i915#12646]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12646
[i915#12701]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12701
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122
[i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3966]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3966
[i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/d
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12066/index.html
[-- Attachment #2: Type: text/html, Size: 120654 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ CI.xeFULL: failure for separate sync data and batch buffer (rev2)
2024-11-08 1:10 [i-g-t, v2, 0/4] separate sync data and batch buffer fei.yang
` (6 preceding siblings ...)
2024-11-08 4:44 ` ✗ Fi.CI.IGT: " Patchwork
@ 2024-11-09 8:40 ` Patchwork
7 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2024-11-09 8:40 UTC (permalink / raw)
To: fei.yang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 75350 bytes --]
== Series Details ==
Series: separate sync data and batch buffer (rev2)
URL : https://patchwork.freedesktop.org/series/140743/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8100_full -> XEIGTPW_12066_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12066_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12066_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_12066_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_psr@fbc-psr-cursor-blt@edp-1:
- shard-lnl: [PASS][1] -> [FAIL][2] +3 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-5/igt@kms_psr@fbc-psr-cursor-blt@edp-1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-3/igt@kms_psr@fbc-psr-cursor-blt@edp-1.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-dg2-set2: NOTRUN -> [SKIP][3] +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd:
- shard-bmg: [PASS][4] -> [FAIL][5] +1 other test fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-6/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-1/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
- shard-dg2-set2: [PASS][6] -> [FAIL][7] +2 other tests fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-466/igt@xe_evict_ccs@evict-overcommit-parallel-nofree-samefd.html
* igt@xe_exec_basic@once-bindexecqueue-rebind:
- shard-lnl: [PASS][8] -> [DMESG-WARN][9] +1 other test dmesg-warn
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-5/igt@xe_exec_basic@once-bindexecqueue-rebind.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-7/igt@xe_exec_basic@once-bindexecqueue-rebind.html
Known issues
------------
Here are the changes found in XEIGTPW_12066_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unbind-rebind:
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#1885])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@core_hotunplug@unbind-rebind.html
* igt@core_hotunplug@unplug-rescan:
- shard-dg2-set2: [PASS][11] -> [SKIP][12] ([Intel XE#1885]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@core_hotunplug@unplug-rescan.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@core_hotunplug@unplug-rescan.html
* igt@fbdev@read:
- shard-dg2-set2: [PASS][13] -> [SKIP][14] ([Intel XE#2134]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@fbdev@read.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@fbdev@read.html
* igt@kms_atomic_transition@modeset-transition-nonblocking:
- shard-lnl: NOTRUN -> [FAIL][15] ([Intel XE#1701]) +1 other test fail
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-1/igt@kms_atomic_transition@modeset-transition-nonblocking.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#316]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-463/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1407])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-8/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-0:
- shard-dg2-set2: [PASS][18] -> [DMESG-WARN][19] ([Intel XE#877])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_big_fb@linear-64bpp-rotate-0.html
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-464/igt@kms_big_fb@linear-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#619])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +14 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2191])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-7/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#2191])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-466/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#367]) +4 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#367])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-1/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#787]) +119 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-435/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#2907]) +1 other test skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2652] / [Intel XE#787]) +8 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-b-dp-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#2887]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#2669]) +3 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-5:
- shard-dg2-set2: NOTRUN -> [FAIL][32] ([Intel XE#616]) +3 other tests fail
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-466/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-5.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#455] / [Intel XE#787]) +34 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][34] ([Intel XE#1195] / [Intel XE#3113] / [Intel XE#3124])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#314])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-464/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_audio@dp-audio:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#373]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-6/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#306]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-463/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_color@ctm-max:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2325])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-3/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#373]) +9 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-432/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2252])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-8/igt@kms_chamelium_hpd@hdmi-hpd-enable-disable-mode.html
* igt@kms_content_protection@legacy:
- shard-dg2-set2: NOTRUN -> [FAIL][41] ([Intel XE#1178]) +3 other tests fail
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-433/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#308]) +3 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1424])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-3/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2321]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-64x64:
- shard-dg2-set2: [PASS][45] -> [SKIP][46] ([Intel XE#2423] / [i915#2575]) +100 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-64x64.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-64x64.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#2321])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-8/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#309]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#323]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-433/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#455]) +21 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-463/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: NOTRUN -> [FAIL][51] ([Intel XE#301]) +14 other tests fail
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-panning-interruptible:
- shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#1421])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-1/igt@kms_flip@2x-flip-vs-panning-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible@bd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][53] -> [INCOMPLETE][54] ([Intel XE#1195]) +1 other test incomplete
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-435/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@bd-hdmi-a6-dp4.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-464/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@bd-hdmi-a6-dp4.html
* igt@kms_flip@blocking-wf_vblank@c-edp1:
- shard-lnl: [PASS][55] -> [FAIL][56] ([Intel XE#886])
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-7/igt@kms_flip@blocking-wf_vblank@c-edp1.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-3/igt@kms_flip@blocking-wf_vblank@c-edp1.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1:
- shard-lnl: NOTRUN -> [FAIL][57] ([Intel XE#886]) +1 other test fail
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-2/igt@kms_flip@flip-vs-blocking-wf-vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
- shard-bmg: [PASS][58] -> [FAIL][59] ([Intel XE#301]) +4 other tests fail
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
* igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6:
- shard-dg2-set2: [PASS][60] -> [FAIL][61] ([Intel XE#301]) +8 other tests fail
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a6.html
* igt@kms_flip@nonblocking-read:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#2423] / [i915#2575]) +54 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_flip@nonblocking-read.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-dg2-set2: [PASS][63] -> [SKIP][64] ([Intel XE#2890]) +34 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling:
- shard-dg2-set2: [PASS][65] -> [SKIP][66] ([Intel XE#2351] / [Intel XE#2890]) +11 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2311]) +5 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#651]) +35 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#651])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [FAIL][70] ([Intel XE#2333]) +1 other test fail
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#656]) +8 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2313]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#2351] / [Intel XE#2890]) +16 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#653]) +34 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#605])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-432/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#346])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-2/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#356])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-435/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [FAIL][78] ([Intel XE#361]) +1 other test fail
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#2763]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d:
- shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-463/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#870]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-464/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][82] -> [FAIL][83] ([Intel XE#718])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-2/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][84] -> [FAIL][85] ([Intel XE#1430])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-6/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-dg2-set2: [PASS][86] -> [SKIP][87] ([Intel XE#2446]) +5 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-464/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@legacy-planes@plane-68:
- shard-lnl: [PASS][88] -> [DMESG-WARN][89] ([Intel XE#3184]) +2 other tests dmesg-warn
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-2/igt@kms_pm_rpm@legacy-planes@plane-68.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-7/igt@kms_pm_rpm@legacy-planes@plane-68.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#2446])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#1489])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#1489]) +4 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-463/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#2893])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-7/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr@fbc-pr-cursor-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2890]) +49 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_psr@fbc-pr-cursor-plane-move.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#2850] / [Intel XE#929]) +20 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-463/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1406]) +2 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-7/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_psr@psr2-suspend:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-7/igt@kms_psr@psr2-suspend.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#1127])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-464/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_setmode@basic:
- shard-bmg: [PASS][99] -> [FAIL][100] ([Intel XE#2883]) +6 other tests fail
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-3/igt@kms_setmode@basic.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-7/igt@kms_setmode@basic.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-lnl: [PASS][101] -> [FAIL][102] ([Intel XE#899]) +2 other tests fail
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak.html
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][103] -> [FAIL][104] ([Intel XE#2159]) +1 other test fail
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-2/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-8/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#756])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-463/igt@kms_writeback@writeback-fb-id.html
* igt@xe_copy_basic@mem-copy-linear-0x369:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#1123])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0x369.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: NOTRUN -> [SKIP][107] ([Intel XE#1126]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-435/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_eudebug@basic-client:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#2905]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-5/igt@xe_eudebug@basic-client.html
* igt@xe_eudebug@multiple-sessions:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2905]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-3/igt@xe_eudebug@multiple-sessions.html
* igt@xe_eudebug_online@preempt-breakpoint:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#2905]) +11 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-432/igt@xe_eudebug_online@preempt-breakpoint.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [PASS][111] -> [TIMEOUT][112] ([Intel XE#1473] / [Intel XE#402])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-464/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-bmg: [PASS][113] -> [TIMEOUT][114] ([Intel XE#1473] / [Intel XE#2472])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-4/igt@xe_evict@evict-mixed-threads-large.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-2/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_evict@evict-mixed-threads-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#688]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-5/igt@xe_evict@evict-mixed-threads-small-multi-vm.html
* igt@xe_exec_balancer@once-parallel-rebind:
- shard-dg2-set2: [PASS][116] -> [SKIP][117] ([Intel XE#1130]) +175 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@xe_exec_balancer@once-parallel-rebind.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@xe_exec_balancer@once-parallel-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1392])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-once-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2322])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-2/igt@xe_exec_basic@multigpu-once-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#288]) +30 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_live_ktest@xe_bo:
- shard-lnl: [PASS][121] -> [SKIP][122] ([Intel XE#1192])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-5/igt@xe_live_ktest@xe_bo.html
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-2/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][123] ([Intel XE#2229]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_bo_evict_kunit.html
* igt@xe_module_load@many-reload:
- shard-bmg: [PASS][124] -> [FAIL][125] ([Intel XE#2136])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-2/igt@xe_module_load@many-reload.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-7/igt@xe_module_load@many-reload.html
- shard-dg2-set2: [PASS][126] -> [FAIL][127] ([Intel XE#2136])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-434/igt@xe_module_load@many-reload.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-463/igt@xe_module_load@many-reload.html
* igt@xe_module_load@reload-no-display:
- shard-dg2-set2: NOTRUN -> [FAIL][128] ([Intel XE#2136])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@xe_module_load@reload-no-display.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#2541]) +8 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-435/igt@xe_oa@polling-small-buf.html
* igt@xe_pat@pat-index-xe2:
- shard-dg2-set2: NOTRUN -> [SKIP][130] ([Intel XE#2839] / [Intel XE#977])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-433/igt@xe_pat@pat-index-xe2.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#979])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-432/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][132] ([Intel XE#2284] / [Intel XE#366])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-435/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@s2idle-exec-after:
- shard-dg2-set2: NOTRUN -> [SKIP][133] ([Intel XE#1130]) +105 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@xe_pm@s2idle-exec-after.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-lnl: [PASS][134] -> [ABORT][135] ([Intel XE#1358] / [Intel XE#1607])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-8/igt@xe_pm@s4-d3hot-basic-exec.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#944])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-4/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_query@multigpu-query-mem-usage:
- shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#944])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-3/igt@xe_query@multigpu-query-mem-usage.html
* igt@xe_query@multigpu-query-uc-fw-version-guc:
- shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#944]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-463/igt@xe_query@multigpu-query-uc-fw-version-guc.html
* igt@xe_wedged@basic-wedged:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][139] ([Intel XE#2919])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-433/igt@xe_wedged@basic-wedged.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-edp-1-linear:
- shard-lnl: [FAIL][140] ([Intel XE#911]) -> [PASS][141] +1 other test pass
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-edp-1-linear.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-edp-1-linear.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][142] ([Intel XE#1195] / [Intel XE#1727]) -> [PASS][143]
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][144] ([Intel XE#1195]) -> [PASS][145]
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][146] ([Intel XE#3113]) -> [PASS][147]
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: [INCOMPLETE][148] ([Intel XE#1195] / [Intel XE#3124]) -> [PASS][149]
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][150] -> [PASS][151]
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_color@ctm-0-50@pipe-c-edp-1:
- shard-lnl: [DMESG-WARN][152] ([Intel XE#2929]) -> [PASS][153] +1 other test pass
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-8/igt@kms_color@ctm-0-50@pipe-c-edp-1.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-3/igt@kms_color@ctm-0-50@pipe-c-edp-1.html
* igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-edp-1:
- shard-lnl: [FAIL][154] ([Intel XE#2577]) -> [PASS][155] +1 other test pass
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-4/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-edp-1.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-5/igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-edp-1.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][156] ([Intel XE#877]) -> [PASS][157]
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: [FAIL][158] ([Intel XE#1475]) -> [PASS][159]
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-435/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
- shard-lnl: [FAIL][160] ([Intel XE#1475]) -> [PASS][161]
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: [FAIL][162] ([Intel XE#301]) -> [PASS][163] +5 other tests pass
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-suspend@d-dp4:
- shard-dg2-set2: [ABORT][164] ([Intel XE#2625]) -> [PASS][165] +2 other tests pass
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-432/igt@kms_flip@flip-vs-suspend@d-dp4.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-464/igt@kms_flip@flip-vs-suspend@d-dp4.html
* igt@kms_flip@plain-flip-ts-check@c-edp1:
- shard-lnl: [FAIL][166] ([Intel XE#886]) -> [PASS][167] +7 other tests pass
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-1/igt@kms_flip@plain-flip-ts-check@c-edp1.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-3/igt@kms_flip@plain-flip-ts-check@c-edp1.html
* igt@kms_lease@lease-uevent:
- shard-lnl: [FAIL][168] -> [PASS][169] +1 other test pass
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-5/igt@kms_lease@lease-uevent.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-6/igt@kms_lease@lease-uevent.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [FAIL][170] ([Intel XE#718]) -> [PASS][171]
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-8/igt@kms_pm_dc@dc5-psr.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm:
- shard-lnl: [FAIL][172] ([Intel XE#1630]) -> [PASS][173] +9 other tests pass
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-4/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-6/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm.html
* igt@xe_exec_fault_mode@many-userptr-invalidate-race:
- shard-bmg: [FAIL][174] ([Intel XE#1630]) -> [PASS][175] +7 other tests pass
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-4/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-2/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html
* igt@xe_module_load@reload:
- shard-dg2-set2: [FAIL][176] ([Intel XE#2136]) -> [PASS][177]
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@xe_module_load@reload.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-466/igt@xe_module_load@reload.html
- shard-bmg: [FAIL][178] ([Intel XE#2136]) -> [PASS][179]
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-6/igt@xe_module_load@reload.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-1/igt@xe_module_load@reload.html
* igt@xe_pm@s2idle-basic:
- shard-dg2-set2: [ABORT][180] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][181]
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-432/igt@xe_pm@s2idle-basic.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-464/igt@xe_pm@s2idle-basic.html
* igt@xe_pm@s2idle-mocs:
- shard-lnl: [DMESG-WARN][182] ([Intel XE#2932]) -> [PASS][183]
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-3/igt@xe_pm@s2idle-mocs.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-3/igt@xe_pm@s2idle-mocs.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-dg2-set2: [ABORT][184] ([Intel XE#1694]) -> [PASS][185]
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-432/igt@xe_pm@s2idle-vm-bind-prefetch.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-435/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s4-basic-exec:
- shard-lnl: [ABORT][186] ([Intel XE#1358] / [Intel XE#1607] / [Intel XE#1794]) -> [PASS][187]
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-2/igt@xe_pm@s4-basic-exec.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-8/igt@xe_pm@s4-basic-exec.html
* igt@xe_pm@s4-mocs:
- shard-lnl: [ABORT][188] ([Intel XE#1794]) -> [PASS][189]
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-2/igt@xe_pm@s4-mocs.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-3/igt@xe_pm@s4-mocs.html
#### Warnings ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-dg2-set2: [SKIP][190] ([Intel XE#623]) -> [SKIP][191] ([Intel XE#2423] / [i915#2575])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@linear-64bpp-rotate-180:
- shard-dg2-set2: [DMESG-WARN][192] ([Intel XE#877]) -> [SKIP][193] ([Intel XE#2351] / [Intel XE#2890])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_big_fb@linear-64bpp-rotate-180.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_big_fb@linear-64bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][194] ([Intel XE#316]) -> [SKIP][195] ([Intel XE#2890]) +3 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][196] ([Intel XE#316]) -> [SKIP][197] ([Intel XE#2351] / [Intel XE#2890]) +2 other tests skip
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: [SKIP][198] ([Intel XE#1124]) -> [SKIP][199] ([Intel XE#2890]) +5 other tests skip
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][200] ([Intel XE#607]) -> [SKIP][201] ([Intel XE#2890])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: [SKIP][202] ([Intel XE#1124]) -> [SKIP][203] ([Intel XE#2351] / [Intel XE#2890]) +6 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: [SKIP][204] ([Intel XE#2191]) -> [SKIP][205] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-1-displays-1920x1080p:
- shard-dg2-set2: [SKIP][206] ([Intel XE#367]) -> [SKIP][207] ([Intel XE#2423] / [i915#2575]) +3 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs:
- shard-dg2-set2: [SKIP][208] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][209] ([Intel XE#2351] / [Intel XE#2890]) +4 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][210] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][211] ([Intel XE#2890]) +14 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][212] ([Intel XE#2907]) -> [SKIP][213] ([Intel XE#2890]) +2 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][214] ([Intel XE#1195]) -> [SKIP][215] ([Intel XE#2351] / [Intel XE#2890])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: [SKIP][216] ([Intel XE#306]) -> [SKIP][217] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@kms_chamelium_color@gamma.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: [SKIP][218] ([Intel XE#373]) -> [SKIP][219] ([Intel XE#2423] / [i915#2575]) +11 other tests skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-464/igt@kms_chamelium_hpd@vga-hpd.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2-set2: [FAIL][220] ([Intel XE#1178]) -> [SKIP][221] ([Intel XE#2423] / [i915#2575]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_content_protection@lic-type-0.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [FAIL][222] ([Intel XE#1188]) -> [SKIP][223] ([Intel XE#2423] / [i915#2575])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_content_protection@uevent.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-set2: [SKIP][224] ([Intel XE#308]) -> [SKIP][225] ([Intel XE#2423] / [i915#2575])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@kms_cursor_crc@cursor-sliding-512x170.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: [SKIP][226] ([Intel XE#701]) -> [SKIP][227] ([Intel XE#2423] / [i915#2575])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_feature_discovery@chamelium.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg2-set2: [SKIP][228] ([Intel XE#1137]) -> [SKIP][229] ([Intel XE#2423] / [i915#2575])
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-432/igt@kms_feature_discovery@dp-mst.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@blocking-wf_vblank:
- shard-lnl: [FAIL][230] ([Intel XE#886]) -> [FAIL][231] ([Intel XE#3149] / [Intel XE#886])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-lnl-7/igt@kms_flip@blocking-wf_vblank.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-lnl-3/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2-set2: [SKIP][232] ([Intel XE#455]) -> [SKIP][233] ([Intel XE#2890]) +3 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling:
- shard-dg2-set2: [SKIP][234] ([Intel XE#455]) -> [SKIP][235] ([Intel XE#2351] / [Intel XE#2890])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff:
- shard-dg2-set2: [SKIP][236] ([Intel XE#651]) -> [SKIP][237] ([Intel XE#2890]) +24 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][238] ([Intel XE#651]) -> [SKIP][239] ([Intel XE#2351] / [Intel XE#2890]) +9 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2-set2: [SKIP][240] ([Intel XE#658]) -> [SKIP][241] ([Intel XE#2351] / [Intel XE#2890])
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-dg2-set2: [SKIP][242] ([Intel XE#1158]) -> [SKIP][243] ([Intel XE#2890])
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-464/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][244] ([Intel XE#653]) -> [SKIP][245] ([Intel XE#2890]) +28 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][246] ([Intel XE#653]) -> [SKIP][247] ([Intel XE#2351] / [Intel XE#2890]) +8 other tests skip
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2-set2: [FAIL][248] ([Intel XE#3312]) -> [SKIP][249] ([Intel XE#2423] / [i915#2575])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_hdr@brightness-with-hdr.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2-set2: [SKIP][250] ([Intel XE#346]) -> [SKIP][251] ([Intel XE#2890])
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@kms_joiner@invalid-modeset-big-joiner.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-dg2-set2: [SKIP][252] ([Intel XE#2925]) -> [SKIP][253] ([Intel XE#2890])
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2-set2: [SKIP][254] ([Intel XE#2763] / [Intel XE#455]) -> [SKIP][255] ([Intel XE#2423] / [i915#2575]) +3 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: [SKIP][256] ([Intel XE#1129]) -> [SKIP][257] ([Intel XE#2890])
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_pm_dc@dc5-psr.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-dg2-set2: [SKIP][258] ([Intel XE#1489]) -> [SKIP][259] ([Intel XE#2890]) +10 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-434/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-dg2-set2: [SKIP][260] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][261] ([Intel XE#2351] / [Intel XE#2890]) +5 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][262] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][263] ([Intel XE#2890]) +11 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-435/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@psr-primary-page-flip:
- shard-dg2-set2: [SKIP][264] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][265] ([Intel XE#2351])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_psr@psr-primary-page-flip.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-dg2-set2: [SKIP][266] ([Intel XE#2939]) -> [SKIP][267] ([Intel XE#2890])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@bad-tiling:
- shard-dg2-set2: [SKIP][268] -> [SKIP][269] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@kms_rotation_crc@bad-tiling.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-dg2-set2: [SKIP][270] ([Intel XE#455]) -> [SKIP][271] ([Intel XE#2423] / [i915#2575]) +6 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@kms_scaling_modes@scaling-mode-full.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][272] ([Intel XE#2509]) -> [SKIP][273] ([Intel XE#2426])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: [SKIP][274] ([Intel XE#330]) -> [SKIP][275] ([Intel XE#2423] / [i915#2575])
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-432/igt@kms_tv_load_detect@load-detect.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2-set2: [SKIP][276] ([Intel XE#756]) -> [SKIP][277] ([Intel XE#2423] / [i915#2575])
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@kms_writeback@writeback-check-output-xrgb2101010.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2-set2: [SKIP][278] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][279] ([Intel XE#2423] / [i915#2575])
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-464/igt@sriov_basic@enable-vfs-autoprobe-off.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@xe_create@multigpu-create-massive-size:
- shard-dg2-set2: [SKIP][280] ([Intel XE#944]) -> [SKIP][281] ([Intel XE#1130])
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@xe_create@multigpu-create-massive-size.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-dg2-set2: [FAIL][282] ([Intel XE#1600]) -> [SKIP][283] ([Intel XE#1130])
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@xe_evict@evict-large-multi-vm-cm.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_exec_fault_mode@once-invalid-userptr-fault:
- shard-dg2-set2: [SKIP][284] ([Intel XE#288]) -> [SKIP][285] ([Intel XE#1130]) +32 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-464/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: [SKIP][286] ([Intel XE#2360]) -> [SKIP][287] ([Intel XE#1130])
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
- shard-dg2-set2: [SKIP][288] ([Intel XE#2905]) -> [SKIP][289] ([Intel XE#1130]) +10 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-463/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
* igt@xe_fault_injection@inject-fault-probe:
- shard-dg2-set2: [DMESG-WARN][290] ([Intel XE#3343]) -> [SKIP][291] ([Intel XE#1130])
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-466/igt@xe_fault_injection@inject-fault-probe.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@xe_fault_injection@inject-fault-probe.html
* igt@xe_oa@oa-unit-exclusive-stream-sample-oa:
- shard-dg2-set2: [SKIP][292] ([Intel XE#2541]) -> [SKIP][293] ([Intel XE#1130]) +7 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-434/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html
* igt@xe_peer2peer@write:
- shard-dg2-set2: [FAIL][294] ([Intel XE#1173]) -> [SKIP][295] ([Intel XE#1061])
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-433/igt@xe_peer2peer@write.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@xe_peer2peer@write.html
* igt@xe_pm@d3cold-mmap-vram:
- shard-dg2-set2: [SKIP][296] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][297] ([Intel XE#1130]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-434/igt@xe_pm@d3cold-mmap-vram.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@xe_pm@d3cold-mmap-vram.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: [SKIP][298] ([Intel XE#3342]) -> [SKIP][299] ([Intel XE#1130]) +1 other test skip
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8100/shard-dg2-434/igt@xe_sriov_flr@flr-vf1-clear.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/shard-dg2-434/igt@xe_sriov_flr@flr-vf1-clear.html
[Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061
[Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091
[Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137
[Intel XE#1158]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1158
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1475]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1475
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1630]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1630
[Intel XE#1694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1694
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794
[Intel XE#1885]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1885
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2159
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2577]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2577
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2839]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2839
[Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2929
[Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3312
[Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356
[Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/402
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#977]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/977
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8100 -> IGTPW_12066
* Linux: xe-2179-438ef86a725b59a171dba81fc258bb23a0ff536c -> xe-2186-4e8bea155458842471845b85ddc1cddddd151db9
IGTPW_12066: e3c613c6a1d34dfb2c66fbb9296d1e6abb10bce1 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8100: 84e42580f918da926481fd2fb37be01451d6ee9a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2179-438ef86a725b59a171dba81fc258bb23a0ff536c: 438ef86a725b59a171dba81fc258bb23a0ff536c
xe-2186-4e8bea155458842471845b85ddc1cddddd151db9: 4e8bea155458842471845b85ddc1cddddd151db9
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12066/index.html
[-- Attachment #2: Type: text/html, Size: 92047 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [i-g-t, v2, 3/4] tests/intel/xe_exec_threads: wait for all submissions to complete
2024-11-08 1:10 ` [i-g-t, v2, 3/4] tests/intel/xe_exec_threads: wait for all submissions to complete fei.yang
@ 2024-11-12 13:14 ` Nirmoy Das
0 siblings, 0 replies; 12+ messages in thread
From: Nirmoy Das @ 2024-11-12 13:14 UTC (permalink / raw)
To: fei.yang, igt-dev
On 11/8/2024 2:10 AM, fei.yang@intel.com wrote:
> From: Fei Yang <fei.yang@intel.com>
>
> In test_compute_mode, there is an one second sleep waiting for all the
> submissions to complete, but a hardcode wait is not reliable for test
> that could have thousands of xe_execs submissions. Instead we should
> wait for the ufence to make sure the GPU is inactive before unbinding
> the BO.
>
> Signed-off-by: Fei Yang <fei.yang@intel.com>
Tested it locally
Reviewed-by: Nirmoy Das <nirmoy.das@intel.com>
> ---
> tests/intel/xe_exec_threads.c | 28 ++++++++++++++++++++++------
> 1 file changed, 22 insertions(+), 6 deletions(-)
>
> diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c
> index 962957cd7..433f2620a 100644
> --- a/tests/intel/xe_exec_threads.c
> +++ b/tests/intel/xe_exec_threads.c
> @@ -404,16 +404,32 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
> }
> }
>
> - j = flags & INVALIDATE ?
> - (flags & RACE ? n_execs / 2 + 1 : n_execs - 1) : 0;
> + j = 0; /* wait for all submissions to complete */
> + if (flags & INVALIDATE)
> + /*
> + * For !RACE cases xe_wait_ufence has been called in above for-loop
> + * except the last batch of submissions. For RACE cases we will need
> + * to wait for the second half of the submissions to complete. There
> + * is a potential race here because the first half submissions might
> + * have updated the fence in the old physical location while the test
> + * is remapping the buffer from a different physical location, but the
> + * wait_ufence only checks the fence from the new location which would
> + * never be updated. We have to assume the first half of the submissions
> + * complete before the second half. Will have a follow up patch to fix
> + * this completely.
> + */
> + j = (flags & RACE) ? (n_execs / 2 + 1) : (((n_execs - 1) & ~0x1f) + 1);
> + else if (flags & REBIND)
> + /*
> + * For REBIND cases xe_wait_ufence has been called in above for-loop
> + * except the last batch of submissions.
> + */
> + j = ((n_execs - 1) & ~0x1f) + 1;
> +
> for (i = j; i < n_execs; i++)
> xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE,
> exec_queues[i % n_exec_queues], fence_timeout);
>
> - /* Wait for all execs to complete */
> - if (flags & INVALIDATE)
> - sleep(1);
> -
> sync[0].addr = to_user_pointer(&data[0].vm_sync);
> xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1);
> xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, 0, fence_timeout);
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [i-g-t, v2, 4/4] tests/intel/xe_exec_threads: separate exec_sync and batch buffer
2024-11-08 1:10 ` [i-g-t, v2, 4/4] tests/intel/xe_exec_threads: separate exec_sync and batch buffer fei.yang
@ 2024-11-12 13:23 ` Nirmoy Das
0 siblings, 0 replies; 12+ messages in thread
From: Nirmoy Das @ 2024-11-12 13:23 UTC (permalink / raw)
To: fei.yang, igt-dev
On 11/8/2024 2:10 AM, fei.yang@intel.com wrote:
> From: Fei Yang <fei.yang@intel.com>
>
> In INVALIDATE cases the test purposely remap the data buffer to a
> different physical location in the midle of execution to exercise the
> page fault handling flow. After the remapping we lose access to the old
> physical location, and that would cause a problem for comparing ufence
> value at the end of the execution. To fix this the exec_sync data needs
> to be separated from the batch buffer for instructions, and during the
> execution we don't remap the exec_sync data.
>
> v2: Separate only exec_sync. Keep data field together with the batch
> buffer (Matt Roper)
>
> Signed-off-by: Fei Yang <fei.yang@intel.com>
Tested it locally
Reviewed-by: Nirmoy Das <nirmoy.das@intel.com>
> ---
> tests/intel/xe_exec_threads.c | 55 +++++++++++++++++++++++------------
> 1 file changed, 36 insertions(+), 19 deletions(-)
>
> diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c
> index 433f2620a..661117bed 100644
> --- a/tests/intel/xe_exec_threads.c
> +++ b/tests/intel/xe_exec_threads.c
> @@ -241,6 +241,7 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
> struct drm_xe_engine_class_instance *eci,
> int n_exec_queues, int n_execs, unsigned int flags)
> {
> + uint64_t sync_addr = addr + 0x10000000;
> #define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
> struct drm_xe_sync sync[1] = {
> { .type = DRM_XE_SYNC_TYPE_USER_FENCE, .flags = DRM_XE_SYNC_FLAG_SIGNAL,
> @@ -253,15 +254,15 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
> };
> int64_t fence_timeout;
> uint32_t exec_queues[MAX_N_EXEC_QUEUES];
> - size_t bo_size;
> + size_t bo_size, sync_size;
> uint32_t bo = 0;
> struct {
> uint32_t batch[16];
> uint64_t pad;
> uint64_t vm_sync;
> - uint64_t exec_sync;
> uint32_t data;
> } *data;
> + uint64_t *exec_sync;
> int i, j, b;
> int map_fd = -1;
> bool owns_vm = false, owns_fd = false;
> @@ -280,6 +281,8 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
>
> bo_size = sizeof(*data) * n_execs;
> bo_size = xe_bb_size(fd, bo_size);
> + sync_size = sizeof(*exec_sync) * n_execs;
> + sync_size = xe_bb_size(fd, sync_size);
>
> if (flags & USERPTR) {
> if (flags & INVALIDATE) {
> @@ -301,6 +304,12 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
> }
> memset(data, 0, bo_size);
>
> + exec_sync = mmap(from_user_pointer(userptr + 0x10000000),
> + sync_size, PROT_READ | PROT_WRITE,
> + MAP_SHARED | MAP_FIXED | MAP_ANONYMOUS, -1, 0);
> + igt_assert(exec_sync != MAP_FAILED);
> + memset(exec_sync, 0, sync_size);
> +
> for (i = 0; i < n_exec_queues; i++)
> exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0);
>
> @@ -312,9 +321,12 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
> else
> xe_vm_bind_userptr_async(fd, vm, 0, to_user_pointer(data), addr,
> bo_size, sync, 1);
> -
> fence_timeout = (igt_run_in_simulation() ? 30 : 3) * NSEC_PER_SEC;
> + xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, 0, fence_timeout);
> + data[0].vm_sync = 0;
>
> + xe_vm_bind_userptr_async(fd, vm, 0, to_user_pointer(exec_sync),
> + sync_addr, sync_size, sync, 1);
> xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, 0, fence_timeout);
> data[0].vm_sync = 0;
>
> @@ -333,7 +345,7 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
> data[i].batch[b++] = MI_BATCH_BUFFER_END;
> igt_assert(b <= ARRAY_SIZE(data[i].batch));
>
> - sync[0].addr = addr + (char *)&data[i].exec_sync - (char *)data;
> + sync[0].addr = sync_addr + (char *)&exec_sync[i] - (char *)exec_sync;
>
> exec.exec_queue_id = exec_queues[e];
> exec.address = batch_addr;
> @@ -341,7 +353,7 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
>
> if (flags & REBIND && i && !(i & 0x1f)) {
> for (j = i == 0x20 ? 0 : i - 0x1f; j <= i; ++j)
> - xe_wait_ufence(fd, &data[j].exec_sync,
> + xe_wait_ufence(fd, &exec_sync[j],
> USER_FENCE_VALUE,
> exec_queues[e], fence_timeout);
> xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size,
> @@ -371,7 +383,7 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
> * an invalidate.
> */
> for (j = i == 0x20 ? 0 : i - 0x1f; j <= i; ++j)
> - xe_wait_ufence(fd, &data[j].exec_sync,
> + xe_wait_ufence(fd, &exec_sync[j],
> USER_FENCE_VALUE,
> exec_queues[e],
> fence_timeout);
> @@ -409,16 +421,9 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
> /*
> * For !RACE cases xe_wait_ufence has been called in above for-loop
> * except the last batch of submissions. For RACE cases we will need
> - * to wait for the second half of the submissions to complete. There
> - * is a potential race here because the first half submissions might
> - * have updated the fence in the old physical location while the test
> - * is remapping the buffer from a different physical location, but the
> - * wait_ufence only checks the fence from the new location which would
> - * never be updated. We have to assume the first half of the submissions
> - * complete before the second half. Will have a follow up patch to fix
> - * this completely.
> + * to wait for all submissions to complete.
> */
> - j = (flags & RACE) ? (n_execs / 2 + 1) : (((n_execs - 1) & ~0x1f) + 1);
> + j = (flags & RACE) ? 0 : (((n_execs - 1) & ~0x1f) + 1);
> else if (flags & REBIND)
> /*
> * For REBIND cases xe_wait_ufence has been called in above for-loop
> @@ -427,19 +432,31 @@ test_compute_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
> j = ((n_execs - 1) & ~0x1f) + 1;
>
> for (i = j; i < n_execs; i++)
> - xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE,
> + xe_wait_ufence(fd, &exec_sync[i], USER_FENCE_VALUE,
> exec_queues[i % n_exec_queues], fence_timeout);
>
> + /*
> + * For INVALIDATE && RACE cases, due the the remmap in the
> + * middle of the execution, we lose access to some of the
> + * 0xc0ffee written to the old location, so check only for
> + * the second half of the submissions.
> + */
> + if (flags & INVALIDATE && flags & RACE)
> + j = n_execs / 2 + 1;
> + for (i = j; i < n_execs; i++)
> + igt_assert_eq(data[i].data, 0xc0ffee);
> +
> sync[0].addr = to_user_pointer(&data[0].vm_sync);
> + xe_vm_unbind_async(fd, vm, 0, 0, sync_addr, sync_size, sync, 1);
> + xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, 0, fence_timeout);
> + data[0].vm_sync = 0;
> xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1);
> xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, 0, fence_timeout);
>
> - for (i = j; i < n_execs; i++)
> - igt_assert_eq(data[i].data, 0xc0ffee);
> -
> for (i = 0; i < n_exec_queues; i++)
> xe_exec_queue_destroy(fd, exec_queues[i]);
>
> + munmap(exec_sync, sync_size);
> if (bo) {
> munmap(data, bo_size);
> gem_close(fd, bo);
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [i-g-t, v2, 1/4] tests/intel/xe_exec_fault_mode: separate exec_sync and batch buffer
2024-11-08 1:10 ` [i-g-t, v2, 1/4] tests/intel/xe_exec_fault_mode: separate exec_sync " fei.yang
@ 2024-11-12 13:23 ` Nirmoy Das
0 siblings, 0 replies; 12+ messages in thread
From: Nirmoy Das @ 2024-11-12 13:23 UTC (permalink / raw)
To: fei.yang, igt-dev
On 11/8/2024 2:10 AM, fei.yang@intel.com wrote:
> From: Fei Yang <fei.yang@intel.com>
>
> In INVALIDATE cases the test purposely remap the data buffer to a
> different physical location in the midle of execution to exercise the
> page fault handling flow. After the remapping we lose access to the old
> physical location, and that would cause a problem for comparing ufence
> value at the end of the execution. To fix this the exec_sync data needs
> to be separated from the batch buffer for instructions, and during the
> execution we don't remap the exec_sync data.
>
> v2: Separate only exec_sync. Keep data field together with the batch
> buffer (Matt Roper)
>
> Signed-off-by: Fei Yang <fei.yang@intel.com>
Tested it locally
Reviewed-by: Nirmoy Das <nirmoy.das@intel.com>
> ---
> tests/intel/xe_exec_fault_mode.c | 66 ++++++++++++++++++++++++--------
> 1 file changed, 50 insertions(+), 16 deletions(-)
>
> diff --git a/tests/intel/xe_exec_fault_mode.c b/tests/intel/xe_exec_fault_mode.c
> index d416c773b..ae40e099b 100644
> --- a/tests/intel/xe_exec_fault_mode.c
> +++ b/tests/intel/xe_exec_fault_mode.c
> @@ -116,6 +116,7 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
> {
> uint32_t vm;
> uint64_t addr = 0x1a0000;
> + uint64_t sync_addr = 0x101a0000;
> #define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
> struct drm_xe_sync sync[1] = {
> { .type = DRM_XE_SYNC_TYPE_USER_FENCE, .flags = DRM_XE_SYNC_FLAG_SIGNAL,
> @@ -128,15 +129,15 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
> };
> uint32_t exec_queues[MAX_N_EXEC_QUEUES];
> uint32_t bind_exec_queues[MAX_N_EXEC_QUEUES];
> - size_t bo_size;
> + size_t bo_size, sync_size;
> uint32_t bo = 0;
> struct {
> uint32_t batch[16];
> uint64_t pad;
> uint64_t vm_sync;
> - uint64_t exec_sync;
> uint32_t data;
> } *data;
> + uint64_t *exec_sync;
> int i, j, b;
> int map_fd = -1;
>
> @@ -151,6 +152,8 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
> DRM_XE_VM_CREATE_FLAG_FAULT_MODE, 0);
> bo_size = sizeof(*data) * n_execs;
> bo_size = xe_bb_size(fd, bo_size);
> + sync_size = sizeof(*exec_sync) * n_execs;
> + sync_size = xe_bb_size(fd, sync_size);
>
> if (flags & USERPTR) {
> #define MAP_ADDRESS 0x00007fadeadbe000
> @@ -178,6 +181,12 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
> }
> memset(data, 0, bo_size);
>
> +#define EXEC_SYNC_ADDRESS 0x00007fbdeadbe000
> + exec_sync = mmap((void *)EXEC_SYNC_ADDRESS, sync_size, PROT_READ | PROT_WRITE,
> + MAP_SHARED | MAP_FIXED | MAP_ANONYMOUS, -1, 0);
> + igt_assert(exec_sync != MAP_FAILED);
> + memset(exec_sync, 0, sync_size);
> +
> for (i = 0; i < n_exec_queues; i++) {
> exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0);
> if (flags & BIND_EXEC_QUEUE)
> @@ -212,6 +221,13 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
> bind_exec_queues[0], NSEC_PER_SEC);
> data[0].vm_sync = 0;
>
> + xe_vm_bind_userptr_async(fd, vm, bind_exec_queues[0],
> + to_user_pointer(exec_sync), sync_addr,
> + sync_size, sync, 1);
> + xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE,
> + bind_exec_queues[0], NSEC_PER_SEC);
> + data[0].vm_sync = 0;
> +
> if (flags & PREFETCH) {
> /* Should move to system memory */
> xe_vm_prefetch_async(fd, vm, bind_exec_queues[0], 0, addr,
> @@ -239,14 +255,14 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
> data[i].batch[b++] = MI_BATCH_BUFFER_END;
> igt_assert(b <= ARRAY_SIZE(data[i].batch));
>
> - sync[0].addr = addr + (char *)&data[i].exec_sync - (char *)data;
> + sync[0].addr = sync_addr + (char *)&exec_sync[i] - (char *)exec_sync;
>
> exec.exec_queue_id = exec_queues[e];
> exec.address = batch_addr;
> xe_exec(fd, &exec);
>
> if (flags & REBIND && i + 1 != n_execs) {
> - xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE,
> + xe_wait_ufence(fd, &exec_sync[i], USER_FENCE_VALUE,
> exec_queues[e], NSEC_PER_SEC);
> xe_vm_unbind_async(fd, vm, bind_exec_queues[e], 0,
> addr, bo_size, NULL, 0);
> @@ -275,7 +291,7 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
> * physical memory on next mmap call triggering
> * an invalidate.
> */
> - xe_wait_ufence(fd, &data[i].exec_sync,
> + xe_wait_ufence(fd, &exec_sync[i],
> USER_FENCE_VALUE, exec_queues[e],
> NSEC_PER_SEC);
> igt_assert_eq(data[i].data, 0xc0ffee);
> @@ -311,48 +327,66 @@ test_exec(int fd, struct drm_xe_engine_class_instance *eci,
> * submission here. For RACE cases we need to wait for all submissions
> * to complete because the GuC scheduling can be out of order, the
> * completion of the last submission doesn't mean all submission are
> - * completed.
> + * completed. For REBIND cases we only need to wait for the last
> + * submission.
> */
> - j = (flags & INVALIDATE && !(flags & RACE)) ? n_execs - 1 : 0;
> + j = ((flags & INVALIDATE && !(flags & RACE)) ||
> + (flags & REBIND)) ? n_execs - 1 : 0;
>
> for (i = j; i < n_execs; i++) {
> int64_t timeout = NSEC_PER_SEC;
>
> if (flags & INVALID_VA && !(flags & ENABLE_SCRATCH))
> - igt_assert_eq(__xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE,
> + igt_assert_eq(__xe_wait_ufence(fd, &exec_sync[i], USER_FENCE_VALUE,
> exec_queues[i % n_exec_queues], &timeout), -EIO);
> else
> - igt_assert_eq(__xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE,
> + igt_assert_eq(__xe_wait_ufence(fd, &exec_sync[i], USER_FENCE_VALUE,
> exec_queues[i % n_exec_queues], &timeout), 0);
> }
> }
> - sync[0].addr = to_user_pointer(&data[0].vm_sync);
> - xe_vm_unbind_async(fd, vm, bind_exec_queues[0], 0, addr, bo_size,
> - sync, 1);
> - xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE,
> - bind_exec_queues[0], NSEC_PER_SEC);
>
> if (flags & INVALID_FAULT) {
> for (i = 0; i < n_execs; i++) {
> int ret;
> int64_t timeout = NSEC_PER_SEC;
>
> - ret = __xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE,
> + ret = __xe_wait_ufence(fd, &exec_sync[i], USER_FENCE_VALUE,
> exec_queues[i % n_exec_queues], &timeout);
> igt_assert(ret == -EIO || ret == 0);
> }
> } else if (!(flags & INVALID_VA)) {
> + /*
> + * For INVALIDATE && RACE cases, due the the remmap in the
> + * middle of the execution, we lose access to some of the
> + * 0xc0ffee written to the old location, so check only for
> + * the second half of the submissions.
> + */
> + if (flags & INVALIDATE && flags & RACE)
> + j = n_execs / 2 + 1;
> for (i = j; i < n_execs; i++)
> igt_assert_eq(data[i].data, 0xc0ffee);
> -
> }
>
> + sync[0].addr = to_user_pointer(&data[0].vm_sync);
> + data[0].vm_sync = 0;
> + xe_vm_unbind_async(fd, vm, bind_exec_queues[0], 0, sync_addr, sync_size,
> + sync, 1);
> + xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE,
> + bind_exec_queues[0], NSEC_PER_SEC);
> + data[0].vm_sync = 0;
> + xe_vm_unbind_async(fd, vm, bind_exec_queues[0], 0, addr, bo_size,
> + sync, 1);
> + xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE,
> + bind_exec_queues[0], NSEC_PER_SEC);
> +
> for (i = 0; i < n_exec_queues; i++) {
> xe_exec_queue_destroy(fd, exec_queues[i]);
> if (bind_exec_queues[i])
> xe_exec_queue_destroy(fd, bind_exec_queues[i]);
> }
>
> + munmap(exec_sync, sync_size);
> +
> if (bo) {
> munmap(data, bo_size);
> gem_close(fd, bo);
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-11-12 13:23 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-08 1:10 [i-g-t, v2, 0/4] separate sync data and batch buffer fei.yang
2024-11-08 1:10 ` [i-g-t, v2, 1/4] tests/intel/xe_exec_fault_mode: separate exec_sync " fei.yang
2024-11-12 13:23 ` Nirmoy Das
2024-11-08 1:10 ` [i-g-t, v2, 2/4] tests/intel/xe_exec_threads: remove redundant wait fei.yang
2024-11-08 1:10 ` [i-g-t, v2, 3/4] tests/intel/xe_exec_threads: wait for all submissions to complete fei.yang
2024-11-12 13:14 ` Nirmoy Das
2024-11-08 1:10 ` [i-g-t, v2, 4/4] tests/intel/xe_exec_threads: separate exec_sync and batch buffer fei.yang
2024-11-12 13:23 ` Nirmoy Das
2024-11-08 1:48 ` ✓ Fi.CI.BAT: success for separate sync data and batch buffer (rev2) Patchwork
2024-11-08 1:50 ` ✗ CI.xeBAT: failure " Patchwork
2024-11-08 4:44 ` ✗ Fi.CI.IGT: " Patchwork
2024-11-09 8:40 ` ✗ CI.xeFULL: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox