* [PATCH i-g-t] lib/amdgpu: fix ring schedule issue
@ 2024-11-04 6:57 Jesse.zhang@amd.com
2024-11-04 19:45 ` ✓ Fi.CI.BAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Jesse.zhang@amd.com @ 2024-11-04 6:57 UTC (permalink / raw)
To: igt-dev
Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig, Kamil Konieczny,
Jesse.zhang@amd.com, Jesse Zhang
Because drm schedule no longer uses the parameter ring_id for scheduling.
Instead, it selects the ring with less load to schedule the job. See the kernel
function drm_sched_job_arm. Therefore, in order to verify each available ring on
a certain IP, it can use the schedule debugfs interface.
Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
---
lib/amdgpu/amd_deadlock_helpers.c | 148 +++++++++++++++++++++----
lib/amdgpu/amd_dispatch.c | 173 +++++++++++++++++++++++++-----
lib/amdgpu/amd_dispatch.h | 1 +
tests/amdgpu/amd_queue_reset.c | 2 +-
4 files changed, 276 insertions(+), 48 deletions(-)
diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c
index 39641ce23..e8b731489 100644
--- a/lib/amdgpu/amd_deadlock_helpers.c
+++ b/lib/amdgpu/amd_deadlock_helpers.c
@@ -170,7 +170,8 @@ amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_ty
}
static void
-bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type, unsigned int ring_id)
+bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error,
+ unsigned int ip_type, uint32_t priority)
{
const struct amdgpu_ip_block_version *ip_block = NULL;
@@ -182,7 +183,11 @@ bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, un
ring_context = calloc(1, sizeof(*ring_context));
igt_assert(ring_context);
- r = amdgpu_cs_ctx_create(device_handle, &ring_context->context_handle);
+
+ if( priority == AMDGPU_CTX_PRIORITY_HIGH)
+ r = amdgpu_cs_ctx_create2(device_handle, AMDGPU_CTX_PRIORITY_HIGH, &ring_context->context_handle);
+ else
+ r = amdgpu_cs_ctx_create(device_handle, &ring_context->context_handle);
igt_assert_eq(r, 0);
/* setup parameters */
@@ -190,7 +195,7 @@ bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, un
ring_context->pm4 = calloc(pm4_dw, sizeof(*ring_context->pm4));
ring_context->pm4_size = pm4_dw;
ring_context->res_cnt = 1;
- ring_context->ring_id = ring_id;
+ ring_context->ring_id = 0;
igt_assert(ring_context->pm4);
ip_block = get_ip_block(device_handle, ip_type);
r = amdgpu_bo_alloc_and_map(device_handle,
@@ -216,27 +221,11 @@ bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, un
free(ring_context);
}
-void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type)
-{
- int r;
- struct drm_amdgpu_info_hw_ip info;
- uint32_t ring_id;
-
- r = amdgpu_query_hw_ip_info(device_handle, ip_type, 0, &info);
- igt_assert_eq(r, 0);
- if (!info.available_rings)
- igt_info("SKIP ... as there's no ring for ip %d\n", ip_type);
-
- for (ring_id = 0; (1 << ring_id) & info.available_rings; ring_id++) {
- bad_access_helper(device_handle, cmd_error, ip_type, ring_id);
- }
-}
-
#define MAX_DMABUF_COUNT 0x20000
#define MAX_DWORD_COUNT 256
static void
-amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type, unsigned int ring_id)
+amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type)
{
int j, r;
uint32_t *ptr, offset;
@@ -256,7 +245,7 @@ amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type, u
}
ring_context->secure = false;
ring_context->res_cnt = 2;
- ring_context->ring_id = ring_id;
+ ring_context->ring_id = 0;
igt_assert(ring_context->pm4);
r = amdgpu_cs_ctx_create(device_handle, &ring_context->context_handle);
@@ -327,18 +316,131 @@ amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type, u
free_cmd_base(base_cmd);
}
+void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type)
+{
+ int r;
+ FILE *fp;
+ char cmd[1024];
+ char buffer[128];
+ long sched_mask = 0;
+ struct drm_amdgpu_info_hw_ip info;
+ uint32_t ring_id, prio;
+ char sysfs[125];
+
+ r = amdgpu_query_hw_ip_info(device_handle, ip_type, 0, &info);
+ igt_assert_eq(r, 0);
+ if (!info.available_rings)
+ igt_info("SKIP ... as there's no ring for ip %d\n", ip_type);
+
+ if (ip_type == AMD_IP_GFX)
+ snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_gfx_sched_mask");
+ else if (ip_type == AMD_IP_COMPUTE)
+ snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_compute_sched_mask");
+ else if (ip_type == AMD_IP_DMA)
+ snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_sdma_sched_mask");
+
+ snprintf(cmd, sizeof(cmd) - 1, "sudo cat %s", sysfs);
+ r = access(sysfs, R_OK);
+ if (!r) {
+ fp = popen(cmd, "r");
+ if (fp == NULL)
+ igt_skip("read the sysfs failed: %s \n",sysfs);
+
+ if (fgets(buffer, 128, fp) != NULL)
+ sched_mask = strtol(buffer, NULL, 16);
+
+ pclose(fp);
+ } else {
+ sched_mask = 1;
+ igt_info("The scheduling ring only enables one for ip %d\n", ip_type);
+ }
+
+ for (ring_id = 0; (0x1 << ring_id) <= sched_mask; ring_id++) {
+ /* check sched is ready is on the ring. */
+ if (!((1 << ring_id) & sched_mask))
+ continue;
+
+ /* for the gfx/compute multiple rings, the first queue
+ * is high priority. it need create a high ctx
+ */
+ if ((sched_mask > 1) && (ring_id == 0) &&
+ (ip_type == AMD_IP_COMPUTE ||
+ ip_type == AMD_IP_GFX)) {
+ prio = AMDGPU_CTX_PRIORITY_HIGH;
+ } else {
+ prio = AMDGPU_CTX_PRIORITY_NORMAL;
+ }
+
+ if (sched_mask > 1) {
+ snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
+ 0x1 << ring_id, sysfs);
+ r = system(cmd);
+ igt_assert_eq(r, 0);
+ }
+
+ bad_access_helper(device_handle, cmd_error, ip_type, prio);
+ }
+
+ /* recover the sched mask */
+ if (sched_mask > 1) {
+ snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s",sched_mask, sysfs);
+ r = system(cmd);
+ igt_assert_eq(r, 0);
+ }
+
+}
+
void amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t hang_type)
{
int r;
+ FILE *fp;
+ char cmd[1024];
+ char buffer[128];
+ long sched_mask = 0;
struct drm_amdgpu_info_hw_ip info;
uint32_t ring_id;
+ char sysfs[125];
r = amdgpu_query_hw_ip_info(device_handle, AMDGPU_HW_IP_DMA, 0, &info);
igt_assert_eq(r, 0);
if (!info.available_rings)
igt_info("SKIP ... as there's no ring for the sdma\n");
- for (ring_id = 0; (1 << ring_id) & info.available_rings; ring_id++)
- amdgpu_hang_sdma_helper(device_handle, hang_type, ring_id);
+ snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_sdma_sched_mask");
+ snprintf(cmd, sizeof(cmd) - 1, "sudo cat %s", sysfs);
+ r = access(sysfs, R_OK);
+ if (!r) {
+ fp = popen(cmd, "r");
+ if (fp == NULL)
+ igt_skip("read the sysfs failed: %s \n",sysfs);
+
+ if (fgets(buffer, 128, fp) != NULL)
+ sched_mask = strtol(buffer, NULL, 16);
+
+ pclose(fp);
+ } else
+ sched_mask = 1;
+
+ for (ring_id = 0; (0x1 << ring_id) <= sched_mask; ring_id++) {
+ /* check sched is ready is on the ring. */
+ if (!((1 << ring_id) & sched_mask))
+ continue;
+
+ if (sched_mask > 1) {
+ snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
+ 0x1 << ring_id, sysfs);
+ r = system(cmd);
+ igt_assert_eq(r, 0);
+ }
+
+ amdgpu_hang_sdma_helper(device_handle, hang_type);
+ }
+
+ /* recover the sched mask */
+ if (sched_mask > 1) {
+ snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s",sched_mask, sysfs);
+ r = system(cmd);
+ igt_assert_eq(r, 0);
+ }
}
diff --git a/lib/amdgpu/amd_dispatch.c b/lib/amdgpu/amd_dispatch.c
index 5b4698a83..d5b94e864 100644
--- a/lib/amdgpu/amd_dispatch.c
+++ b/lib/amdgpu/amd_dispatch.c
@@ -14,7 +14,7 @@
static void
amdgpu_memset_dispatch_test(amdgpu_device_handle device_handle,
- uint32_t ip_type, uint32_t ring,
+ uint32_t ip_type, uint32_t priority,
uint32_t version)
{
amdgpu_context_handle context_handle;
@@ -37,7 +37,11 @@ amdgpu_memset_dispatch_test(amdgpu_device_handle device_handle,
struct amdgpu_cmd_base *base_cmd = get_cmd_base();
- r = amdgpu_cs_ctx_create(device_handle, &context_handle);
+ if (priority == AMDGPU_CTX_PRIORITY_HIGH)
+ r = amdgpu_cs_ctx_create2(device_handle, AMDGPU_CTX_PRIORITY_HIGH, &context_handle);
+ else
+ r = amdgpu_cs_ctx_create(device_handle, &context_handle);
+
igt_assert_eq(r, 0);
r = amdgpu_bo_alloc_and_map(device_handle, bo_cmd_size, 4096,
@@ -121,7 +125,7 @@ amdgpu_memset_dispatch_test(amdgpu_device_handle device_handle,
ib_info.ib_mc_address = mc_address_cmd;
ib_info.size = base_cmd->cdw;
ibs_request.ip_type = ip_type;
- ibs_request.ring = ring;
+ ibs_request.ring = 0;
ibs_request.resources = bo_list;
ibs_request.number_of_ibs = 1;
ibs_request.ibs = &ib_info;
@@ -136,7 +140,7 @@ amdgpu_memset_dispatch_test(amdgpu_device_handle device_handle,
fence_status.ip_type = ip_type;
fence_status.ip_instance = 0;
- fence_status.ring = ring;
+ fence_status.ring = 0;
fence_status.context = context_handle;
fence_status.fence = ibs_request.seq_no;
@@ -162,8 +166,8 @@ amdgpu_memset_dispatch_test(amdgpu_device_handle device_handle,
int
amdgpu_memcpy_dispatch_test(amdgpu_device_handle device_handle,
amdgpu_context_handle context_handle_param,
- uint32_t ip_type, uint32_t ring, uint32_t version,
- enum cmd_error_type hang,
+ uint32_t ip_type, uint32_t ring, uint32_t priority,
+ uint32_t version, enum cmd_error_type hang,
struct amdgpu_cs_err_codes *err_codes)
{
amdgpu_context_handle context_handle_free = NULL;
@@ -188,9 +192,15 @@ amdgpu_memcpy_dispatch_test(amdgpu_device_handle device_handle,
struct amdgpu_cmd_base *base_cmd = get_cmd_base();
if (context_handle_param == NULL) {
- r = amdgpu_cs_ctx_create(device_handle, &context_handle_in_use);
- context_handle_free = context_handle_in_use;
- igt_assert_eq(r, 0);
+ if( priority == AMDGPU_CTX_PRIORITY_HIGH) {
+ r = amdgpu_cs_ctx_create2(device_handle, AMDGPU_CTX_PRIORITY_HIGH, &context_handle_in_use);
+ context_handle_free = context_handle_in_use;
+ igt_assert_eq(r, 0);
+ } else {
+ r = amdgpu_cs_ctx_create(device_handle, &context_handle_in_use);
+ context_handle_free = context_handle_in_use;
+ igt_assert_eq(r, 0);
+ }
} else {
context_handle_in_use = context_handle_param;
}
@@ -303,7 +313,7 @@ amdgpu_memcpy_dispatch_test(amdgpu_device_handle device_handle,
ib_info.ib_mc_address = mc_address_cmd;
ib_info.size = base_cmd->cdw;
ibs_request.ip_type = ip_type;
- ibs_request.ring = ring;
+ ibs_request.ring = 0;
ibs_request.resources = bo_list;
ibs_request.number_of_ibs = 1;
ibs_request.ibs = &ib_info;
@@ -314,7 +324,7 @@ amdgpu_memcpy_dispatch_test(amdgpu_device_handle device_handle,
fence_status.ip_type = ip_type;
fence_status.ip_instance = 0;
- fence_status.ring = ring;
+ fence_status.ring = 0;
fence_status.context = context_handle_in_use;
fence_status.fence = ibs_request.seq_no;
@@ -357,7 +367,7 @@ amdgpu_memcpy_dispatch_test(amdgpu_device_handle device_handle,
static void
amdgpu_memcpy_dispatch_hang_slow_test(amdgpu_device_handle device_handle,
- uint32_t ip_type, uint32_t ring,
+ uint32_t ip_type, uint32_t priority,
int version, uint32_t gpu_reset_status_equel)
{
amdgpu_context_handle context_handle;
@@ -386,7 +396,11 @@ amdgpu_memcpy_dispatch_hang_slow_test(amdgpu_device_handle device_handle,
r = amdgpu_query_gpu_info(device_handle, &gpu_info);
igt_assert_eq(r, 0);
- r = amdgpu_cs_ctx_create(device_handle, &context_handle);
+ if( priority == AMDGPU_CTX_PRIORITY_HIGH)
+ r = amdgpu_cs_ctx_create2(device_handle, AMDGPU_CTX_PRIORITY_HIGH, &context_handle);
+ else
+ r = amdgpu_cs_ctx_create(device_handle, &context_handle);
+
igt_assert_eq(r, 0);
r = amdgpu_bo_alloc_and_map(device_handle, bo_cmd_size, 4096,
@@ -487,7 +501,7 @@ amdgpu_memcpy_dispatch_hang_slow_test(amdgpu_device_handle device_handle,
ib_info.ib_mc_address = mc_address_cmd;
ib_info.size = base_cmd->cdw;
ibs_request.ip_type = ip_type;
- ibs_request.ring = ring;
+ ibs_request.ring = 0;
ibs_request.resources = bo_list;
ibs_request.number_of_ibs = 1;
ibs_request.ibs = &ib_info;
@@ -497,7 +511,7 @@ amdgpu_memcpy_dispatch_hang_slow_test(amdgpu_device_handle device_handle,
fence_status.ip_type = ip_type;
fence_status.ip_instance = 0;
- fence_status.ring = ring;
+ fence_status.ring = 0;
fence_status.context = context_handle;
fence_status.fence = ibs_request.seq_no;
@@ -538,8 +552,13 @@ amdgpu_dispatch_hang_slow_helper(amdgpu_device_handle device_handle,
uint32_t ip_type)
{
int r;
+ FILE *fp;
+ char cmd[1024];
+ char buffer[128];
+ long sched_mask = 0;
struct drm_amdgpu_info_hw_ip info;
- uint32_t ring_id, version;
+ uint32_t ring_id, version, prio;
+ char sysfs[125];
r = amdgpu_query_hw_ip_info(device_handle, ip_type, 0, &info);
igt_assert_eq(r, 0);
@@ -551,22 +570,78 @@ amdgpu_dispatch_hang_slow_helper(amdgpu_device_handle device_handle,
igt_info("SKIP ... unsupported gfx version %d\n", version);
return;
}
- for (ring_id = 0; (1 << ring_id) & info.available_rings; ring_id++) {
+
+ if (ip_type == AMD_IP_GFX)
+ snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_gfx_sched_mask");
+ else if (ip_type == AMD_IP_COMPUTE)
+ snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_compute_sched_mask");
+ else if (ip_type == AMD_IP_DMA)
+ snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_sdma_sched_mask");
+
+ snprintf(cmd, sizeof(cmd) - 1, "sudo cat %s", sysfs);
+ r = access(sysfs, R_OK);
+ if (!r) {
+ fp = popen(cmd, "r");
+ if (fp == NULL)
+ igt_skip("read the sysfs failed: %s \n",sysfs);
+
+ if (fgets(buffer, 128, fp) != NULL)
+ sched_mask = strtol(buffer, NULL, 16);
+
+ pclose(fp);
+ } else
+ sched_mask = 1;
+
+ for (ring_id = 0; (0x1 << ring_id) <= sched_mask; ring_id++) {
+ /* check sched is ready is on the ring. */
+ if (!((1 << ring_id) & sched_mask))
+ continue;
+
+ /* for the gfx/compute multiple rings, the first queue
+ * is high priority. it need create a high ctx
+ */
+ if ((sched_mask > 1) && (ring_id == 0) &&
+ (ip_type == AMD_IP_COMPUTE ||
+ ip_type == AMD_IP_GFX)) {
+ prio = AMDGPU_CTX_PRIORITY_HIGH;
+ } else {
+ prio = AMDGPU_CTX_PRIORITY_NORMAL;
+ }
+
+ if (sched_mask > 1) {
+ snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
+ 0x1 << ring_id, sysfs);
+ r = system(cmd);
+ igt_assert_eq(r, 0);
+ }
+
amdgpu_memcpy_dispatch_test(device_handle, NULL, ip_type,
- ring_id, version, BACKEND_SE_GC_SHADER_EXEC_SUCCESS, NULL);
+ ring_id, prio, version, BACKEND_SE_GC_SHADER_EXEC_SUCCESS, NULL);
amdgpu_memcpy_dispatch_hang_slow_test(device_handle, ip_type,
- ring_id, version, AMDGPU_CTX_UNKNOWN_RESET);
+ prio, version, AMDGPU_CTX_UNKNOWN_RESET);
- amdgpu_memcpy_dispatch_test(device_handle, NULL, ip_type, ring_id,
+ amdgpu_memcpy_dispatch_test(device_handle, NULL, ip_type, ring_id, prio,
version, BACKEND_SE_GC_SHADER_EXEC_SUCCESS, NULL);
}
+
+ /* recover the sched mask */
+ if (sched_mask > 1) {
+ snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s",sched_mask, sysfs);
+ r = system(cmd);
+ igt_assert_eq(r, 0);
+ }
}
void amdgpu_gfx_dispatch_test(amdgpu_device_handle device_handle, uint32_t ip_type, enum cmd_error_type hang)
{
int r;
+ FILE *fp;
+ char cmd[1024];
+ char buffer[128];
+ long sched_mask = 0;
struct drm_amdgpu_info_hw_ip info;
- uint32_t ring_id, version;
+ uint32_t ring_id, version, prio;
+ char sysfs[125];
r = amdgpu_query_hw_ip_info(device_handle, ip_type, 0, &info);
igt_assert_eq(r, 0);
@@ -581,11 +656,61 @@ void amdgpu_gfx_dispatch_test(amdgpu_device_handle device_handle, uint32_t ip_ty
if (version < 9)
version = 9;
- for (ring_id = 0; (1 << ring_id) & info.available_rings; ring_id++) {
- amdgpu_memset_dispatch_test(device_handle, ip_type, ring_id,
+ if (ip_type == AMD_IP_GFX)
+ snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_gfx_sched_mask");
+ else if (ip_type == AMD_IP_COMPUTE)
+ snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_compute_sched_mask");
+ else if (ip_type == AMD_IP_DMA)
+ snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_sdma_sched_mask");
+
+ snprintf(cmd, sizeof(cmd) - 1, "sudo cat %s", sysfs);
+ r = access(sysfs, R_OK);
+ if (!r) {
+ fp = popen(cmd, "r");
+ if (fp == NULL)
+ igt_skip("read the sysfs failed: %s \n",sysfs);
+
+ if (fgets(buffer, 128, fp) != NULL)
+ sched_mask = strtol(buffer, NULL, 16);
+
+ pclose(fp);
+ } else
+ sched_mask = 1;
+
+ for (ring_id = 0; (0x1 << ring_id) <= sched_mask; ring_id++) {
+ /* check sched is ready is on the ring. */
+ if (!((1 << ring_id) & sched_mask))
+ continue;
+
+ /* for the gfx/compute multiple rings, the first queue
+ * is high priority. it need create a high ctx
+ */
+ if ((sched_mask > 1) && (ring_id == 0) &&
+ (ip_type == AMD_IP_COMPUTE ||
+ ip_type == AMD_IP_GFX)) {
+ prio = AMDGPU_CTX_PRIORITY_HIGH;
+ } else {
+ prio = AMDGPU_CTX_PRIORITY_NORMAL;
+ }
+
+ if (sched_mask > 1) {
+ snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
+ 0x1 << ring_id, sysfs);
+ igt_info("cmd: %s\n", cmd);
+ r = system(cmd);
+ igt_assert_eq(r, 0);
+ }
+ amdgpu_memset_dispatch_test(device_handle, ip_type, prio,
version);
- amdgpu_memcpy_dispatch_test(device_handle, NULL, ip_type, ring_id,
+ amdgpu_memcpy_dispatch_test(device_handle, NULL, ip_type, ring_id, prio,
version, hang, NULL);
}
+
+ /* recover the sched mask */
+ if (sched_mask > 1) {
+ snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s",sched_mask, sysfs);
+ r = system(cmd);
+ igt_assert_eq(r, 0);
+ }
}
diff --git a/lib/amdgpu/amd_dispatch.h b/lib/amdgpu/amd_dispatch.h
index 89c448a1f..8dbc4595b 100644
--- a/lib/amdgpu/amd_dispatch.h
+++ b/lib/amdgpu/amd_dispatch.h
@@ -34,6 +34,7 @@ int amdgpu_memcpy_dispatch_test(amdgpu_device_handle device_handle,
amdgpu_context_handle context_handle,
uint32_t ip_type,
uint32_t ring,
+ uint32_t priority,
uint32_t version,
enum cmd_error_type hang,
struct amdgpu_cs_err_codes *err_codes);
diff --git a/tests/amdgpu/amd_queue_reset.c b/tests/amdgpu/amd_queue_reset.c
index de1550d3c..67570251d 100644
--- a/tests/amdgpu/amd_queue_reset.c
+++ b/tests/amdgpu/amd_queue_reset.c
@@ -752,7 +752,7 @@ run_test_child(amdgpu_device_handle device, struct shmbuf *sh_mem,
pthread_mutex_unlock(¶m->local_mem.mutex);
if (is_dispatch) {
- ret = amdgpu_memcpy_dispatch_test(device, local_context, job.ip, job.ring_id, version,
+ ret = amdgpu_memcpy_dispatch_test(device, local_context, job.ip, job.ring_id, 0,version,
job.error, &err_codes);
} else {
ret = amdgpu_write_linear(device, local_context,
--
2.25.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✓ Fi.CI.BAT: success for lib/amdgpu: fix ring schedule issue
2024-11-04 6:57 [PATCH i-g-t] lib/amdgpu: fix ring schedule issue Jesse.zhang@amd.com
@ 2024-11-04 19:45 ` Patchwork
2024-11-04 20:46 ` ✓ CI.xeBAT: " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-11-04 19:45 UTC (permalink / raw)
To: Jesse.zhang@amd.com; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5319 bytes --]
== Series Details ==
Series: lib/amdgpu: fix ring schedule issue
URL : https://patchwork.freedesktop.org/series/140862/
State : success
== Summary ==
CI Bug Log - changes from IGT_8094 -> IGTPW_12025
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/index.html
Participating hosts (45 -> 44)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_12025 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][1] -> [ABORT][2] ([i915#12061] / [i915#12133])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/bat-mtlp-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/bat-mtlp-8/igt@i915_selftest@live.html
- bat-arlh-3: [PASS][3] -> [ABORT][4] ([i915#12133])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/bat-arlh-3/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/bat-arlh-3/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-3: [PASS][5] -> [ABORT][6] ([i915#12061])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/bat-arlh-3/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/bat-arlh-3/igt@i915_selftest@live@workarounds.html
- bat-mtlp-8: [PASS][7] -> [ABORT][8] ([i915#12061])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/bat-mtlp-8/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_module_load@reload:
- bat-apl-1: [DMESG-WARN][9] ([i915#180]) -> [PASS][10] +2 other tests pass
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/bat-apl-1/igt@i915_module_load@reload.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/bat-apl-1/igt@i915_module_load@reload.html
* igt@i915_selftest@live:
- bat-twl-2: [INCOMPLETE][11] ([i915#12133] / [i915#9413]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/bat-twl-2/igt@i915_selftest@live.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/bat-twl-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@gt_lrc:
- bat-twl-2: [INCOMPLETE][13] ([i915#12445] / [i915#9413]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/bat-twl-2/igt@i915_selftest@live@gt_lrc.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/bat-twl-2/igt@i915_selftest@live@gt_lrc.html
* igt@i915_selftest@live@sanitycheck:
- bat-apl-1: [DMESG-WARN][15] ([i915#11621]) -> [PASS][16] +79 other tests pass
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/bat-apl-1/igt@i915_selftest@live@sanitycheck.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/bat-apl-1/igt@i915_selftest@live@sanitycheck.html
* igt@kms_busy@basic@flip:
- bat-apl-1: [DMESG-WARN][17] ([i915#180] / [i915#1982]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/bat-apl-1/igt@kms_busy@basic@flip.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/bat-apl-1/igt@kms_busy@basic@flip.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-apl-1: [DMESG-WARN][19] ([i915#11621] / [i915#180] / [i915#1982]) -> [PASS][20] +2 other tests pass
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/bat-apl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/bat-apl-1/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- bat-apl-1: [DMESG-WARN][21] ([i915#11621] / [i915#180]) -> [PASS][22] +42 other tests pass
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/bat-apl-1/igt@kms_pm_rpm@basic-pci-d3-state.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/bat-apl-1/igt@kms_pm_rpm@basic-pci-d3-state.html
[i915#11621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11621
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445
[i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180
[i915#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982
[i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8094 -> IGTPW_12025
CI-20190529: 20190529
CI_DRM_15627: 0a6cc4357ae4d824f909468ca1deed28ae5ac96f @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12025: d26990c0dd094a9a5ebb796e0ac84a357b5c20d3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8094: 19b8958a209f1ea14a3ae06b31d76179fed5733a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/index.html
[-- Attachment #2: Type: text/html, Size: 6952 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ CI.xeBAT: success for lib/amdgpu: fix ring schedule issue
2024-11-04 6:57 [PATCH i-g-t] lib/amdgpu: fix ring schedule issue Jesse.zhang@amd.com
2024-11-04 19:45 ` ✓ Fi.CI.BAT: success for " Patchwork
@ 2024-11-04 20:46 ` Patchwork
2024-11-04 23:21 ` [PATCH i-g-t] " vitaly prosyak
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-11-04 20:46 UTC (permalink / raw)
To: Jesse.zhang@amd.com; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4297 bytes --]
== Series Details ==
Series: lib/amdgpu: fix ring schedule issue
URL : https://patchwork.freedesktop.org/series/140862/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8094_BAT -> XEIGTPW_12025_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12025_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [PASS][1] -> [FAIL][2] ([Intel XE#1861])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr:
- bat-dg2-oem2: NOTRUN -> [SKIP][3] ([Intel XE#288]) +32 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-adlp-7: [PASS][4] -> [INCOMPLETE][5] ([Intel XE#2874]) +1 other test incomplete
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-dg2-oem2: NOTRUN -> [SKIP][6] ([Intel XE#2229])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
#### Possible fixes ####
* igt@core_hotunplug@unbind-rebind:
- bat-adlp-7: [DMESG-WARN][7] ([Intel XE#2871]) -> [PASS][8] +2 other tests pass
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/bat-adlp-7/igt@core_hotunplug@unbind-rebind.html
* igt@kms_psr@psr-cursor-plane-move:
- bat-adlp-7: [SKIP][9] ([Intel XE#455]) -> [PASS][10] +3 other tests pass
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/bat-adlp-7/igt@kms_psr@psr-cursor-plane-move.html
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-bmg-2: [INCOMPLETE][11] ([Intel XE#2874] / [Intel XE#2998]) -> [PASS][12] +1 other test pass
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
- bat-dg2-oem2: [INCOMPLETE][13] ([Intel XE#2874]) -> [PASS][14] +1 other test pass
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[Intel XE#1861]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1861
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2871]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2871
[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#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
Build changes
-------------
* IGT: IGT_8094 -> IGTPW_12025
IGTPW_12025: d26990c0dd094a9a5ebb796e0ac84a357b5c20d3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8094: 19b8958a209f1ea14a3ae06b31d76179fed5733a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2159-0a6cc4357ae4d824f909468ca1deed28ae5ac96f: 0a6cc4357ae4d824f909468ca1deed28ae5ac96f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/index.html
[-- Attachment #2: Type: text/html, Size: 5160 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t] lib/amdgpu: fix ring schedule issue
2024-11-04 6:57 [PATCH i-g-t] lib/amdgpu: fix ring schedule issue Jesse.zhang@amd.com
2024-11-04 19:45 ` ✓ Fi.CI.BAT: success for " Patchwork
2024-11-04 20:46 ` ✓ CI.xeBAT: " Patchwork
@ 2024-11-04 23:21 ` vitaly prosyak
2024-11-05 10:44 ` ✗ Fi.CI.IGT: failure for " Patchwork
2024-11-05 13:47 ` ✗ CI.xeFULL: " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: vitaly prosyak @ 2024-11-04 23:21 UTC (permalink / raw)
To: Jesse.zhang@amd.com, igt-dev
Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig, Kamil Konieczny
The change looks good to me.
Reviewed-by: Vitaly Prosyak <vitaly.prosyak@amd.com>
On 2024-11-04 01:57, Jesse.zhang@amd.com wrote:
> Because drm schedule no longer uses the parameter ring_id for scheduling.
> Instead, it selects the ring with less load to schedule the job. See the kernel
> function drm_sched_job_arm. Therefore, in order to verify each available ring on
> a certain IP, it can use the schedule debugfs interface.
>
> Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
> ---
> lib/amdgpu/amd_deadlock_helpers.c | 148 +++++++++++++++++++++----
> lib/amdgpu/amd_dispatch.c | 173 +++++++++++++++++++++++++-----
> lib/amdgpu/amd_dispatch.h | 1 +
> tests/amdgpu/amd_queue_reset.c | 2 +-
> 4 files changed, 276 insertions(+), 48 deletions(-)
>
> diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c
> index 39641ce23..e8b731489 100644
> --- a/lib/amdgpu/amd_deadlock_helpers.c
> +++ b/lib/amdgpu/amd_deadlock_helpers.c
> @@ -170,7 +170,8 @@ amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int ip_ty
> }
>
> static void
> -bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type, unsigned int ring_id)
> +bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error,
> + unsigned int ip_type, uint32_t priority)
> {
>
> const struct amdgpu_ip_block_version *ip_block = NULL;
> @@ -182,7 +183,11 @@ bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, un
>
> ring_context = calloc(1, sizeof(*ring_context));
> igt_assert(ring_context);
> - r = amdgpu_cs_ctx_create(device_handle, &ring_context->context_handle);
> +
> + if( priority == AMDGPU_CTX_PRIORITY_HIGH)
> + r = amdgpu_cs_ctx_create2(device_handle, AMDGPU_CTX_PRIORITY_HIGH, &ring_context->context_handle);
> + else
> + r = amdgpu_cs_ctx_create(device_handle, &ring_context->context_handle);
> igt_assert_eq(r, 0);
>
> /* setup parameters */
> @@ -190,7 +195,7 @@ bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, un
> ring_context->pm4 = calloc(pm4_dw, sizeof(*ring_context->pm4));
> ring_context->pm4_size = pm4_dw;
> ring_context->res_cnt = 1;
> - ring_context->ring_id = ring_id;
> + ring_context->ring_id = 0;
> igt_assert(ring_context->pm4);
> ip_block = get_ip_block(device_handle, ip_type);
> r = amdgpu_bo_alloc_and_map(device_handle,
> @@ -216,27 +221,11 @@ bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, un
> free(ring_context);
> }
>
> -void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type)
> -{
> - int r;
> - struct drm_amdgpu_info_hw_ip info;
> - uint32_t ring_id;
> -
> - r = amdgpu_query_hw_ip_info(device_handle, ip_type, 0, &info);
> - igt_assert_eq(r, 0);
> - if (!info.available_rings)
> - igt_info("SKIP ... as there's no ring for ip %d\n", ip_type);
> -
> - for (ring_id = 0; (1 << ring_id) & info.available_rings; ring_id++) {
> - bad_access_helper(device_handle, cmd_error, ip_type, ring_id);
> - }
> -}
> -
> #define MAX_DMABUF_COUNT 0x20000
> #define MAX_DWORD_COUNT 256
>
> static void
> -amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type, unsigned int ring_id)
> +amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type)
> {
> int j, r;
> uint32_t *ptr, offset;
> @@ -256,7 +245,7 @@ amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type, u
> }
> ring_context->secure = false;
> ring_context->res_cnt = 2;
> - ring_context->ring_id = ring_id;
> + ring_context->ring_id = 0;
> igt_assert(ring_context->pm4);
>
> r = amdgpu_cs_ctx_create(device_handle, &ring_context->context_handle);
> @@ -327,18 +316,131 @@ amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type, u
> free_cmd_base(base_cmd);
> }
>
> +void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, unsigned int ip_type)
> +{
> + int r;
> + FILE *fp;
> + char cmd[1024];
> + char buffer[128];
> + long sched_mask = 0;
> + struct drm_amdgpu_info_hw_ip info;
> + uint32_t ring_id, prio;
> + char sysfs[125];
> +
> + r = amdgpu_query_hw_ip_info(device_handle, ip_type, 0, &info);
> + igt_assert_eq(r, 0);
> + if (!info.available_rings)
> + igt_info("SKIP ... as there's no ring for ip %d\n", ip_type);
> +
> + if (ip_type == AMD_IP_GFX)
> + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_gfx_sched_mask");
> + else if (ip_type == AMD_IP_COMPUTE)
> + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_compute_sched_mask");
> + else if (ip_type == AMD_IP_DMA)
> + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_sdma_sched_mask");
> +
> + snprintf(cmd, sizeof(cmd) - 1, "sudo cat %s", sysfs);
> + r = access(sysfs, R_OK);
> + if (!r) {
> + fp = popen(cmd, "r");
> + if (fp == NULL)
> + igt_skip("read the sysfs failed: %s \n",sysfs);
> +
> + if (fgets(buffer, 128, fp) != NULL)
> + sched_mask = strtol(buffer, NULL, 16);
> +
> + pclose(fp);
> + } else {
> + sched_mask = 1;
> + igt_info("The scheduling ring only enables one for ip %d\n", ip_type);
> + }
> +
> + for (ring_id = 0; (0x1 << ring_id) <= sched_mask; ring_id++) {
> + /* check sched is ready is on the ring. */
> + if (!((1 << ring_id) & sched_mask))
> + continue;
> +
> + /* for the gfx/compute multiple rings, the first queue
> + * is high priority. it need create a high ctx
> + */
> + if ((sched_mask > 1) && (ring_id == 0) &&
> + (ip_type == AMD_IP_COMPUTE ||
> + ip_type == AMD_IP_GFX)) {
> + prio = AMDGPU_CTX_PRIORITY_HIGH;
> + } else {
> + prio = AMDGPU_CTX_PRIORITY_NORMAL;
> + }
> +
> + if (sched_mask > 1) {
> + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
> + 0x1 << ring_id, sysfs);
> + r = system(cmd);
> + igt_assert_eq(r, 0);
> + }
> +
> + bad_access_helper(device_handle, cmd_error, ip_type, prio);
> + }
> +
> + /* recover the sched mask */
> + if (sched_mask > 1) {
> + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s",sched_mask, sysfs);
> + r = system(cmd);
> + igt_assert_eq(r, 0);
> + }
> +
> +}
> +
> void amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t hang_type)
> {
> int r;
> + FILE *fp;
> + char cmd[1024];
> + char buffer[128];
> + long sched_mask = 0;
> struct drm_amdgpu_info_hw_ip info;
> uint32_t ring_id;
> + char sysfs[125];
>
> r = amdgpu_query_hw_ip_info(device_handle, AMDGPU_HW_IP_DMA, 0, &info);
> igt_assert_eq(r, 0);
> if (!info.available_rings)
> igt_info("SKIP ... as there's no ring for the sdma\n");
>
> - for (ring_id = 0; (1 << ring_id) & info.available_rings; ring_id++)
> - amdgpu_hang_sdma_helper(device_handle, hang_type, ring_id);
> + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_sdma_sched_mask");
> + snprintf(cmd, sizeof(cmd) - 1, "sudo cat %s", sysfs);
> + r = access(sysfs, R_OK);
> + if (!r) {
> + fp = popen(cmd, "r");
> + if (fp == NULL)
> + igt_skip("read the sysfs failed: %s \n",sysfs);
> +
> + if (fgets(buffer, 128, fp) != NULL)
> + sched_mask = strtol(buffer, NULL, 16);
> +
> + pclose(fp);
> + } else
> + sched_mask = 1;
> +
> + for (ring_id = 0; (0x1 << ring_id) <= sched_mask; ring_id++) {
> + /* check sched is ready is on the ring. */
> + if (!((1 << ring_id) & sched_mask))
> + continue;
> +
> + if (sched_mask > 1) {
> + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
> + 0x1 << ring_id, sysfs);
> + r = system(cmd);
> + igt_assert_eq(r, 0);
> + }
> +
> + amdgpu_hang_sdma_helper(device_handle, hang_type);
> + }
> +
> + /* recover the sched mask */
> + if (sched_mask > 1) {
> + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s",sched_mask, sysfs);
> + r = system(cmd);
> + igt_assert_eq(r, 0);
> + }
> }
>
> diff --git a/lib/amdgpu/amd_dispatch.c b/lib/amdgpu/amd_dispatch.c
> index 5b4698a83..d5b94e864 100644
> --- a/lib/amdgpu/amd_dispatch.c
> +++ b/lib/amdgpu/amd_dispatch.c
> @@ -14,7 +14,7 @@
>
> static void
> amdgpu_memset_dispatch_test(amdgpu_device_handle device_handle,
> - uint32_t ip_type, uint32_t ring,
> + uint32_t ip_type, uint32_t priority,
> uint32_t version)
> {
> amdgpu_context_handle context_handle;
> @@ -37,7 +37,11 @@ amdgpu_memset_dispatch_test(amdgpu_device_handle device_handle,
>
> struct amdgpu_cmd_base *base_cmd = get_cmd_base();
>
> - r = amdgpu_cs_ctx_create(device_handle, &context_handle);
> + if (priority == AMDGPU_CTX_PRIORITY_HIGH)
> + r = amdgpu_cs_ctx_create2(device_handle, AMDGPU_CTX_PRIORITY_HIGH, &context_handle);
> + else
> + r = amdgpu_cs_ctx_create(device_handle, &context_handle);
> +
> igt_assert_eq(r, 0);
>
> r = amdgpu_bo_alloc_and_map(device_handle, bo_cmd_size, 4096,
> @@ -121,7 +125,7 @@ amdgpu_memset_dispatch_test(amdgpu_device_handle device_handle,
> ib_info.ib_mc_address = mc_address_cmd;
> ib_info.size = base_cmd->cdw;
> ibs_request.ip_type = ip_type;
> - ibs_request.ring = ring;
> + ibs_request.ring = 0;
> ibs_request.resources = bo_list;
> ibs_request.number_of_ibs = 1;
> ibs_request.ibs = &ib_info;
> @@ -136,7 +140,7 @@ amdgpu_memset_dispatch_test(amdgpu_device_handle device_handle,
>
> fence_status.ip_type = ip_type;
> fence_status.ip_instance = 0;
> - fence_status.ring = ring;
> + fence_status.ring = 0;
> fence_status.context = context_handle;
> fence_status.fence = ibs_request.seq_no;
>
> @@ -162,8 +166,8 @@ amdgpu_memset_dispatch_test(amdgpu_device_handle device_handle,
> int
> amdgpu_memcpy_dispatch_test(amdgpu_device_handle device_handle,
> amdgpu_context_handle context_handle_param,
> - uint32_t ip_type, uint32_t ring, uint32_t version,
> - enum cmd_error_type hang,
> + uint32_t ip_type, uint32_t ring, uint32_t priority,
> + uint32_t version, enum cmd_error_type hang,
> struct amdgpu_cs_err_codes *err_codes)
> {
> amdgpu_context_handle context_handle_free = NULL;
> @@ -188,9 +192,15 @@ amdgpu_memcpy_dispatch_test(amdgpu_device_handle device_handle,
> struct amdgpu_cmd_base *base_cmd = get_cmd_base();
>
> if (context_handle_param == NULL) {
> - r = amdgpu_cs_ctx_create(device_handle, &context_handle_in_use);
> - context_handle_free = context_handle_in_use;
> - igt_assert_eq(r, 0);
> + if( priority == AMDGPU_CTX_PRIORITY_HIGH) {
> + r = amdgpu_cs_ctx_create2(device_handle, AMDGPU_CTX_PRIORITY_HIGH, &context_handle_in_use);
> + context_handle_free = context_handle_in_use;
> + igt_assert_eq(r, 0);
> + } else {
> + r = amdgpu_cs_ctx_create(device_handle, &context_handle_in_use);
> + context_handle_free = context_handle_in_use;
> + igt_assert_eq(r, 0);
> + }
> } else {
> context_handle_in_use = context_handle_param;
> }
> @@ -303,7 +313,7 @@ amdgpu_memcpy_dispatch_test(amdgpu_device_handle device_handle,
> ib_info.ib_mc_address = mc_address_cmd;
> ib_info.size = base_cmd->cdw;
> ibs_request.ip_type = ip_type;
> - ibs_request.ring = ring;
> + ibs_request.ring = 0;
> ibs_request.resources = bo_list;
> ibs_request.number_of_ibs = 1;
> ibs_request.ibs = &ib_info;
> @@ -314,7 +324,7 @@ amdgpu_memcpy_dispatch_test(amdgpu_device_handle device_handle,
>
> fence_status.ip_type = ip_type;
> fence_status.ip_instance = 0;
> - fence_status.ring = ring;
> + fence_status.ring = 0;
> fence_status.context = context_handle_in_use;
> fence_status.fence = ibs_request.seq_no;
>
> @@ -357,7 +367,7 @@ amdgpu_memcpy_dispatch_test(amdgpu_device_handle device_handle,
>
> static void
> amdgpu_memcpy_dispatch_hang_slow_test(amdgpu_device_handle device_handle,
> - uint32_t ip_type, uint32_t ring,
> + uint32_t ip_type, uint32_t priority,
> int version, uint32_t gpu_reset_status_equel)
> {
> amdgpu_context_handle context_handle;
> @@ -386,7 +396,11 @@ amdgpu_memcpy_dispatch_hang_slow_test(amdgpu_device_handle device_handle,
> r = amdgpu_query_gpu_info(device_handle, &gpu_info);
> igt_assert_eq(r, 0);
>
> - r = amdgpu_cs_ctx_create(device_handle, &context_handle);
> + if( priority == AMDGPU_CTX_PRIORITY_HIGH)
> + r = amdgpu_cs_ctx_create2(device_handle, AMDGPU_CTX_PRIORITY_HIGH, &context_handle);
> + else
> + r = amdgpu_cs_ctx_create(device_handle, &context_handle);
> +
> igt_assert_eq(r, 0);
>
> r = amdgpu_bo_alloc_and_map(device_handle, bo_cmd_size, 4096,
> @@ -487,7 +501,7 @@ amdgpu_memcpy_dispatch_hang_slow_test(amdgpu_device_handle device_handle,
> ib_info.ib_mc_address = mc_address_cmd;
> ib_info.size = base_cmd->cdw;
> ibs_request.ip_type = ip_type;
> - ibs_request.ring = ring;
> + ibs_request.ring = 0;
> ibs_request.resources = bo_list;
> ibs_request.number_of_ibs = 1;
> ibs_request.ibs = &ib_info;
> @@ -497,7 +511,7 @@ amdgpu_memcpy_dispatch_hang_slow_test(amdgpu_device_handle device_handle,
>
> fence_status.ip_type = ip_type;
> fence_status.ip_instance = 0;
> - fence_status.ring = ring;
> + fence_status.ring = 0;
> fence_status.context = context_handle;
> fence_status.fence = ibs_request.seq_no;
>
> @@ -538,8 +552,13 @@ amdgpu_dispatch_hang_slow_helper(amdgpu_device_handle device_handle,
> uint32_t ip_type)
> {
> int r;
> + FILE *fp;
> + char cmd[1024];
> + char buffer[128];
> + long sched_mask = 0;
> struct drm_amdgpu_info_hw_ip info;
> - uint32_t ring_id, version;
> + uint32_t ring_id, version, prio;
> + char sysfs[125];
>
> r = amdgpu_query_hw_ip_info(device_handle, ip_type, 0, &info);
> igt_assert_eq(r, 0);
> @@ -551,22 +570,78 @@ amdgpu_dispatch_hang_slow_helper(amdgpu_device_handle device_handle,
> igt_info("SKIP ... unsupported gfx version %d\n", version);
> return;
> }
> - for (ring_id = 0; (1 << ring_id) & info.available_rings; ring_id++) {
> +
> + if (ip_type == AMD_IP_GFX)
> + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_gfx_sched_mask");
> + else if (ip_type == AMD_IP_COMPUTE)
> + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_compute_sched_mask");
> + else if (ip_type == AMD_IP_DMA)
> + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_sdma_sched_mask");
> +
> + snprintf(cmd, sizeof(cmd) - 1, "sudo cat %s", sysfs);
> + r = access(sysfs, R_OK);
> + if (!r) {
> + fp = popen(cmd, "r");
> + if (fp == NULL)
> + igt_skip("read the sysfs failed: %s \n",sysfs);
> +
> + if (fgets(buffer, 128, fp) != NULL)
> + sched_mask = strtol(buffer, NULL, 16);
> +
> + pclose(fp);
> + } else
> + sched_mask = 1;
> +
> + for (ring_id = 0; (0x1 << ring_id) <= sched_mask; ring_id++) {
> + /* check sched is ready is on the ring. */
> + if (!((1 << ring_id) & sched_mask))
> + continue;
> +
> + /* for the gfx/compute multiple rings, the first queue
> + * is high priority. it need create a high ctx
> + */
> + if ((sched_mask > 1) && (ring_id == 0) &&
> + (ip_type == AMD_IP_COMPUTE ||
> + ip_type == AMD_IP_GFX)) {
> + prio = AMDGPU_CTX_PRIORITY_HIGH;
> + } else {
> + prio = AMDGPU_CTX_PRIORITY_NORMAL;
> + }
> +
> + if (sched_mask > 1) {
> + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
> + 0x1 << ring_id, sysfs);
> + r = system(cmd);
> + igt_assert_eq(r, 0);
> + }
> +
> amdgpu_memcpy_dispatch_test(device_handle, NULL, ip_type,
> - ring_id, version, BACKEND_SE_GC_SHADER_EXEC_SUCCESS, NULL);
> + ring_id, prio, version, BACKEND_SE_GC_SHADER_EXEC_SUCCESS, NULL);
> amdgpu_memcpy_dispatch_hang_slow_test(device_handle, ip_type,
> - ring_id, version, AMDGPU_CTX_UNKNOWN_RESET);
> + prio, version, AMDGPU_CTX_UNKNOWN_RESET);
>
> - amdgpu_memcpy_dispatch_test(device_handle, NULL, ip_type, ring_id,
> + amdgpu_memcpy_dispatch_test(device_handle, NULL, ip_type, ring_id, prio,
> version, BACKEND_SE_GC_SHADER_EXEC_SUCCESS, NULL);
> }
> +
> + /* recover the sched mask */
> + if (sched_mask > 1) {
> + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s",sched_mask, sysfs);
> + r = system(cmd);
> + igt_assert_eq(r, 0);
> + }
> }
>
> void amdgpu_gfx_dispatch_test(amdgpu_device_handle device_handle, uint32_t ip_type, enum cmd_error_type hang)
> {
> int r;
> + FILE *fp;
> + char cmd[1024];
> + char buffer[128];
> + long sched_mask = 0;
> struct drm_amdgpu_info_hw_ip info;
> - uint32_t ring_id, version;
> + uint32_t ring_id, version, prio;
> + char sysfs[125];
>
> r = amdgpu_query_hw_ip_info(device_handle, ip_type, 0, &info);
> igt_assert_eq(r, 0);
> @@ -581,11 +656,61 @@ void amdgpu_gfx_dispatch_test(amdgpu_device_handle device_handle, uint32_t ip_ty
> if (version < 9)
> version = 9;
>
> - for (ring_id = 0; (1 << ring_id) & info.available_rings; ring_id++) {
> - amdgpu_memset_dispatch_test(device_handle, ip_type, ring_id,
> + if (ip_type == AMD_IP_GFX)
> + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_gfx_sched_mask");
> + else if (ip_type == AMD_IP_COMPUTE)
> + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_compute_sched_mask");
> + else if (ip_type == AMD_IP_DMA)
> + snprintf(sysfs, sizeof(sysfs) - 1, "/sys/kernel/debug/dri/0/amdgpu_sdma_sched_mask");
> +
> + snprintf(cmd, sizeof(cmd) - 1, "sudo cat %s", sysfs);
> + r = access(sysfs, R_OK);
> + if (!r) {
> + fp = popen(cmd, "r");
> + if (fp == NULL)
> + igt_skip("read the sysfs failed: %s \n",sysfs);
> +
> + if (fgets(buffer, 128, fp) != NULL)
> + sched_mask = strtol(buffer, NULL, 16);
> +
> + pclose(fp);
> + } else
> + sched_mask = 1;
> +
> + for (ring_id = 0; (0x1 << ring_id) <= sched_mask; ring_id++) {
> + /* check sched is ready is on the ring. */
> + if (!((1 << ring_id) & sched_mask))
> + continue;
> +
> + /* for the gfx/compute multiple rings, the first queue
> + * is high priority. it need create a high ctx
> + */
> + if ((sched_mask > 1) && (ring_id == 0) &&
> + (ip_type == AMD_IP_COMPUTE ||
> + ip_type == AMD_IP_GFX)) {
> + prio = AMDGPU_CTX_PRIORITY_HIGH;
> + } else {
> + prio = AMDGPU_CTX_PRIORITY_NORMAL;
> + }
> +
> + if (sched_mask > 1) {
> + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%x > %s",
> + 0x1 << ring_id, sysfs);
> + igt_info("cmd: %s\n", cmd);
> + r = system(cmd);
> + igt_assert_eq(r, 0);
> + }
> + amdgpu_memset_dispatch_test(device_handle, ip_type, prio,
> version);
> - amdgpu_memcpy_dispatch_test(device_handle, NULL, ip_type, ring_id,
> + amdgpu_memcpy_dispatch_test(device_handle, NULL, ip_type, ring_id, prio,
> version, hang, NULL);
> }
> +
> + /* recover the sched mask */
> + if (sched_mask > 1) {
> + snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s",sched_mask, sysfs);
> + r = system(cmd);
> + igt_assert_eq(r, 0);
> + }
> }
>
> diff --git a/lib/amdgpu/amd_dispatch.h b/lib/amdgpu/amd_dispatch.h
> index 89c448a1f..8dbc4595b 100644
> --- a/lib/amdgpu/amd_dispatch.h
> +++ b/lib/amdgpu/amd_dispatch.h
> @@ -34,6 +34,7 @@ int amdgpu_memcpy_dispatch_test(amdgpu_device_handle device_handle,
> amdgpu_context_handle context_handle,
> uint32_t ip_type,
> uint32_t ring,
> + uint32_t priority,
> uint32_t version,
> enum cmd_error_type hang,
> struct amdgpu_cs_err_codes *err_codes);
> diff --git a/tests/amdgpu/amd_queue_reset.c b/tests/amdgpu/amd_queue_reset.c
> index de1550d3c..67570251d 100644
> --- a/tests/amdgpu/amd_queue_reset.c
> +++ b/tests/amdgpu/amd_queue_reset.c
> @@ -752,7 +752,7 @@ run_test_child(amdgpu_device_handle device, struct shmbuf *sh_mem,
> pthread_mutex_unlock(¶m->local_mem.mutex);
>
> if (is_dispatch) {
> - ret = amdgpu_memcpy_dispatch_test(device, local_context, job.ip, job.ring_id, version,
> + ret = amdgpu_memcpy_dispatch_test(device, local_context, job.ip, job.ring_id, 0,version,
> job.error, &err_codes);
> } else {
> ret = amdgpu_write_linear(device, local_context,
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Fi.CI.IGT: failure for lib/amdgpu: fix ring schedule issue
2024-11-04 6:57 [PATCH i-g-t] lib/amdgpu: fix ring schedule issue Jesse.zhang@amd.com
` (2 preceding siblings ...)
2024-11-04 23:21 ` [PATCH i-g-t] " vitaly prosyak
@ 2024-11-05 10:44 ` Patchwork
2024-11-05 13:47 ` ✗ CI.xeFULL: " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-11-05 10:44 UTC (permalink / raw)
To: Jesse.zhang@amd.com; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 99004 bytes --]
== Series Details ==
Series: lib/amdgpu: fix ring schedule issue
URL : https://patchwork.freedesktop.org/series/140862/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8094_full -> IGTPW_12025_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12025_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12025_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_12025/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12025_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_workarounds@suspend-resume:
- shard-tglu: [PASS][1] -> [ABORT][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-tglu-6/igt@gem_workarounds@suspend-resume.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-8/igt@gem_workarounds@suspend-resume.html
* igt@kms_color@ctm-0-50@pipe-d-edp-1:
- shard-mtlp: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-1/igt@kms_color@ctm-0-50@pipe-d-edp-1.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-3/igt@kms_color@ctm-0-50@pipe-d-edp-1.html
Known issues
------------
Here are the changes found in IGTPW_12025_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#8411]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-5/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@debugfs_test@basic-hwmon:
- shard-tglu: NOTRUN -> [SKIP][6] ([i915#9318])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-6/igt@debugfs_test@basic-hwmon.html
* igt@drm_fdinfo@busy-check-all@vecs1:
- shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +8 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-7/igt@drm_fdinfo@busy-check-all@vecs1.html
* igt@drm_fdinfo@most-busy-idle-check-all@bcs0:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +12 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-12/igt@drm_fdinfo@most-busy-idle-check-all@bcs0.html
* igt@drm_fdinfo@most-busy-idle-check-all@ccs0:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) +6 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-4/igt@drm_fdinfo@most-busy-idle-check-all@ccs0.html
* igt@gem_busy@semaphore:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#3936])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-16/igt@gem_busy@semaphore.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-4/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-rkl: NOTRUN -> [SKIP][12] ([i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
- shard-tglu: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-dg2: NOTRUN -> [ABORT][14] ([i915#9846])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-dg2: NOTRUN -> [SKIP][15] ([i915#8562])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-1/igt@gem_create@create-ext-set-pat.html
- shard-rkl: NOTRUN -> [SKIP][16] ([i915#8562])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-7/igt@gem_create@create-ext-set-pat.html
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#8562])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-16/igt@gem_create@create-ext-set-pat.html
- shard-tglu: NOTRUN -> [SKIP][18] ([i915#8562])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-3/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-mtlp: NOTRUN -> [SKIP][19] ([i915#8555])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-3/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg1: NOTRUN -> [SKIP][20] ([i915#8555]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-19/igt@gem_ctx_persistence@heartbeat-many.html
- shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_sseu@engines:
- shard-rkl: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-3/igt@gem_ctx_sseu@engines.html
- shard-dg1: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-19/igt@gem_ctx_sseu@engines.html
- shard-tglu: NOTRUN -> [SKIP][24] ([i915#280]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-4/igt@gem_ctx_sseu@engines.html
- shard-mtlp: NOTRUN -> [SKIP][25] ([i915#280])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-7/igt@gem_ctx_sseu@engines.html
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#280])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-6/igt@gem_ctx_sseu@engines.html
* igt@gem_ctx_sseu@mmap-args:
- shard-tglu-1: NOTRUN -> [SKIP][27] ([i915#280])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_eio@reset-stress:
- shard-dg1: [PASS][28] -> [FAIL][29] ([i915#12543] / [i915#5784])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-17/igt@gem_eio@reset-stress.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-16/igt@gem_eio@reset-stress.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#4036])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-10/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@nop:
- shard-mtlp: [PASS][31] -> [DMESG-WARN][32] ([i915#12412])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-1/igt@gem_exec_balancer@nop.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-2/igt@gem_exec_balancer@nop.html
* igt@gem_exec_balancer@sliced:
- shard-dg2: NOTRUN -> [SKIP][33] ([i915#4812])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-1/igt@gem_exec_balancer@sliced.html
* igt@gem_exec_capture@capture-invisible:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#6334]) +2 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-5/igt@gem_exec_capture@capture-invisible.html
- shard-rkl: NOTRUN -> [SKIP][35] ([i915#6334]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-4/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_fair@basic-flow:
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-16/igt@gem_exec_fair@basic-flow.html
* igt@gem_exec_fair@basic-none:
- shard-tglu-1: NOTRUN -> [FAIL][37] ([i915#2842]) +5 other tests fail
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-pace:
- shard-rkl: NOTRUN -> [FAIL][38] ([i915#2842]) +3 other tests fail
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-7/igt@gem_exec_fair@basic-pace.html
* igt@gem_exec_fair@basic-pace-solo:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-7/igt@gem_exec_fair@basic-pace-solo.html
- shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-12/igt@gem_exec_fair@basic-pace-solo.html
- shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4473])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-3/igt@gem_exec_fair@basic-pace-solo.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_12025/shard-tglu-6/igt@gem_exec_fair@basic-pace@bcs0.html
* igt@gem_exec_flush@basic-wb-pro-default:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-5/igt@gem_exec_flush@basic-wb-pro-default.html
* igt@gem_exec_reloc@basic-concurrent0:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#3281]) +4 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-17/igt@gem_exec_reloc@basic-concurrent0.html
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#3281]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-1/igt@gem_exec_reloc@basic-concurrent0.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#3281]) +12 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-4/igt@gem_exec_reloc@basic-cpu-gtt.html
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#3281]) +7 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_schedule@pi-ringfull@bcs0:
- shard-tglu: NOTRUN -> [FAIL][48] ([i915#12296]) +5 other tests fail
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-2/igt@gem_exec_schedule@pi-ringfull@bcs0.html
* igt@gem_exec_suspend@basic-s0@smem:
- shard-dg2: [PASS][49] -> [INCOMPLETE][50] ([i915#11441]) +1 other test incomplete
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-4/igt@gem_exec_suspend@basic-s0@smem.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-3/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg2: NOTRUN -> [ABORT][51] ([i915#7975] / [i915#8213]) +1 other test abort
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-2/igt@gem_exec_suspend@basic-s4-devices.html
- shard-rkl: NOTRUN -> [ABORT][52] ([i915#7975] / [i915#8213]) +1 other test abort
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-2/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fenced_exec_thrash@no-spare-fences-busy:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4860])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-12/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4860])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-3/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4860]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-7/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][56] ([i915#4613]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4613])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-8/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][58] ([i915#4613]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-2/igt@gem_lmem_swapping@verify-random-ccs.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#8289])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-7/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-tglu-1: NOTRUN -> [SKIP][60] ([i915#284])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@gem_media_vme.html
* igt@gem_mmap_gtt@cpuset-medium-copy:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4077]) +4 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-6/igt@gem_mmap_gtt@cpuset-medium-copy.html
* igt@gem_mmap_wc@invalid-flags:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#4083]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-1/igt@gem_mmap_wc@invalid-flags.html
* igt@gem_mmap_wc@write-prefaulted:
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#4083]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-19/igt@gem_mmap_wc@write-prefaulted.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#3282]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-1/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#3282]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-16/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
- shard-mtlp: NOTRUN -> [SKIP][66] ([i915#3282]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-2/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pread@display:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#3282]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-4/igt@gem_pread@display.html
* igt@gem_pxp@create-protected-buffer:
- shard-dg1: NOTRUN -> [SKIP][68] ([i915#4270]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-17/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@create-regular-context-2:
- shard-tglu: NOTRUN -> [SKIP][69] ([i915#4270]) +3 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-8/igt@gem_pxp@create-regular-context-2.html
* igt@gem_pxp@create-valid-protected-context:
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4270]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-6/igt@gem_pxp@create-valid-protected-context.html
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#4270]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-4/igt@gem_pxp@create-valid-protected-context.html
* igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#4270])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-3/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs:
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#8428])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html
* igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#5190] / [i915#8428]) +3 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-4/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html
* igt@gem_tiled_partial_pwrite_pread@reads:
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4077]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-4/igt@gem_tiled_partial_pwrite_pread@reads.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#4079])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-13/igt@gem_tiled_pread_pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4079])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-5/igt@gem_tiled_pread_pwrite.html
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4079]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-1/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@create-destroy-unsync:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-1/igt@gem_userptr_blits@create-destroy-unsync.html
- shard-rkl: NOTRUN -> [SKIP][80] ([i915#3297]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-7/igt@gem_userptr_blits@create-destroy-unsync.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-tglu: NOTRUN -> [SKIP][81] ([i915#3297] / [i915#3323])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-5/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4880]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-tglu-1: NOTRUN -> [SKIP][83] ([i915#3297])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@gem_userptr_blits@readonly-unsync.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-dg1: NOTRUN -> [SKIP][84] ([i915#3297]) +2 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-13/igt@gem_userptr_blits@unsync-unmap.html
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3297]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-5/igt@gem_userptr_blits@unsync-unmap.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-tglu: NOTRUN -> [SKIP][86] ([i915#3297]) +4 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-9/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@bb-secure:
- shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#2527] / [i915#2856]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@gen9_exec_parse@bb-secure.html
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#2527])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-14/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-out:
- shard-tglu: NOTRUN -> [SKIP][89] ([i915#2527] / [i915#2856]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-8/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#2856])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-8/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: NOTRUN -> [ABORT][91] ([i915#9820])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: NOTRUN -> [ABORT][92] ([i915#9820])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-2/igt@i915_module_load@reload-with-fault-injection.html
- shard-mtlp: NOTRUN -> [ABORT][93] ([i915#10131] / [i915#10887] / [i915#9820])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-6/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg2: NOTRUN -> [ABORT][94] ([i915#9820])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_module_load@resize-bar:
- shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#6412])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@i915_module_load@resize-bar.html
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- shard-tglu-1: NOTRUN -> [WARN][96] ([i915#2681]) +4 other tests warn
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
- shard-dg1: [PASS][97] -> [FAIL][98] ([i915#12548] / [i915#3591]) +1 other test fail
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][99] ([i915#11681] / [i915#6621])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-19/igt@i915_pm_rps@basic-api.html
- shard-mtlp: NOTRUN -> [SKIP][100] ([i915#11681] / [i915#6621])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-2/igt@i915_pm_rps@basic-api.html
- shard-dg2: NOTRUN -> [SKIP][101] ([i915#11681] / [i915#6621])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-2/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@thresholds:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#11681])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-5/igt@i915_pm_rps@thresholds.html
* igt@i915_selftest@mock:
- shard-tglu: NOTRUN -> [DMESG-WARN][103] ([i915#9311]) +1 other test dmesg-warn
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-8/igt@i915_selftest@mock.html
* igt@i915_selftest@perf:
- shard-snb: [PASS][104] -> [ABORT][105] ([i915#12450])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-snb2/igt@i915_selftest@perf.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-snb5/igt@i915_selftest@perf.html
* igt@i915_selftest@perf@engine_cs:
- shard-snb: [PASS][106] -> [ABORT][107] ([i915#11703])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-snb2/igt@i915_selftest@perf@engine_cs.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-snb5/igt@i915_selftest@perf@engine_cs.html
* igt@intel_hwmon@hwmon-write:
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#7707])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-6/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#4212]) +1 other test skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-4/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-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][110] ([i915#8709]) +3 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/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-a-hdmi-a-3-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#8709]) +7 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-12/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#1769] / [i915#3555])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
- shard-dg1: NOTRUN -> [SKIP][113] ([i915#1769] / [i915#3555])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#5286]) +3 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-4/igt@kms_big_fb@4-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#5286]) +2 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-0:
- shard-rkl: NOTRUN -> [SKIP][116] ([i915#5286]) +3 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-1/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5286]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#3638]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#3638])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-12/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][120] ([i915#5190]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-mtlp: NOTRUN -> [SKIP][121] +4 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#4538] / [i915#5190]) +8 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#4538]) +3 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-16/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-8/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#6095]) +129 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#10307] / [i915#6095]) +119 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][127] ([i915#12313])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#12313])
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-4/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#12313]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][130] ([i915#6095]) +59 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-7/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][131] ([i915#6095]) +24 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-6/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#6095]) +24 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#12313])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#6095]) +70 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-1/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@mode-transition:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#11616] / [i915#7213])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-5/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#3742]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-9/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][137] ([i915#7213]) +3 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-5/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_audio@dp-audio:
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#7828]) +7 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-6/igt@kms_chamelium_audio@dp-audio.html
* igt@kms_chamelium_audio@dp-audio-edid:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#7828]) +9 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-1/igt@kms_chamelium_audio@dp-audio-edid.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#7828]) +3 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-2/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#7828]) +4 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-4/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@dp-hpd-after-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#7828]) +2 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
- shard-dg1: NOTRUN -> [SKIP][143] ([i915#7828]) +7 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-12/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html
* igt@kms_color@ctm-0-50:
- shard-mtlp: [PASS][144] -> [FAIL][145] ([i915#12520])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-1/igt@kms_color@ctm-0-50.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-3/igt@kms_color@ctm-0-50.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#3555] / [i915#9979])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-6/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic:
- shard-snb: NOTRUN -> [SKIP][147] +53 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-snb5/igt@kms_content_protection@atomic.html
- shard-dg1: NOTRUN -> [SKIP][148] ([i915#7116] / [i915#9424])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-19/igt@kms_content_protection@atomic.html
- shard-tglu: NOTRUN -> [SKIP][149] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-4/igt@kms_content_protection@atomic.html
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#6944] / [i915#9424])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-7/igt@kms_content_protection@atomic.html
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#7118] / [i915#9424])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-3/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-dg1: NOTRUN -> [SKIP][152] ([i915#3299])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-12/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@lic-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][153] ([i915#6944] / [i915#9424])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][154] ([i915#7173])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-10/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: NOTRUN -> [SKIP][155] ([i915#9433])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-12/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@uevent:
- shard-dg2: NOTRUN -> [SKIP][156] ([i915#7118] / [i915#9424]) +1 other test skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-4/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][157] ([i915#11453] / [i915#3359])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-rkl: NOTRUN -> [SKIP][158] ([i915#11453] / [i915#3359])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#11453] / [i915#3359])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#8814])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-3/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#11453] / [i915#3359])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-2/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#3555]) +4 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-12/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][163] ([i915#9809]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-tglu: NOTRUN -> [SKIP][164] +64 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-8/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-toggle:
- shard-snb: [PASS][165] -> [FAIL][166] ([i915#2346]) +2 other tests fail
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-snb4/igt@kms_cursor_legacy@flip-vs-cursor-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#4103])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu: NOTRUN -> [SKIP][168] ([i915#4103]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_display_modes@extended-mode-basic:
- shard-dg2: NOTRUN -> [SKIP][169] ([i915#3555]) +4 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-10/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-dg2: [PASS][170] -> [SKIP][171] ([i915#3555])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dp_aux_dev:
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#1257])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-4/igt@kms_dp_aux_dev.html
* igt@kms_dsc@dsc-basic:
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#3555] / [i915#3840])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-6/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#3840])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#3555] / [i915#3840])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-1/igt@kms_dsc@dsc-with-bpc.html
- shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#3840])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][177] ([i915#3840] / [i915#9053])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg1: NOTRUN -> [SKIP][178] ([i915#3469])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-15/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#4854])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-6/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-rkl: NOTRUN -> [SKIP][180] ([i915#1839])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-5/igt@kms_feature_discovery@display-4x.html
- shard-tglu: NOTRUN -> [SKIP][181] ([i915#1839]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-2/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-dg1: NOTRUN -> [SKIP][182] ([i915#9337])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-17/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr2:
- shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#658])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@kms_feature_discovery@psr2.html
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#658])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-10/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3637])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-4/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][186] +22 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-tglu: NOTRUN -> [SKIP][187] ([i915#3637] / [i915#3966])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-4/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip@2x-flip-vs-fences:
- shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#3637]) +5 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#8381])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-1/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-snb: [PASS][190] -> [FAIL][191] ([i915#2122]) +3 other tests fail
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-snb6/igt@kms_flip@2x-plain-flip-fb-recreate.html
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-snb2/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-tglu: NOTRUN -> [SKIP][192] ([i915#3637]) +2 other tests skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-8/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#9934]) +3 other tests skip
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-12/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-dg1: [PASS][194] -> [FAIL][195] ([i915#79]) +1 other test fail
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-19/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-14/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg1: [PASS][196] -> [INCOMPLETE][197] ([i915#4839] / [i915#6113])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-16/igt@kms_flip@flip-vs-suspend-interruptible.html
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-15/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-mtlp: [PASS][198] -> [INCOMPLETE][199] ([i915#6113])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-4/igt@kms_flip@flip-vs-suspend-interruptible.html
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-6/igt@kms_flip@flip-vs-suspend-interruptible.html
- shard-dg2: [PASS][200] -> [INCOMPLETE][201] ([i915#4839] / [i915#6113])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-7/igt@kms_flip@flip-vs-suspend-interruptible.html
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-6/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4:
- shard-dg1: [PASS][202] -> [INCOMPLETE][203] ([i915#6113])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-16/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4.html
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-15/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a4.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-edp1:
- shard-mtlp: [PASS][204] -> [INCOMPLETE][205] ([i915#10056] / [i915#6113])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-4/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-6/igt@kms_flip@flip-vs-suspend-interruptible@d-edp1.html
* igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3:
- shard-dg2: [PASS][206] -> [INCOMPLETE][207] ([i915#6113])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-7/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-6/igt@kms_flip@flip-vs-suspend-interruptible@d-hdmi-a3.html
* igt@kms_flip@plain-flip-ts-check@d-hdmi-a1:
- shard-tglu: [PASS][208] -> [FAIL][209] ([i915#2122]) +7 other tests fail
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-tglu-3/igt@kms_flip@plain-flip-ts-check@d-hdmi-a1.html
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-5/igt@kms_flip@plain-flip-ts-check@d-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#2672]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-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-downscaling:
- shard-tglu: NOTRUN -> [SKIP][211] ([i915#2672] / [i915#3555]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#2672] / [i915#3555])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#2672])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#2672] / [i915#3555] / [i915#8813])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][215] ([i915#2672] / [i915#8813])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#2672] / [i915#3555]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][217] ([i915#2672] / [i915#3555])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#2587] / [i915#2672])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#2672] / [i915#3555])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#2587] / [i915#2672])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][221] ([i915#2587] / [i915#2672]) +1 other test skip
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff:
- shard-dg2: NOTRUN -> [FAIL][222] ([i915#6880])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][223] +23 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#8708]) +3 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#3458]) +11 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#8708]) +15 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render:
- shard-tglu-1: NOTRUN -> [SKIP][227] +38 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#3023]) +13 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][229] ([i915#8708]) +13 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#3458]) +10 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#10433] / [i915#3458])
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#1825]) +15 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#1825]) +5 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#5354]) +29 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#6118])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-1/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_hdr@static-swap:
- shard-dg2: [PASS][236] -> [SKIP][237] ([i915#3555] / [i915#8228])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-10/igt@kms_hdr@static-swap.html
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-3/igt@kms_hdr@static-swap.html
* igt@kms_hdr@static-toggle-dpms:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#3555] / [i915#8228])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-5/igt@kms_hdr@static-toggle-dpms.html
- shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#8228])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#10656])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-16/igt@kms_joiner@basic-big-joiner.html
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#10656])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-1/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#12394]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-mtlp: NOTRUN -> [SKIP][243] ([i915#12339])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-6/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][244] ([i915#10656])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-9/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg1: NOTRUN -> [SKIP][245] ([i915#12388])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-19/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][246] ([i915#12339]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#12339])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c:
- shard-dg2: NOTRUN -> [SKIP][248] +11 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-4/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#3555] / [i915#8821])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-5/igt@kms_plane_lowres@tiling-yf.html
- shard-tglu-1: NOTRUN -> [SKIP][250] ([i915#3555]) +2 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@kms_plane_lowres@tiling-yf.html
- shard-mtlp: NOTRUN -> [SKIP][251] ([i915#3555] / [i915#8821])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-4/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][252] ([i915#12247]) +8 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-8/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format@pipe-a.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-tglu-1: NOTRUN -> [SKIP][253] ([i915#12247]) +4 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#12247]) +5 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-12/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25:
- shard-tglu: NOTRUN -> [SKIP][255] ([i915#12247] / [i915#6953])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-4/igt@kms_plane_scaling@planes-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#12247] / [i915#6953]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#12247]) +3 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
- shard-tglu: NOTRUN -> [SKIP][258] ([i915#12247]) +3 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-4/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#12247] / [i915#6953])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-15/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-dg1: NOTRUN -> [SKIP][260] ([i915#12247] / [i915#12504]) +2 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-15/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][261] ([i915#12247] / [i915#6953])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#5354])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-2/igt@kms_pm_backlight@bad-brightness.html
- shard-tglu: NOTRUN -> [SKIP][263] ([i915#9812]) +1 other test skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-5/igt@kms_pm_backlight@bad-brightness.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_12025/shard-tglu-1/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: [PASS][265] -> [FAIL][266] ([i915#9295])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-tglu-5/igt@kms_pm_dc@dc6-dpms.html
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#9685])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][268] ([i915#9519])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@fences:
- shard-dg1: NOTRUN -> [SKIP][269] ([i915#4077]) +6 other tests skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-14/igt@kms_pm_rpm@fences.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: [PASS][270] -> [SKIP][271] ([i915#9519]) +2 other tests skip
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@basic-crc-hybrid:
- shard-tglu: NOTRUN -> [SKIP][272] ([i915#6524])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-9/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_prime@basic-crc-vgem:
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#6524])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-13/igt@kms_prime@basic-crc-vgem.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-dg2: NOTRUN -> [SKIP][274] ([i915#11520]) +8 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf:
- shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#11520]) +2 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#12316])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][277] ([i915#11520]) +2 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-6/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#11520]) +2 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-4/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#11520]) +6 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-16/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-snb: NOTRUN -> [SKIP][280] ([i915#11520]) +1 other test skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-snb4/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][281] ([i915#9683])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-4/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-primary-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#1072] / [i915#9732]) +16 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-10/igt@kms_psr@fbc-psr-primary-mmap-cpu.html
* igt@kms_psr@fbc-psr2-primary-page-flip@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#9688]) +3 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-2/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#9732]) +11 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#1072] / [i915#9732]) +12 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-2/igt@kms_psr@pr-sprite-render.html
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#1072] / [i915#9732]) +10 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-12/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr@psr2-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#9732]) +19 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-4/igt@kms_psr@psr2-cursor-plane-onoff.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][288] ([i915#11131] / [i915#4235])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-6/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#5289])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#5289])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-tglu: NOTRUN -> [SKIP][291] ([i915#3555]) +7 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][292] ([i915#12231]) +1 other test abort
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-1/igt@kms_selftest@drm_framebuffer.html
- shard-tglu-1: NOTRUN -> [ABORT][293] ([i915#12231]) +1 other test abort
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-1/igt@kms_selftest@drm_framebuffer.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#3555]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-7/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg1: NOTRUN -> [SKIP][295] ([i915#2437])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-13/igt@kms_writeback@writeback-fb-id.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg1: NOTRUN -> [SKIP][296] ([i915#2433])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-16/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@most-busy-check-all:
- shard-rkl: [PASS][297] -> [FAIL][298] ([i915#4349]) +1 other test fail
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-rkl-2/igt@perf_pmu@most-busy-check-all.html
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-4/igt@perf_pmu@most-busy-check-all.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][299] ([i915#8516])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-2/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-dg1: NOTRUN -> [SKIP][300] ([i915#8516])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-19/igt@perf_pmu@rc6@other-idle-gt0.html
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#8516])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-2/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-write:
- shard-dg1: NOTRUN -> [SKIP][302] ([i915#3708]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-13/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-flip-hang:
- shard-rkl: NOTRUN -> [SKIP][303] ([i915#3708])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-2/igt@prime_vgem@fence-flip-hang.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][304] ([i915#3708]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-4/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-tglu: NOTRUN -> [SKIP][305] ([i915#9917])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-8/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#9917]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-5/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][307] ([i915#4818])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-16/igt@tools_test@sysfs_l3_parity.html
- shard-mtlp: NOTRUN -> [SKIP][308] ([i915#4818])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-8/igt@tools_test@sysfs_l3_parity.html
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#4818])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-4/igt@tools_test@sysfs_l3_parity.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- {shard-dg2-9}: [INCOMPLETE][310] ([i915#7297]) -> [PASS][311]
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-9/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-9/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-dg2: [INCOMPLETE][312] ([i915#12353]) -> [PASS][313] +1 other test pass
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-11/igt@gem_ctx_isolation@preservation-s3.html
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-10/igt@gem_ctx_isolation@preservation-s3.html
- shard-dg1: [INCOMPLETE][314] ([i915#12353]) -> [PASS][315] +1 other test pass
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-19/igt@gem_ctx_isolation@preservation-s3.html
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-13/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_persistence@hostile:
- shard-tglu: [FAIL][316] ([i915#11980] / [i915#12580]) -> [PASS][317]
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-tglu-5/igt@gem_ctx_persistence@hostile.html
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-9/igt@gem_ctx_persistence@hostile.html
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][318] ([i915#11713]) -> [PASS][319]
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-tglu-5/igt@gem_exec_big@single.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-2/igt@gem_exec_big@single.html
* igt@i915_pm_rpm@system-suspend:
- shard-dg1: [DMESG-WARN][320] ([i915#4423]) -> [PASS][321] +2 other tests pass
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-16/igt@i915_pm_rpm@system-suspend.html
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-15/igt@i915_pm_rpm@system-suspend.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-rkl: [INCOMPLETE][322] ([i915#4817]) -> [PASS][323]
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-rkl-3/igt@i915_suspend@basic-s3-without-i915.html
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg1: [FAIL][324] ([i915#5956]) -> [PASS][325]
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-17/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-12/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1:
- shard-mtlp: [FAIL][326] ([i915#11808] / [i915#5956]) -> [PASS][327] +1 other test pass
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-mtlp: [FAIL][328] ([i915#2122]) -> [PASS][329] +1 other test pass
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-5/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1:
- shard-mtlp: [FAIL][330] ([i915#11989]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-1/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-5/igt@kms_flip@flip-vs-absolute-wf_vblank@b-edp1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1:
- shard-rkl: [FAIL][332] ([i915#2122]) -> [PASS][333] +2 other tests pass
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-rkl-7/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-4/igt@kms_flip@flip-vs-absolute-wf_vblank@b-hdmi-a1.html
* igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1:
- shard-tglu: [FAIL][334] ([i915#2122]) -> [PASS][335] +3 other tests pass
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-tglu-8/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-4/igt@kms_flip@flip-vs-blocking-wf-vblank@c-hdmi-a1.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-dg2: [FAIL][336] ([i915#2122]) -> [PASS][337]
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-4/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-6/igt@kms_flip@wf_vblank-ts-check-interruptible.html
- shard-dg1: [FAIL][338] ([i915#12517] / [i915#2122]) -> [PASS][339]
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-17/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-19/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a4:
- shard-dg1: [FAIL][340] ([i915#2122]) -> [PASS][341]
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-17/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a4.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-19/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a4.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-snb: [SKIP][342] -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg2: [SKIP][344] ([i915#433]) -> [PASS][345]
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-7/igt@kms_hdmi_inject@inject-audio.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-7/igt@kms_hdmi_inject@inject-audio.html
- shard-dg1: [SKIP][346] ([i915#433]) -> [PASS][347]
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-16/igt@kms_hdmi_inject@inject-audio.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-14/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: [SKIP][348] ([i915#3555] / [i915#8228]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-3/igt@kms_hdr@static-toggle-dpms.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-10/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [SKIP][350] ([i915#9340]) -> [PASS][351]
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-1/igt@kms_pm_lpsp@kms-lpsp.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][352] ([i915#9519]) -> [PASS][353] +1 other test pass
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-mtlp: [FAIL][354] ([i915#9196]) -> [PASS][355] +1 other test pass
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-3/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_vrr@negative-basic:
- shard-mtlp: [FAIL][356] ([i915#10393]) -> [PASS][357] +1 other test pass
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-6/igt@kms_vrr@negative-basic.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-2/igt@kms_vrr@negative-basic.html
* igt@perf_pmu@busy-accuracy-98@rcs0:
- shard-tglu: [FAIL][358] ([i915#12513] / [i915#4349]) -> [PASS][359] +1 other test pass
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-tglu-3/igt@perf_pmu@busy-accuracy-98@rcs0.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-tglu-2/igt@perf_pmu@busy-accuracy-98@rcs0.html
* igt@perf_pmu@busy-idle-check-all@ccs0:
- shard-mtlp: [FAIL][360] ([i915#4349]) -> [PASS][361] +3 other tests pass
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-mtlp-4/igt@perf_pmu@busy-idle-check-all@ccs0.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-mtlp-1/igt@perf_pmu@busy-idle-check-all@ccs0.html
#### Warnings ####
* igt@device_reset@unbind-reset-rebind:
- shard-dg1: [ABORT][362] ([i915#11814]) -> [ABORT][363] ([i915#11814] / [i915#11815])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs:
- shard-dg1: [SKIP][364] ([i915#4423] / [i915#6095]) -> [SKIP][365] ([i915#6095])
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-16/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-12/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: [SKIP][366] ([i915#9424]) -> [TIMEOUT][367] ([i915#7173])
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-5/igt@kms_content_protection@lic-type-0.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-10/igt@kms_content_protection@lic-type-0.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-dg1: [SKIP][368] ([i915#9934]) -> [SKIP][369] ([i915#4423] / [i915#9934])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-15/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-14/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: [SKIP][370] ([i915#10433] / [i915#3458]) -> [SKIP][371] ([i915#3458])
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite:
- shard-dg1: [SKIP][372] ([i915#3458] / [i915#4423]) -> [SKIP][373] ([i915#3458])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg1: [SKIP][374] -> [SKIP][375] ([i915#1187])
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-16/igt@kms_hdr@brightness-with-hdr.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-rkl: [SKIP][376] ([i915#3361]) -> [FAIL][377] ([i915#9295])
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-rkl-6/igt@kms_pm_dc@dc6-dpms.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-rkl-5/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_psr@pr-cursor-mmap-cpu:
- shard-dg1: [SKIP][378] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][379] ([i915#1072] / [i915#9732])
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8094/shard-dg1-17/igt@kms_psr@pr-cursor-mmap-cpu.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/shard-dg1-12/igt@kms_psr@pr-cursor-mmap-cpu.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10393]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10393
[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#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887
[i915#11131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11131
[i915#11441]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11441
[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#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703
[i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#11808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11808
[i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814
[i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#11980]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11980
[i915#11989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11989
[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#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12353]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394
[i915#12412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12412
[i915#12450]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12450
[i915#12504]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12504
[i915#12513]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12513
[i915#12517]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12517
[i915#12520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12520
[i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543
[i915#12548]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12548
[i915#12558]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12558
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12580]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12580
[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#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[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#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[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#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#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936
[i915#3966]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3966
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[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#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/433
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213
[i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#79]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/79
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8806
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9196
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311
[i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9846
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8094 -> IGTPW_12025
CI-20190529: 20190529
CI_DRM_15627: 0a6cc4357ae4d824f909468ca1deed28ae5ac96f @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12025: d26990c0dd094a9a5ebb796e0ac84a357b5c20d3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8094: 19b8958a209f1ea14a3ae06b31d76179fed5733a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12025/index.html
[-- Attachment #2: Type: text/html, Size: 123304 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ CI.xeFULL: failure for lib/amdgpu: fix ring schedule issue
2024-11-04 6:57 [PATCH i-g-t] lib/amdgpu: fix ring schedule issue Jesse.zhang@amd.com
` (3 preceding siblings ...)
2024-11-05 10:44 ` ✗ Fi.CI.IGT: failure for " Patchwork
@ 2024-11-05 13:47 ` Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2024-11-05 13:47 UTC (permalink / raw)
To: Jesse.zhang@amd.com; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 92052 bytes --]
== Series Details ==
Series: lib/amdgpu: fix ring schedule issue
URL : https://patchwork.freedesktop.org/series/140862/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8094_full -> XEIGTPW_12025_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12025_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12025_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_12025_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@blocking-wf_vblank@a-edp1:
- shard-lnl: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-4/igt@kms_flip@blocking-wf_vblank@a-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-8/igt@kms_flip@blocking-wf_vblank@a-edp1.html
* igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible:
- shard-bmg: [PASS][3] -> [INCOMPLETE][4] +1 other test incomplete
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_plane_lowres@tiling-x@pipe-a-dp-5:
- shard-dg2-set2: NOTRUN -> [DMESG-WARN][5] +1 other test dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-466/igt@kms_plane_lowres@tiling-x@pipe-a-dp-5.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-lnl: [PASS][6] -> [DMESG-WARN][7] +1 other test dmesg-warn
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-8/igt@kms_pm_rpm@dpms-lpsp.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-8/igt@kms_pm_rpm@dpms-lpsp.html
New tests
---------
New tests have been introduced between XEIGT_8094_full and XEIGTPW_12025_full:
### New IGT tests (42) ###
* igt@kms_color@ctm-0-50@pipe-d-dp-5:
- Statuses : 1 pass(s)
- Exec time: [1.28] s
* igt@kms_display_modes@extended-mode-basic@pipe-a-dp-5-pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.66] s
* igt@kms_display_modes@extended-mode-basic@pipe-a-dp-5-pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.64] s
* igt@kms_display_modes@extended-mode-basic@pipe-a-dp-5-pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.65] s
* igt@kms_display_modes@extended-mode-basic@pipe-a-hdmi-a-6-pipe-b-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.51] s
* igt@kms_display_modes@extended-mode-basic@pipe-a-hdmi-a-6-pipe-c-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.62] s
* igt@kms_display_modes@extended-mode-basic@pipe-a-hdmi-a-6-pipe-d-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.66] s
* igt@kms_display_modes@extended-mode-basic@pipe-b-dp-5-pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.67] s
* igt@kms_display_modes@extended-mode-basic@pipe-b-dp-5-pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.63] s
* igt@kms_display_modes@extended-mode-basic@pipe-b-dp-5-pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.63] s
* igt@kms_display_modes@extended-mode-basic@pipe-b-hdmi-a-6-pipe-a-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.64] s
* igt@kms_display_modes@extended-mode-basic@pipe-b-hdmi-a-6-pipe-c-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.66] s
* igt@kms_display_modes@extended-mode-basic@pipe-b-hdmi-a-6-pipe-d-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.62] s
* igt@kms_display_modes@extended-mode-basic@pipe-c-dp-5-pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.63] s
* igt@kms_display_modes@extended-mode-basic@pipe-c-dp-5-pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.60] s
* igt@kms_display_modes@extended-mode-basic@pipe-c-dp-5-pipe-d-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.62] s
* igt@kms_display_modes@extended-mode-basic@pipe-c-hdmi-a-6-pipe-a-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.64] s
* igt@kms_display_modes@extended-mode-basic@pipe-c-hdmi-a-6-pipe-b-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.64] s
* igt@kms_display_modes@extended-mode-basic@pipe-c-hdmi-a-6-pipe-d-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.64] s
* igt@kms_display_modes@extended-mode-basic@pipe-d-dp-5-pipe-a-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.68] s
* igt@kms_display_modes@extended-mode-basic@pipe-d-dp-5-pipe-b-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.64] s
* igt@kms_display_modes@extended-mode-basic@pipe-d-dp-5-pipe-c-hdmi-a-6:
- Statuses : 1 pass(s)
- Exec time: [0.62] s
* igt@kms_display_modes@extended-mode-basic@pipe-d-hdmi-a-6-pipe-a-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.67] s
* igt@kms_display_modes@extended-mode-basic@pipe-d-hdmi-a-6-pipe-b-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.63] s
* igt@kms_display_modes@extended-mode-basic@pipe-d-hdmi-a-6-pipe-c-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.60] s
* igt@kms_flip@2x-dpms-vs-vblank-race@ab-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [2.48] s
* igt@kms_flip@2x-dpms-vs-vblank-race@ac-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [2.22] s
* igt@kms_flip@2x-dpms-vs-vblank-race@ad-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [2.28] s
* igt@kms_flip@2x-dpms-vs-vblank-race@bc-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [2.45] s
* igt@kms_flip@2x-dpms-vs-vblank-race@bd-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [2.42] s
* igt@kms_flip@2x-dpms-vs-vblank-race@cd-hdmi-a6-dp5:
- Statuses : 1 pass(s)
- Exec time: [2.30] s
* igt@kms_flip@plain-flip-fb-recreate@d-dp5:
- Statuses : 1 pass(s)
- Exec time: [4.26] s
* igt@kms_flip@wf_vblank-ts-check@d-dp5:
- Statuses : 1 pass(s)
- Exec time: [4.35] s
* igt@kms_invalid_mode@clock-too-high@pipe-d-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.00] s
* igt@kms_setmode@clone-exclusive-crtc@pipe-a-hdmi-a-6-pipe-b-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_setmode@clone-exclusive-crtc@pipe-b-hdmi-a-6-pipe-a-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.25] s
* igt@kms_setmode@invalid-clone-single-crtc-stealing@pipe-a-hdmi-a-6-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.45] s
* igt@kms_setmode@invalid-clone-single-crtc-stealing@pipe-b-hdmi-a-6-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.46] s
* igt@kms_vblank@query-busy-hang@pipe-d-dp-5:
- Statuses : 1 pass(s)
- Exec time: [2.41] s
* igt@kms_vblank@ts-continuation-dpms-rpm@pipe-d-dp-5:
- Statuses : 1 pass(s)
- Exec time: [0.65] s
* igt@kms_vblank@ts-continuation-suspend@pipe-d-dp-5:
- Statuses : 1 pass(s)
- Exec time: [1.73] s
* igt@kms_vblank@wait-forked-busy-hang@pipe-d-dp-5:
- Statuses : 1 pass(s)
- Exec time: [2.41] s
Known issues
------------
Here are the changes found in XEIGTPW_12025_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@hotrebind:
- shard-bmg: [PASS][8] -> [SKIP][9] ([Intel XE#1885])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-6/igt@core_hotunplug@hotrebind.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@core_hotunplug@hotrebind.html
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#1885])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@core_hotunplug@hotrebind.html
* igt@kms_addfb_basic@bad-pitch-999:
- shard-bmg: [PASS][11] -> [SKIP][12] ([Intel XE#3007]) +12 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-8/igt@kms_addfb_basic@bad-pitch-999.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_addfb_basic@bad-pitch-999.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#873])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-433/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-dg2-set2: [PASS][14] -> [SKIP][15] ([Intel XE#2890]) +2 other tests skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-435/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#316])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-464/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0:
- shard-bmg: [PASS][17] -> [SKIP][18] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
- shard-dg2-set2: [PASS][19] -> [SKIP][20] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2327]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-6/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#607])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-433/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#610])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: NOTRUN -> [SKIP][24] ([Intel XE#1124]) +8 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-464/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#367]) +6 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2314] / [Intel XE#2894])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][28] ([Intel XE#2890])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html
* igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-dp-5:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#455] / [Intel XE#787]) +23 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-466/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-dp-5.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][30] ([Intel XE#2907]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#787]) +79 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2887]) +3 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][33] ([Intel XE#1195])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@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: [PASS][34] -> [INCOMPLETE][35] ([Intel XE#1195] / [Intel XE#3113])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6.html
* igt@kms_cdclk@plane-scaling:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2724])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#1152]) +3 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-433/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-max:
- shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#306])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-466/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#373]) +7 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-434/igt@kms_chamelium_edid@hdmi-edid-change-during-hibernate.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2252]) +1 other test skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-5/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_color@ctm-negative@pipe-b-edp-1:
- shard-lnl: [PASS][41] -> [DMESG-WARN][42] ([Intel XE#2929]) +1 other test dmesg-warn
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-1/igt@kms_color@ctm-negative@pipe-b-edp-1.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-7/igt@kms_color@ctm-negative@pipe-b-edp-1.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: NOTRUN -> [FAIL][43] ([Intel XE#1178]) +1 other test fail
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-463/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: NOTRUN -> [FAIL][44] ([Intel XE#1188]) +1 other test fail
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-466/igt@kms_content_protection@uevent.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2286])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions:
- shard-lnl: [PASS][46] -> [FAIL][47] ([Intel XE#1541])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-1/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-4/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#776])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#701])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-433/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@psr2:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#1135])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-466/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3:
- shard-bmg: [PASS][51] -> [FAIL][52] ([Intel XE#2882]) +1 other test fail
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-7/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][53] -> [FAIL][54] ([Intel XE#301])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-464/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html
* igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3:
- shard-bmg: [PASS][55] -> [INCOMPLETE][56] ([Intel XE#2597]) +1 other test incomplete
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-8/igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend@cd-dp2-hdmi-a3.html
* igt@kms_flip@blocking-wf_vblank:
- shard-lnl: [PASS][57] -> [FAIL][58] ([Intel XE#3149] / [Intel XE#886]) +1 other test fail
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-4/igt@kms_flip@blocking-wf_vblank.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-8/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1:
- shard-lnl: [PASS][59] -> [FAIL][60] ([Intel XE#886]) +7 other tests fail
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-1/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-8/igt@kms_flip@flip-vs-absolute-wf_vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2:
- shard-bmg: [PASS][61] -> [FAIL][62] ([Intel XE#301]) +6 other tests fail
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html
* igt@kms_flip@flip-vs-suspend@d-dp4:
- shard-dg2-set2: NOTRUN -> [ABORT][63] ([Intel XE#2625]) +1 other test abort
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-432/igt@kms_flip@flip-vs-suspend@d-dp4.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2293] / [Intel XE#2380])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-5/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-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2293]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#455]) +17 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#651]) +24 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-bmg: NOTRUN -> [FAIL][68] ([Intel XE#2333]) +1 other test fail
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2311]) +5 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#653]) +26 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2313]) +5 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [PASS][73] -> [SKIP][74] ([Intel XE#1503])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#2927])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20:
- shard-dg2-set2: [PASS][76] -> [SKIP][77] ([Intel XE#2423] / [i915#2575]) +9 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-433/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: [PASS][78] -> [FAIL][79] ([Intel XE#718])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-2/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][80] -> [FAIL][81] ([Intel XE#1430])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-3/igt@kms_pm_dc@dc6-psr.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-8/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2-set2: [PASS][82] -> [SKIP][83] ([Intel XE#2446])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-435/igt@kms_pm_rpm@dpms-lpsp.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@universal-planes:
- shard-lnl: [PASS][84] -> [DMESG-WARN][85] ([Intel XE#2042]) +1 other test dmesg-warn
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-1/igt@kms_pm_rpm@universal-planes.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-4/igt@kms_pm_rpm@universal-planes.html
* igt@kms_pm_rpm@universal-planes@plane-68:
- shard-lnl: [PASS][86] -> [DMESG-WARN][87] ([Intel XE#3184])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-1/igt@kms_pm_rpm@universal-planes@plane-68.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-4/igt@kms_pm_rpm@universal-planes@plane-68.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#1489])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#1489]) +8 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-466/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr@fbc-pr-sprite-blt:
- shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-5/igt@kms_psr@fbc-pr-sprite-blt.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#2850] / [Intel XE#929]) +16 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-463/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#2939])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@bad-pixel-format:
- shard-dg2-set2: NOTRUN -> [SKIP][93] ([Intel XE#327]) +2 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-434/igt@kms_rotation_crc@bad-pixel-format.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#2423] / [i915#2575]) +4 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2329])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#1127])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#1435])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: NOTRUN -> [FAIL][98] ([Intel XE#1729])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1:
- shard-lnl: [PASS][99] -> [FAIL][100] ([Intel XE#899])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html
* igt@kms_vrr@max-min:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#1499])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_vrr@max-min.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#756]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-434/igt@kms_writeback@writeback-fb-id.html
* igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-434/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html
* igt@xe_eudebug_online@basic-breakpoint:
- shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2905])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-5/igt@xe_eudebug_online@basic-breakpoint.html
* igt@xe_eudebug_online@reset-with-attention:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#2905]) +7 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-463/igt@xe_eudebug_online@reset-with-attention.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-bmg: [PASS][106] -> [TIMEOUT][107] ([Intel XE#1473])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-8/igt@xe_evict@evict-beng-mixed-threads-large.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-5/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-bmg: [PASS][108] -> [TIMEOUT][109] ([Intel XE#1473] / [Intel XE#2472])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@xe_evict@evict-mixed-threads-large.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-5/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_exec_basic@many-execqueues-null:
- shard-bmg: [PASS][110] -> [SKIP][111] ([Intel XE#1130]) +26 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-7/igt@xe_exec_basic@many-execqueues-null.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@xe_exec_basic@many-execqueues-null.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind:
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2322]) +1 other test skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-rebind.html
* igt@xe_exec_basic@no-exec-basic-defer-bind:
- shard-dg2-set2: [PASS][113] -> [SKIP][114] ([Intel XE#1130]) +18 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-434/igt@xe_exec_basic@no-exec-basic-defer-bind.html
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@xe_exec_basic@no-exec-basic-defer-bind.html
* igt@xe_exec_fault_mode@many-basic-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][115] ([Intel XE#1130]) +3 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@xe_exec_fault_mode@many-basic-prefetch.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race:
- shard-bmg: [PASS][116] -> [FAIL][117] ([Intel XE#3160]) +1 other test fail
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-8/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-5/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm:
- shard-lnl: [PASS][118] -> [FAIL][119] ([Intel XE#3160]) +6 other tests fail
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-2/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-5/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-invalidate-race-imm.html
* igt@xe_exec_fault_mode@once-rebind-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#288]) +21 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@xe_exec_fault_mode@once-rebind-prefetch.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence:
- shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2360])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-433/igt@xe_exec_mix_modes@exec-simple-batch-store-dma-fence.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-lnl: [PASS][122] -> [FAIL][123] ([Intel XE#2514])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-8/igt@xe_oa@oa-regs-whitelisted.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-4/igt@xe_oa@oa-regs-whitelisted.html
- shard-bmg: [PASS][124] -> [FAIL][125] ([Intel XE#2514])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-6/igt@xe_oa@oa-regs-whitelisted.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-8/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_oa@oa-regs-whitelisted@ccs-0:
- shard-bmg: NOTRUN -> [FAIL][126] ([Intel XE#2514])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-8/igt@xe_oa@oa-regs-whitelisted@ccs-0.html
- shard-lnl: NOTRUN -> [FAIL][127] ([Intel XE#2514])
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-4/igt@xe_oa@oa-regs-whitelisted@ccs-0.html
* igt@xe_oa@syncs-userptr-wait-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#2541]) +3 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-433/igt@xe_oa@syncs-userptr-wait-cfg.html
* igt@xe_pm@d3cold-mocs:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#2284])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-463/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@s3-vm-bind-userptr:
- shard-dg2-set2: [PASS][130] -> [ABORT][131] ([Intel XE#1794]) +1 other test abort
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-433/igt@xe_pm@s3-vm-bind-userptr.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-432/igt@xe_pm@s3-vm-bind-userptr.html
* igt@xe_pm@s4-d3hot-basic-exec:
- shard-lnl: [PASS][132] -> [ABORT][133] ([Intel XE#1358] / [Intel XE#1607]) +1 other test abort
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-4/igt@xe_pm@s4-d3hot-basic-exec.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-2/igt@xe_pm@s4-d3hot-basic-exec.html
* igt@xe_pm@vram-d3cold-threshold:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#579])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@xe_pm@vram-d3cold-threshold.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#944]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-466/igt@xe_query@multigpu-query-topology.html
* igt@xe_wedged@wedged-mode-toggle:
- shard-lnl: [PASS][136] -> [DMESG-WARN][137] ([Intel XE#2910])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-2/igt@xe_wedged@wedged-mode-toggle.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-2/igt@xe_wedged@wedged-mode-toggle.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip:
- shard-lnl: [FAIL][138] ([Intel XE#3126]) -> [PASS][139] +1 other test pass
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-2/igt@kms_async_flips@alternate-sync-async-flip.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-8/igt@kms_async_flips@alternate-sync-async-flip.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [FAIL][140] ([Intel XE#911]) -> [PASS][141] +3 other tests pass
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_atomic_transition@modeset-transition-nonblocking-fencing:
- shard-lnl: [FAIL][142] ([Intel XE#1701]) -> [PASS][143] +1 other test pass
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-6/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-1/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2:
- shard-bmg: [FAIL][144] ([Intel XE#1426]) -> [PASS][145] +1 other test pass
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-dp-2.html
* igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: [SKIP][146] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][147] +4 other tests pass
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2-set2: [SKIP][148] ([Intel XE#2890]) -> [PASS][149] +5 other tests pass
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [SKIP][150] ([Intel XE#2351] / [Intel XE#2890]) -> [PASS][151]
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_cursor_crc@cursor-rapid-movement-64x64:
- shard-bmg: [SKIP][152] ([Intel XE#3007]) -> [PASS][153] +14 other tests pass
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_cursor_crc@cursor-rapid-movement-64x64.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-6/igt@kms_cursor_crc@cursor-rapid-movement-64x64.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [DMESG-WARN][154] ([Intel XE#877]) -> [PASS][155]
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size:
- shard-lnl: [FAIL][156] ([Intel XE#1541]) -> [PASS][157]
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-2/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-3/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2:
- shard-bmg: [FAIL][158] ([Intel XE#2882]) -> [PASS][159] +1 other test pass
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-5/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-7/igt@kms_flip@flip-vs-absolute-wf_vblank@a-dp2.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6:
- shard-dg2-set2: [FAIL][160] ([Intel XE#301]) -> [PASS][161]
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-464/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a6.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-bmg: [INCOMPLETE][162] ([Intel XE#2597]) -> [PASS][163] +1 other test pass
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-6/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-wf_vblank-interruptible:
- shard-lnl: [FAIL][164] ([Intel XE#886]) -> [PASS][165] +5 other tests pass
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-2/igt@kms_flip@flip-vs-wf_vblank-interruptible.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-7/igt@kms_flip@flip-vs-wf_vblank-interruptible.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-dg2-set2: [SKIP][166] ([Intel XE#2423] / [i915#2575]) -> [PASS][167] +12 other tests pass
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-433/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [FAIL][168] ([Intel XE#1430]) -> [PASS][169]
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@basic-pci-d3-state:
- shard-bmg: [SKIP][170] ([Intel XE#2446]) -> [PASS][171]
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_pm_rpm@basic-pci-d3-state.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_pm_rpm@basic-pci-d3-state.html
- shard-dg2-set2: [SKIP][172] ([Intel XE#2446]) -> [PASS][173]
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_pm_rpm@basic-pci-d3-state.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-464/igt@kms_pm_rpm@basic-pci-d3-state.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-lnl: [FAIL][174] ([Intel XE#899]) -> [PASS][175] +1 other test pass
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-1/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01:
- shard-dg2-set2: [ABORT][176] ([Intel XE#2625]) -> [PASS][177] +1 other test pass
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-464/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-vram01-vram01.html
* igt@xe_evict@evict-beng-threads-large:
- shard-bmg: [TIMEOUT][178] ([Intel XE#1473]) -> [PASS][179]
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-5/igt@xe_evict@evict-beng-threads-large.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-8/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_evict@evict-threads-large:
- shard-bmg: [TIMEOUT][180] ([Intel XE#1473] / [Intel XE#2472]) -> [PASS][181]
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-5/igt@xe_evict@evict-threads-large.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-8/igt@xe_evict@evict-threads-large.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm:
- shard-bmg: [SKIP][182] ([Intel XE#1130]) -> [PASS][183] +36 other tests pass
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-8/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html
* igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm:
- shard-lnl: [FAIL][184] ([Intel XE#3320]) -> [PASS][185]
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-6/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-1/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-race-imm.html
* igt@xe_exec_fault_mode@many-userptr-invalidate-race:
- shard-bmg: [FAIL][186] ([Intel XE#3160]) -> [PASS][187] +3 other tests pass
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html
* igt@xe_exec_queue_property@invalid-property:
- shard-dg2-set2: [SKIP][188] ([Intel XE#1130]) -> [PASS][189] +23 other tests pass
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@xe_exec_queue_property@invalid-property.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-433/igt@xe_exec_queue_property@invalid-property.html
* igt@xe_exec_reset@gt-reset-stress:
- shard-bmg: [DMESG-WARN][190] -> [PASS][191]
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-5/igt@xe_exec_reset@gt-reset-stress.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-7/igt@xe_exec_reset@gt-reset-stress.html
* igt@xe_pm@s2idle-basic-exec:
- shard-dg2-set2: [ABORT][192] ([Intel XE#1358]) -> [PASS][193] +1 other test pass
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@xe_pm@s2idle-basic-exec.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-433/igt@xe_pm@s2idle-basic-exec.html
* igt@xe_pm@s3-multiple-execs:
- shard-dg2-set2: [ABORT][194] ([Intel XE#1358] / [Intel XE#1794]) -> [PASS][195]
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@xe_pm@s3-multiple-execs.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-466/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pm_residency@toggle-gt-c6:
- shard-lnl: [FAIL][196] ([Intel XE#958]) -> [PASS][197]
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-lnl-8/igt@xe_pm_residency@toggle-gt-c6.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-lnl-4/igt@xe_pm_residency@toggle-gt-c6.html
#### Warnings ####
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-bmg: [SKIP][198] ([Intel XE#3007]) -> [SKIP][199] ([Intel XE#2385])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-bmg: [SKIP][200] ([Intel XE#2327]) -> [SKIP][201] ([Intel XE#2231] / [Intel XE#2890])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-6/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
- shard-dg2-set2: [SKIP][202] ([Intel XE#316]) -> [SKIP][203] ([Intel XE#2351] / [Intel XE#2890])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-435/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-bmg: [SKIP][204] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][205] ([Intel XE#2327])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
- shard-dg2-set2: [SKIP][206] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][207] ([Intel XE#316])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-180:
- shard-bmg: [SKIP][208] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][209] ([Intel XE#1124]) +1 other test skip
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-6/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][210] ([Intel XE#1124]) -> [SKIP][211] ([Intel XE#2890]) +2 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-463/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-bmg: [SKIP][212] ([Intel XE#1124]) -> [SKIP][213] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][214] ([Intel XE#2890]) -> [SKIP][215] ([Intel XE#1124])
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p:
- shard-bmg: [SKIP][216] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][217] ([Intel XE#3007])
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
- shard-dg2-set2: [SKIP][218] ([Intel XE#2191]) -> [SKIP][219] ([Intel XE#2423] / [i915#2575])
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-464/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: [SKIP][220] ([Intel XE#3007]) -> [SKIP][221] ([Intel XE#367])
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
- shard-dg2-set2: [SKIP][222] ([Intel XE#2423] / [i915#2575]) -> [SKIP][223] ([Intel XE#367])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-434/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-ccs:
- shard-bmg: [SKIP][224] ([Intel XE#2887]) -> [SKIP][225] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-8/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_ccs@bad-aux-stride-y-tiled-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs:
- shard-dg2-set2: [SKIP][226] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][227] ([Intel XE#2890])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-463/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: [SKIP][228] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][229] ([Intel XE#2887]) +3 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-5/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [SKIP][230] ([Intel XE#2351] / [Intel XE#2890]) -> [INCOMPLETE][231] ([Intel XE#1195])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs:
- shard-dg2-set2: [SKIP][232] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][233] ([Intel XE#2351] / [Intel XE#2890])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-434/igt@kms_ccs@random-ccs-data-yf-tiled-ccs.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_ccs@random-ccs-data-yf-tiled-ccs.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: [SKIP][234] ([Intel XE#3007]) -> [SKIP][235] ([Intel XE#2325])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_chamelium_color@ctm-0-25.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: [SKIP][236] ([Intel XE#306]) -> [SKIP][237] ([Intel XE#2423] / [i915#2575])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-463/igt@kms_chamelium_color@gamma.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_chamelium_color@gamma.html
- shard-bmg: [SKIP][238] ([Intel XE#2325]) -> [SKIP][239] ([Intel XE#3007])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-5/igt@kms_chamelium_color@gamma.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-bmg: [SKIP][240] ([Intel XE#3007]) -> [SKIP][241] ([Intel XE#2252]) +1 other test skip
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_chamelium_frames@hdmi-crc-single.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-6/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-bmg: [SKIP][242] ([Intel XE#2252]) -> [SKIP][243] ([Intel XE#3007]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: [SKIP][244] ([Intel XE#2423] / [i915#2575]) -> [SKIP][245] ([Intel XE#373]) +1 other test skip
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-after-hibernate:
- shard-dg2-set2: [SKIP][246] ([Intel XE#373]) -> [SKIP][247] ([Intel XE#2423] / [i915#2575])
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd-after-hibernate.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_chamelium_hpd@vga-hpd-after-hibernate.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: [TIMEOUT][248] -> [FAIL][249] ([Intel XE#1178]) +1 other test fail
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-6/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-7/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-set2: [SKIP][250] ([Intel XE#2423] / [i915#2575]) -> [SKIP][251] ([Intel XE#455]) +2 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_content_protection@lic-type-1.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-466/igt@kms_content_protection@lic-type-1.html
- shard-bmg: [SKIP][252] ([Intel XE#3007]) -> [SKIP][253] ([Intel XE#2341])
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_content_protection@lic-type-1.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-7/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-bmg: [FAIL][254] ([Intel XE#1178]) -> [SKIP][255] ([Intel XE#3007])
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-7/igt@kms_content_protection@srm.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_content_protection@srm.html
- shard-dg2-set2: [FAIL][256] ([Intel XE#1178]) -> [SKIP][257] ([Intel XE#2423] / [i915#2575])
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-466/igt@kms_content_protection@srm.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-dg2-set2: [SKIP][258] ([Intel XE#455]) -> [SKIP][259] ([Intel XE#2423] / [i915#2575])
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-433/igt@kms_cursor_crc@cursor-sliding-32x32.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-32x32.html
- shard-bmg: [SKIP][260] ([Intel XE#2320]) -> [SKIP][261] ([Intel XE#3007])
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-32x32.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-dg2-set2: [SKIP][262] ([Intel XE#2890]) -> [SKIP][263] ([Intel XE#455])
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: [SKIP][264] ([Intel XE#2380]) -> [SKIP][265] ([Intel XE#2231] / [Intel XE#2890])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-bmg: [SKIP][266] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][267] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
- shard-dg2-set2: [SKIP][268] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][269] ([Intel XE#455])
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][270] ([Intel XE#651]) -> [SKIP][271] ([Intel XE#2890])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][272] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][273] ([Intel XE#651])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: [FAIL][274] ([Intel XE#2333]) -> [SKIP][275] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][276] ([Intel XE#2231] / [Intel XE#2890]) -> [FAIL][277] ([Intel XE#2333]) +4 other tests fail
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff:
- shard-bmg: [SKIP][278] ([Intel XE#2311]) -> [SKIP][279] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff.html
- shard-dg2-set2: [SKIP][280] ([Intel XE#651]) -> [SKIP][281] ([Intel XE#2351] / [Intel XE#2890])
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][282] ([Intel XE#2890]) -> [SKIP][283] ([Intel XE#651]) +4 other tests skip
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary:
- shard-bmg: [SKIP][284] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][285] ([Intel XE#2311]) +6 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][286] ([Intel XE#2890]) -> [SKIP][287] ([Intel XE#653]) +3 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][288] ([Intel XE#2313]) -> [SKIP][289] ([Intel XE#2231] / [Intel XE#2890]) +2 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt:
- shard-dg2-set2: [SKIP][290] ([Intel XE#653]) -> [SKIP][291] ([Intel XE#2890])
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: [SKIP][292] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][293] ([Intel XE#2313]) +7 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-dg2-set2: [SKIP][294] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][295] ([Intel XE#653]) +2 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][296] ([Intel XE#653]) -> [SKIP][297] ([Intel XE#2351] / [Intel XE#2890]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-onoff.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2-set2: [FAIL][298] ([Intel XE#3312]) -> [SKIP][299] ([Intel XE#2423] / [i915#2575])
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-464/igt@kms_hdr@brightness-with-hdr.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_hdr@brightness-with-hdr.html
- shard-bmg: [FAIL][300] ([Intel XE#3312]) -> [SKIP][301] ([Intel XE#3007])
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-8/igt@kms_hdr@brightness-with-hdr.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: [SKIP][302] ([Intel XE#1439] / [Intel XE#3141]) -> [SKIP][303] ([Intel XE#2446])
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-6/igt@kms_pm_rpm@dpms-lpsp.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-dg2-set2: [SKIP][304] ([Intel XE#2890]) -> [SKIP][305] ([Intel XE#1489]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
- shard-bmg: [SKIP][306] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][307] ([Intel XE#1489]) +1 other test skip
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-bmg: [SKIP][308] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][309] ([Intel XE#2387])
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-7/igt@kms_psr2_su@frontbuffer-xrgb8888.html
- shard-dg2-set2: [SKIP][310] ([Intel XE#2890]) -> [SKIP][311] ([Intel XE#1122])
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_psr2_su@frontbuffer-xrgb8888.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-434/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-dg2-set2: [SKIP][312] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][313] ([Intel XE#2850] / [Intel XE#929])
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_psr@fbc-psr-no-drrs.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-464/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-bmg: [SKIP][314] ([Intel XE#2231] / [Intel XE#2890]) -> [SKIP][315] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_psr@fbc-psr2-primary-blt.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_psr@fbc-psr2-primary-blt.html
- shard-dg2-set2: [SKIP][316] ([Intel XE#2890]) -> [SKIP][317] ([Intel XE#2850] / [Intel XE#929])
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-blt.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][318] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][319] ([Intel XE#2890]) +1 other test skip
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-464/igt@kms_psr@psr2-sprite-plane-move.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_psr@psr2-sprite-plane-move.html
- shard-bmg: [SKIP][320] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][321] ([Intel XE#2231] / [Intel XE#2890]) +1 other test skip
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-5/igt@kms_psr@psr2-sprite-plane-move.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_psr@psr2-sprite-plane-move.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-bmg: [SKIP][322] ([Intel XE#3007]) -> [SKIP][323] ([Intel XE#2330])
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
- shard-dg2-set2: [SKIP][324] ([Intel XE#2423] / [i915#2575]) -> [SKIP][325] ([Intel XE#1127])
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: [SKIP][326] ([Intel XE#3007]) -> [SKIP][327] ([Intel XE#2413])
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_scaling_modes@scaling-mode-center.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][328] ([Intel XE#2509]) -> [SKIP][329] ([Intel XE#2426])
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
- shard-dg2-set2: [SKIP][330] ([Intel XE#1500]) -> [SKIP][331] ([Intel XE#362])
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-435/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-bmg: [DMESG-WARN][332] -> [SKIP][333] ([Intel XE#3007])
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-6/igt@kms_vblank@ts-continuation-dpms-suspend.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-bmg: [SKIP][334] ([Intel XE#3007]) -> [SKIP][335] ([Intel XE#1499])
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@kms_vrr@seamless-rr-switch-virtual.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-5/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-bmg: [SKIP][336] ([Intel XE#756]) -> [SKIP][337] ([Intel XE#3007])
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-6/igt@kms_writeback@writeback-check-output-xrgb2101010.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-dg2-set2: [SKIP][338] ([Intel XE#756]) -> [SKIP][339] ([Intel XE#2423] / [i915#2575])
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-435/igt@kms_writeback@writeback-check-output-xrgb2101010.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@xe_eudebug@basic-exec-queues:
- shard-bmg: [SKIP][340] ([Intel XE#1130]) -> [SKIP][341] ([Intel XE#2905]) +3 other tests skip
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@xe_eudebug@basic-exec-queues.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-5/igt@xe_eudebug@basic-exec-queues.html
* igt@xe_eudebug@basic-vm-bind-extended-discovery:
- shard-dg2-set2: [SKIP][342] ([Intel XE#1130]) -> [SKIP][343] ([Intel XE#2905]) +3 other tests skip
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@xe_eudebug@basic-vm-bind-extended-discovery.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@xe_eudebug@basic-vm-bind-extended-discovery.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: [SKIP][344] ([Intel XE#2905]) -> [SKIP][345] ([Intel XE#1130]) +1 other test skip
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-6/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug_online@single-step:
- shard-dg2-set2: [SKIP][346] ([Intel XE#2905]) -> [SKIP][347] ([Intel XE#1130])
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-435/igt@xe_eudebug_online@single-step.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@xe_eudebug_online@single-step.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-dg2-set2: [SKIP][348] ([Intel XE#1130]) -> [TIMEOUT][349] ([Intel XE#1473] / [Intel XE#402])
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-433/igt@xe_evict@evict-beng-mixed-many-threads-small.html
- shard-bmg: [SKIP][350] ([Intel XE#1130]) -> [TIMEOUT][351] ([Intel XE#1473])
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][352] ([Intel XE#1473]) -> [TIMEOUT][353] ([Intel XE#1473] / [Intel XE#2472])
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind:
- shard-bmg: [SKIP][354] ([Intel XE#2322]) -> [SKIP][355] ([Intel XE#1130])
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-rebind.html
* igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race:
- shard-bmg: [SKIP][356] ([Intel XE#1130]) -> [SKIP][357] ([Intel XE#2322])
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-bmg-4/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm:
- shard-dg2-set2: [SKIP][358] ([Intel XE#1130]) -> [SKIP][359] ([Intel XE#288]) +5 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-433/igt@xe_exec_fault_mode@many-bindexecqueue-userptr-imm.html
* igt@xe_exec_fault_mode@once-userptr-invalidate-prefetch:
- shard-dg2-set2: [SKIP][360] ([Intel XE#288]) -> [SKIP][361] ([Intel XE#1130]) +2 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-466/igt@xe_exec_fault_mode@once-userptr-invalidate-prefetch.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@xe_exec_fault_mode@once-userptr-invalidate-prefetch.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: [SKIP][362] ([Intel XE#2360]) -> [SKIP][363] ([Intel XE#1130])
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_oa@create-destroy-userspace-config:
- shard-dg2-set2: [SKIP][364] ([Intel XE#2541]) -> [SKIP][365] ([Intel XE#1130]) +1 other test skip
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@xe_oa@create-destroy-userspace-config.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-435/igt@xe_oa@create-destroy-userspace-config.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: [SKIP][366] ([Intel XE#1130]) -> [SKIP][367] ([Intel XE#2541]) +2 other tests skip
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8094/shard-dg2-432/igt@xe_oa@whitelisted-registers-userspace-config.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/shard-dg2-466/igt@xe_oa@whitelisted-registers-userspace-config.html
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[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#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1541
[Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607
[Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[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#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[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#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2625
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2910
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2929
[Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939
[Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#3126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3126
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[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#3160]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3160
[Intel XE#3184]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3184
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#3312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3312
[Intel XE#3320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3320
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[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#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[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#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[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#958]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/958
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8094 -> IGTPW_12025
IGTPW_12025: d26990c0dd094a9a5ebb796e0ac84a357b5c20d3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8094: 19b8958a209f1ea14a3ae06b31d76179fed5733a @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2159-0a6cc4357ae4d824f909468ca1deed28ae5ac96f: 0a6cc4357ae4d824f909468ca1deed28ae5ac96f
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12025/index.html
[-- Attachment #2: Type: text/html, Size: 115787 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-11-05 13:47 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-04 6:57 [PATCH i-g-t] lib/amdgpu: fix ring schedule issue Jesse.zhang@amd.com
2024-11-04 19:45 ` ✓ Fi.CI.BAT: success for " Patchwork
2024-11-04 20:46 ` ✓ CI.xeBAT: " Patchwork
2024-11-04 23:21 ` [PATCH i-g-t] " vitaly prosyak
2024-11-05 10:44 ` ✗ Fi.CI.IGT: failure for " Patchwork
2024-11-05 13:47 ` ✗ 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