* [PATCH i-g-t v3 1/3] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test
@ 2026-07-24 6:48 Jesse Zhang
2026-07-24 6:48 ` [PATCH i-g-t V3 2/3] tests/amdgpu/amd_deadlock: add gfx user-queue priv-fault " Jesse Zhang
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Jesse Zhang @ 2026-07-24 6:48 UTC (permalink / raw)
To: igt-dev
Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig, Jesse Zhang,
Jesse Zhang
Submit a gfx user-queue job whose only packet is a WAIT_REG_MEM that never
completes (polls a resident BO for a value that never arrives). The queue
hangs with no fault, so the driver recovers it with a per-queue reset. Add
it as the amdgpu-deadlock-gfx-umq subtest, gated on AMDGPU_ENABLE_USERQTEST
and per-queue reset capability.
v2: refactor deadlock helper to use standard bit macros (Vitaly)
Co-developed-by: Vitaly Prosyak <vitaly.prosyak@amd.com>
Signed-off-by: Jesse Zhang <jesse.zhang@amd.com>
---
lib/amdgpu/amd_deadlock_helpers.c | 100 ++++++++++++++++++++++++++++--
lib/amdgpu/amd_deadlock_helpers.h | 4 ++
tests/amdgpu/amd_deadlock.c | 9 +++
3 files changed, 109 insertions(+), 4 deletions(-)
diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c
index 06c577085..4395fc527 100644
--- a/lib/amdgpu/amd_deadlock_helpers.c
+++ b/lib/amdgpu/amd_deadlock_helpers.c
@@ -14,6 +14,7 @@
#include "amd_memory.h"
#include "amd_deadlock_helpers.h"
#include "lib/amdgpu/amd_command_submission.h"
+#include "ioctl_wrappers.h"
#define MAX_JOB_COUNT 20
@@ -150,8 +151,8 @@ amdgpu_wait_memory(amdgpu_device_handle device_handle, unsigned int ip_type, uin
WAIT_REG_MEM_ENGINE(0)/* me */));
}
- base_cmd->emit(base_cmd, (ib_result_mc_address + MEMORY_OFFSET * 4) & 0xfffffffc);
- base_cmd->emit(base_cmd, ((ib_result_mc_address + MEMORY_OFFSET * 4) >> 32) & 0xffffffff);
+ base_cmd->emit(base_cmd, lower_32_bits(ib_result_mc_address + MEMORY_OFFSET * 4) & 0xfffffffc);
+ base_cmd->emit(base_cmd, upper_32_bits(ib_result_mc_address + MEMORY_OFFSET * 4));
base_cmd->emit(base_cmd, 0);/* reference value */
base_cmd->emit(base_cmd, 0xffffffff); /* and mask */
@@ -412,6 +413,97 @@ bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error,
}
}
+/*
+ * Emit a WAIT_REG_MEM that waits forever: poll bo_mc (initialised to 0) for a
+ * value != 0. This is a valid packet that never completes, i.e. a clean hang
+ * with no page fault, so it can be recovered by a per-queue reset.
+ */
+static void gfx_ring_emit_wait_reg_mem_hang(struct amdgpu_ring_context *ring_context)
+{
+ uint32_t i = 0;
+
+ ring_context->pm4[i++] = PACKET3(PACKET3_WAIT_REG_MEM, 5);
+ ring_context->pm4[i++] = WAIT_REG_MEM_MEM_SPACE(1) | /* memory */
+ WAIT_REG_MEM_FUNCTION(4) | /* != */
+ WAIT_REG_MEM_ENGINE(0); /* me */
+ ring_context->pm4[i++] = lower_32_bits(ring_context->bo_mc) & 0xfffffffc;
+ ring_context->pm4[i++] = upper_32_bits(ring_context->bo_mc);
+ ring_context->pm4[i++] = 0; /* reference value */
+ ring_context->pm4[i++] = 0xffffffff; /* and mask */
+ ring_context->pm4[i++] = 0x00000004; /* poll interval */
+ ring_context->pm4_dw = i;
+}
+
+/*
+ * Submit a single job that hangs the queue on a WAIT_REG_MEM (no fault) and
+ * let per-queue reset recover it. Uses the normal (synchronised) submit path
+ * so the CP actually runs the packet.
+ */
+void amdgpu_hang_ring_helper(amdgpu_device_handle device_handle, unsigned int ip_type,
+ struct pci_addr *pci, bool user_queue)
+{
+ const struct amdgpu_ip_block_version *ip_block;
+ const int write_length = 128;
+ const int pm4_dw = 256;
+ struct amdgpu_ring_context *ring_context;
+ int r = 0;
+
+ ip_block = get_ip_block(device_handle, ip_type);
+ ring_context = calloc(1, sizeof(*ring_context));
+ igt_assert(ring_context);
+
+ if (user_queue) {
+ ip_block->funcs->userq_create(device_handle, ring_context, ip_type);
+ } else {
+ r = amdgpu_cs_ctx_create(device_handle, &ring_context->context_handle);
+ igt_assert_eq(r, 0);
+ }
+
+ ring_context->write_length = write_length;
+ 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 = 0;
+ ring_context->user_queue = user_queue;
+ igt_assert(ring_context->pm4);
+
+ r = amdgpu_bo_alloc_and_map_sync(device_handle,
+ ring_context->write_length * sizeof(uint32_t),
+ 4096, AMDGPU_GEM_DOMAIN_GTT,
+ AMDGPU_GEM_CREATE_CPU_GTT_USWC,
+ AMDGPU_VM_MTYPE_UC,
+ &ring_context->bo,
+ (void **)&ring_context->bo_cpu,
+ &ring_context->bo_mc,
+ &ring_context->va_handle,
+ ring_context->timeline_syncobj_handle,
+ ++ring_context->point, user_queue);
+ igt_assert_eq(r, 0);
+ if (user_queue) {
+ r = amdgpu_timeline_syncobj_wait(device_handle,
+ ring_context->timeline_syncobj_handle,
+ ring_context->point);
+ igt_assert_eq(r, 0);
+ }
+
+ /* the memory the queue polls stays 0, so the queue hangs */
+ memset((void *)ring_context->bo_cpu, 0, ring_context->write_length * sizeof(uint32_t));
+ ring_context->resources[0] = ring_context->bo;
+
+ gfx_ring_emit_wait_reg_mem_hang(ring_context);
+
+ amdgpu_test_exec_cs_helper(device_handle, ip_block->type, ring_context, 0);
+
+ amdgpu_bo_unmap_and_free(ring_context->bo, ring_context->va_handle, ring_context->bo_mc,
+ ring_context->write_length * sizeof(uint32_t));
+ if (user_queue) {
+ ip_block->funcs->userq_destroy(device_handle, ring_context, ip_type);
+ } else {
+ free(ring_context->pm4);
+ free(ring_context);
+ }
+}
+
#define MAX_DMABUF_COUNT 0x20000
#define MAX_DWORD_COUNT 256
@@ -481,10 +573,10 @@ amdgpu_hang_sdma_helper(amdgpu_device_handle device_handle, uint8_t hang_type)
/* override addr of buf1 and buf 2 in order to copy from buf2 to buf1 */
base_cmd->emit_at_offset(base_cmd, (0xffffffff & ring_context->bo_mc2), (offset - 4));
base_cmd->emit_at_offset(base_cmd,
- ((0xffffffff00000000 & ring_context->bo_mc2) >> 32), (offset - 3));
+ upper_32_bits(ring_context->bo_mc2), (offset - 3));
base_cmd->emit_at_offset(base_cmd, (0xffffffff & ring_context->bo_mc), (offset - 2));
base_cmd->emit_at_offset(base_cmd,
- ((0xffffffff00000000 & ring_context->bo_mc) >> 32), (offset - 1));
+ upper_32_bits(ring_context->bo_mc), (offset - 1));
ring_context->pm4 += ring_context->pm4_dw;
}
/* restore pm4 */
diff --git a/lib/amdgpu/amd_deadlock_helpers.h b/lib/amdgpu/amd_deadlock_helpers.h
index c46ebb67b..accbf2e41 100644
--- a/lib/amdgpu/amd_deadlock_helpers.h
+++ b/lib/amdgpu/amd_deadlock_helpers.h
@@ -33,5 +33,9 @@ bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd_erro
void
amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t hang_type, struct pci_addr *pci);
+
+void
+amdgpu_hang_ring_helper(amdgpu_device_handle device_handle, unsigned int ip_type,
+ struct pci_addr *pci, bool user_queue);
#endif
diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c
index 5325c0ade..118948992 100644
--- a/tests/amdgpu/amd_deadlock.c
+++ b/tests/amdgpu/amd_deadlock.c
@@ -246,6 +246,15 @@ int igt_main()
amdgpu_wait_memory_helper(device, AMDGPU_HW_IP_DMA, &pci, true);
}
}
+
+ igt_describe("Test-per-queue-reset-of-a-cleanly-hung-gfx-user-queue");
+ igt_subtest_with_dynamic("amdgpu-deadlock-gfx-umq") {
+ if (enable_test && userq_arr_cap[AMD_IP_GFX] &&
+ is_reset_enable(AMD_IP_GFX, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) {
+ igt_dynamic_f("amdgpu-deadlock-gfx-umq")
+ amdgpu_hang_ring_helper(device, AMDGPU_HW_IP_GFX, &pci, true);
+ }
+ }
#endif
igt_fixture() {
--
2.49.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH i-g-t V3 2/3] tests/amdgpu/amd_deadlock: add gfx user-queue priv-fault reset test 2026-07-24 6:48 [PATCH i-g-t v3 1/3] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test Jesse Zhang @ 2026-07-24 6:48 ` Jesse Zhang 2026-07-24 6:48 ` [PATCH i-g-t V3 3/3] tests/amdgpu/amd_deadlock: add gfx user-queue priv-instruction " Jesse Zhang ` (4 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Jesse Zhang @ 2026-07-24 6:48 UTC (permalink / raw) To: igt-dev Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig, Jesse Zhang, Jesse Zhang Submit a gfx user-queue job that raises a priv-fault interrupt and then hangs cleanly: a minimal invalid opcode (0xf2) makes the CP raise CP_BAD_OPCODE_ERROR without running off into memory, and a trailing WAIT_REG_MEM that never completes keeps the queue hung. The driver recovers it with a per-queue reset instead of a full GPU reset. The job is submitted on the synchronised path so it blocks until the reset completes the fence. Add it as the amdgpu-gfx-priv-fault-umq subtest, gated on AMDGPU_ENABLE_USERQTEST and per-queue reset capability. v2: move all hang packet creation into ip-block hooks wait_reg_mem_hang and priv_fault_hang in amd_ip_blocks_ex.c; deadlock helpers now call the hooks only, no direct PACKET3() in test code (Vitaly) Co-developed-by: Vitaly Prosyak <vitaly.prosyak@amd.com> Signed-off-by: Jesse Zhang <jesse.zhang@amd.com> --- lib/amdgpu/amd_deadlock_helpers.c | 110 ++++++++++++++++++++++++++---- lib/amdgpu/amd_deadlock_helpers.h | 4 ++ lib/amdgpu/amd_ip_blocks.h | 22 ++++++ lib/amdgpu/amd_ip_blocks_ex.c | 68 ++++++++++++++++++ tests/amdgpu/amd_deadlock.c | 9 +++ 5 files changed, 201 insertions(+), 12 deletions(-) diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c index 4395fc527..92d816e13 100644 --- a/lib/amdgpu/amd_deadlock_helpers.c +++ b/lib/amdgpu/amd_deadlock_helpers.c @@ -416,21 +416,16 @@ bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error, /* * Emit a WAIT_REG_MEM that waits forever: poll bo_mc (initialised to 0) for a * value != 0. This is a valid packet that never completes, i.e. a clean hang - * with no page fault, so it can be recovered by a per-queue reset. + * with no page fault, so it can be recovered by a per-queue reset. All packet + * creation lives in the IP block hook for ASIC portability. */ -static void gfx_ring_emit_wait_reg_mem_hang(struct amdgpu_ring_context *ring_context) +static void gfx_ring_emit_wait_reg_mem_hang( + const struct amdgpu_ip_block_version *ip_block, + struct amdgpu_ring_context *ring_context) { uint32_t i = 0; - ring_context->pm4[i++] = PACKET3(PACKET3_WAIT_REG_MEM, 5); - ring_context->pm4[i++] = WAIT_REG_MEM_MEM_SPACE(1) | /* memory */ - WAIT_REG_MEM_FUNCTION(4) | /* != */ - WAIT_REG_MEM_ENGINE(0); /* me */ - ring_context->pm4[i++] = lower_32_bits(ring_context->bo_mc) & 0xfffffffc; - ring_context->pm4[i++] = upper_32_bits(ring_context->bo_mc); - ring_context->pm4[i++] = 0; /* reference value */ - ring_context->pm4[i++] = 0xffffffff; /* and mask */ - ring_context->pm4[i++] = 0x00000004; /* poll interval */ + ip_block->funcs->wait_reg_mem_hang(ip_block->funcs, ring_context, &i); ring_context->pm4_dw = i; } @@ -490,7 +485,98 @@ void amdgpu_hang_ring_helper(amdgpu_device_handle device_handle, unsigned int ip memset((void *)ring_context->bo_cpu, 0, ring_context->write_length * sizeof(uint32_t)); ring_context->resources[0] = ring_context->bo; - gfx_ring_emit_wait_reg_mem_hang(ring_context); + gfx_ring_emit_wait_reg_mem_hang(ip_block, ring_context); + + amdgpu_test_exec_cs_helper(device_handle, ip_block->type, ring_context, 0); + + amdgpu_bo_unmap_and_free(ring_context->bo, ring_context->va_handle, ring_context->bo_mc, + ring_context->write_length * sizeof(uint32_t)); + if (user_queue) { + ip_block->funcs->userq_destroy(device_handle, ring_context, ip_type); + } else { + free(ring_context->pm4); + free(ring_context); + } +} + +/* + * Build a packet stream that raises a gfx priv-fault interrupt and then hangs + * the queue cleanly: a minimal invalid opcode (CP_BAD_OPCODE_ERROR) followed by + * a WAIT_REG_MEM that never completes. The bad opcode alone would let the CP + * run to completion (self-recovering), and a bad opcode with a mis-parseable + * body drags the CP into a page fault (only recoverable by a full GPU reset). + * Combining a minimal bad opcode with a clean wait gives the wanted case: the + * priv-fault interrupt fires, the queue hangs without faulting the CP, and the + * driver recovers it with a per-queue reset. + */ +static void gfx_ring_emit_priv_fault_hang( + const struct amdgpu_ip_block_version *ip_block, + struct amdgpu_ring_context *ring_context) +{ + uint32_t i = 0; + + ip_block->funcs->priv_fault_hang(ip_block->funcs, ring_context, &i); + ring_context->pm4_dw = i; +} + +/* + * Fault a user queue with an invalid opcode followed by an endless wait: the + * bad opcode raises the gfx priv-fault interrupt and the wait hangs the queue + * cleanly, so the driver recovers it with a per-queue reset (no full GPU + * reset). The faulting submit uses the normal (synchronised) path so it blocks + * until the per-queue reset completes the fence. + */ +void amdgpu_priv_fault_ring_helper(amdgpu_device_handle device_handle, unsigned int ip_type, + struct pci_addr *pci, bool user_queue) +{ + const struct amdgpu_ip_block_version *ip_block; + const int write_length = 128; + const int pm4_dw = 256; + struct amdgpu_ring_context *ring_context; + int r = 0; + + ip_block = get_ip_block(device_handle, ip_type); + ring_context = calloc(1, sizeof(*ring_context)); + igt_assert(ring_context); + + if (user_queue) { + ip_block->funcs->userq_create(device_handle, ring_context, ip_type); + } else { + r = amdgpu_cs_ctx_create(device_handle, &ring_context->context_handle); + igt_assert_eq(r, 0); + } + + ring_context->write_length = write_length; + 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 = 0; + ring_context->user_queue = user_queue; + igt_assert(ring_context->pm4); + + r = amdgpu_bo_alloc_and_map_sync(device_handle, + ring_context->write_length * sizeof(uint32_t), + 4096, AMDGPU_GEM_DOMAIN_GTT, + AMDGPU_GEM_CREATE_CPU_GTT_USWC, + AMDGPU_VM_MTYPE_UC, + &ring_context->bo, + (void **)&ring_context->bo_cpu, + &ring_context->bo_mc, + &ring_context->va_handle, + ring_context->timeline_syncobj_handle, + ++ring_context->point, user_queue); + igt_assert_eq(r, 0); + if (user_queue) { + r = amdgpu_timeline_syncobj_wait(device_handle, + ring_context->timeline_syncobj_handle, + ring_context->point); + igt_assert_eq(r, 0); + } + + memset((void *)ring_context->bo_cpu, 0, ring_context->write_length * sizeof(uint32_t)); + ring_context->resources[0] = ring_context->bo; + + gfx_ring_emit_priv_fault_hang(ip_block, ring_context); amdgpu_test_exec_cs_helper(device_handle, ip_block->type, ring_context, 0); diff --git a/lib/amdgpu/amd_deadlock_helpers.h b/lib/amdgpu/amd_deadlock_helpers.h index accbf2e41..6e69e62cb 100644 --- a/lib/amdgpu/amd_deadlock_helpers.h +++ b/lib/amdgpu/amd_deadlock_helpers.h @@ -37,5 +37,9 @@ amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t hang_ty void amdgpu_hang_ring_helper(amdgpu_device_handle device_handle, unsigned int ip_type, struct pci_addr *pci, bool user_queue); + +void +amdgpu_priv_fault_ring_helper(amdgpu_device_handle device_handle, unsigned int ip_type, + struct pci_addr *pci, bool user_queue); #endif diff --git a/lib/amdgpu/amd_ip_blocks.h b/lib/amdgpu/amd_ip_blocks.h index 2adea2f58..6e8ac1511 100644 --- a/lib/amdgpu/amd_ip_blocks.h +++ b/lib/amdgpu/amd_ip_blocks.h @@ -426,6 +426,28 @@ struct amdgpu_ip_funcs { bool wr_confirm ); + /* + * Emit PACKET3_WAIT_REG_MEM for deadlock/hang tests. Uses FUNCTION(4) + * for != comparison and polls ring_context->bo_mc (initialised to 0) + * for a value that never arrives, hanging the queue for reset testing. + */ + int (*wait_reg_mem_hang)( + const struct amdgpu_ip_funcs *func, + const struct amdgpu_ring_context *context, + uint32_t *pm4_dw + ); + + /* + * Emit an invalid opcode followed by a WAIT_REG_MEM hang for priv-fault + * tests: the bad opcode raises CP_BAD_OPCODE_ERROR, then the queue hangs + * cleanly so the driver recovers it with a per-queue reset. + */ + int (*priv_fault_hang)( + const struct amdgpu_ip_funcs *func, + const struct amdgpu_ring_context *context, + uint32_t *pm4_dw + ); + }; extern const struct amdgpu_ip_block_version gfx_v6_0_ip_block; diff --git a/lib/amdgpu/amd_ip_blocks_ex.c b/lib/amdgpu/amd_ip_blocks_ex.c index b3b708507..cec0f4d66 100644 --- a/lib/amdgpu/amd_ip_blocks_ex.c +++ b/lib/amdgpu/amd_ip_blocks_ex.c @@ -217,6 +217,13 @@ static void gfx_write_data_mem_default( } +static int gfx_ring_wait_reg_mem_hang(const struct amdgpu_ip_funcs *func, + const struct amdgpu_ring_context *ring_context, + uint32_t *pm4_dw); +static int gfx_ring_priv_fault_hang(const struct amdgpu_ip_funcs *func, + const struct amdgpu_ring_context *ring_context, + uint32_t *pm4_dw); + void amd_ip_blocks_ex_init(struct amdgpu_ip_funcs *funcs) { funcs->gfx_program_compute = gfx_program_compute_default; @@ -225,6 +232,10 @@ void amd_ip_blocks_ex_init(struct amdgpu_ip_funcs *funcs) funcs->gfx_emit_nops = gfx_emit_nops_default; funcs->gfx_write_data_mem = gfx_write_data_mem_default; + /* Deadlock/hang test hooks */ + funcs->wait_reg_mem_hang = gfx_ring_wait_reg_mem_hang; + funcs->priv_fault_hang = gfx_ring_priv_fault_hang; + switch (funcs->family_id) { case AMDGPU_FAMILY_RV: case AMDGPU_FAMILY_NV: @@ -251,3 +262,60 @@ void amd_ip_blocks_ex_init(struct amdgpu_ip_funcs *funcs) } } +/* + * Emit PACKET3_WAIT_REG_MEM for deadlock/hang tests. Uses FUNCTION(4) for != + * comparison, polling a memory location (initialised to 0) for a value that + * never arrives, so the queue hangs cleanly for per-queue reset testing. + */ +static int +gfx_ring_wait_reg_mem_hang(const struct amdgpu_ip_funcs *func, + const struct amdgpu_ring_context *ring_context, + uint32_t *pm4_dw) +{ + uint32_t i = *pm4_dw; + + ring_context->pm4[i++] = PACKET3(PACKET3_WAIT_REG_MEM, 5); + ring_context->pm4[i++] = (WAIT_REG_MEM_MEM_SPACE(1) | /* memory */ + WAIT_REG_MEM_FUNCTION(4) | /* != */ + WAIT_REG_MEM_ENGINE(0)); /* me */ + ring_context->pm4[i++] = lower_32_bits(ring_context->bo_mc) & 0xfffffffc; + ring_context->pm4[i++] = upper_32_bits(ring_context->bo_mc); + ring_context->pm4[i++] = 0; /* reference value */ + ring_context->pm4[i++] = 0xffffffff; /* and mask */ + ring_context->pm4[i++] = 0x00000004; /* poll interval */ + *pm4_dw = i; + + return 0; +} + +/* + * Emit an invalid opcode followed by a WAIT_REG_MEM hang for priv-fault tests. + * The invalid opcode raises CP_BAD_OPCODE_ERROR (a gfx priv-fault) without + * running the CP off into memory, then the WAIT_REG_MEM hangs the queue cleanly. + */ +static int +gfx_ring_priv_fault_hang(const struct amdgpu_ip_funcs *func, + const struct amdgpu_ring_context *ring_context, + uint32_t *pm4_dw) +{ + uint32_t i = *pm4_dw; + + /* Invalid opcode: CP raises CP_BAD_OPCODE_ERROR (gfx priv-fault). */ + ring_context->pm4[i++] = PACKET3(0xf2, 0); + ring_context->pm4[i++] = 0x0; + + /* Then hang cleanly on a WAIT_REG_MEM that never completes. */ + ring_context->pm4[i++] = PACKET3(PACKET3_WAIT_REG_MEM, 5); + ring_context->pm4[i++] = (WAIT_REG_MEM_MEM_SPACE(1) | + WAIT_REG_MEM_FUNCTION(4) | + WAIT_REG_MEM_ENGINE(0)); + ring_context->pm4[i++] = lower_32_bits(ring_context->bo_mc) & 0xfffffffc; + ring_context->pm4[i++] = upper_32_bits(ring_context->bo_mc); + ring_context->pm4[i++] = 0; /* reference value */ + ring_context->pm4[i++] = 0xffffffff; /* and mask */ + ring_context->pm4[i++] = 0x00000004; /* poll interval */ + *pm4_dw = i; + + return 0; +} + diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c index 118948992..0d0e4ba6e 100644 --- a/tests/amdgpu/amd_deadlock.c +++ b/tests/amdgpu/amd_deadlock.c @@ -255,6 +255,15 @@ int igt_main() amdgpu_hang_ring_helper(device, AMDGPU_HW_IP_GFX, &pci, true); } } + + igt_describe("Test-per-queue-reset-recovery-of-a-gfx-user-queue-priv-fault"); + igt_subtest_with_dynamic("amdgpu-gfx-priv-fault-umq") { + if (enable_test && userq_arr_cap[AMD_IP_GFX] && + is_reset_enable(AMD_IP_GFX, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { + igt_dynamic_f("amdgpu-gfx-priv-fault-umq") + amdgpu_priv_fault_ring_helper(device, AMDGPU_HW_IP_GFX, &pci, true); + } + } #endif igt_fixture() { -- 2.49.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH i-g-t V3 3/3] tests/amdgpu/amd_deadlock: add gfx user-queue priv-instruction reset test 2026-07-24 6:48 [PATCH i-g-t v3 1/3] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test Jesse Zhang 2026-07-24 6:48 ` [PATCH i-g-t V3 2/3] tests/amdgpu/amd_deadlock: add gfx user-queue priv-fault " Jesse Zhang @ 2026-07-24 6:48 ` Jesse Zhang 2026-07-24 7:40 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,v3,1/3] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang " Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Jesse Zhang @ 2026-07-24 6:48 UTC (permalink / raw) To: igt-dev Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig, Jesse Zhang, Jesse Zhang Add amdgpu-gfx-priv-inst-umq, a companion to amdgpu-gfx-priv-fault-umq that exercises a different gfx fault class. It raises a privileged-instruction fault by launching a privileged INDIRECT_BUFFER (PRIV bit set) from an unprivileged user queue, followed by a WAIT_REG_MEM that never completes. The queue hangs cleanly without the CP running off into memory, so the driver recovers it with a per-queue reset (no full GPU reset). Verified on GFX11/navi31 and GFX12/navi48. The fault packet is emitted through a new priv_inst_hang IP-block hook (gfx_ring_priv_inst_hang), mirroring the existing priv_fault_hang path. Signed-off-by: Jesse Zhang <jesse.zhang@amd.com> --- lib/amdgpu/amd_deadlock_helpers.c | 81 +++++++++++++++++++++++++++++++ lib/amdgpu/amd_deadlock_helpers.h | 4 ++ lib/amdgpu/amd_ip_blocks.h | 12 +++++ lib/amdgpu/amd_ip_blocks_ex.c | 39 +++++++++++++++ tests/amdgpu/amd_deadlock.c | 9 ++++ 5 files changed, 145 insertions(+) diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c index 92d816e13..71c82aa91 100644 --- a/lib/amdgpu/amd_deadlock_helpers.c +++ b/lib/amdgpu/amd_deadlock_helpers.c @@ -519,6 +519,16 @@ static void gfx_ring_emit_priv_fault_hang( ring_context->pm4_dw = i; } +static void gfx_ring_emit_priv_inst_hang( + const struct amdgpu_ip_block_version *ip_block, + struct amdgpu_ring_context *ring_context) +{ + uint32_t i = 0; + + ip_block->funcs->priv_inst_hang(ip_block->funcs, ring_context, &i); + ring_context->pm4_dw = i; +} + /* * Fault a user queue with an invalid opcode followed by an endless wait: the * bad opcode raises the gfx priv-fault interrupt and the wait hangs the queue @@ -590,6 +600,77 @@ void amdgpu_priv_fault_ring_helper(amdgpu_device_handle device_handle, unsigned } } +/* + * Fault a user queue with a privileged INDIRECT_BUFFER (priv-instruction fault) + * followed by an endless wait: the privileged IB launch raises a fault interrupt + * and the wait hangs the queue cleanly, so the driver recovers it with a + * per-queue reset (no full GPU reset). The submit uses the normal (synchronised) + * path so it blocks until the per-queue reset completes the fence. + */ +void amdgpu_priv_inst_ring_helper(amdgpu_device_handle device_handle, unsigned int ip_type, + struct pci_addr *pci, bool user_queue) +{ + const struct amdgpu_ip_block_version *ip_block; + const int write_length = 128; + const int pm4_dw = 256; + struct amdgpu_ring_context *ring_context; + int r = 0; + + ip_block = get_ip_block(device_handle, ip_type); + ring_context = calloc(1, sizeof(*ring_context)); + igt_assert(ring_context); + + if (user_queue) { + ip_block->funcs->userq_create(device_handle, ring_context, ip_type); + } else { + r = amdgpu_cs_ctx_create(device_handle, &ring_context->context_handle); + igt_assert_eq(r, 0); + } + + ring_context->write_length = write_length; + 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 = 0; + ring_context->user_queue = user_queue; + igt_assert(ring_context->pm4); + + r = amdgpu_bo_alloc_and_map_sync(device_handle, + ring_context->write_length * sizeof(uint32_t), + 4096, AMDGPU_GEM_DOMAIN_GTT, + AMDGPU_GEM_CREATE_CPU_GTT_USWC, + AMDGPU_VM_MTYPE_UC, + &ring_context->bo, + (void **)&ring_context->bo_cpu, + &ring_context->bo_mc, + &ring_context->va_handle, + ring_context->timeline_syncobj_handle, + ++ring_context->point, user_queue); + igt_assert_eq(r, 0); + if (user_queue) { + r = amdgpu_timeline_syncobj_wait(device_handle, + ring_context->timeline_syncobj_handle, + ring_context->point); + igt_assert_eq(r, 0); + } + + memset((void *)ring_context->bo_cpu, 0, ring_context->write_length * sizeof(uint32_t)); + ring_context->resources[0] = ring_context->bo; + + gfx_ring_emit_priv_inst_hang(ip_block, ring_context); + + amdgpu_test_exec_cs_helper(device_handle, ip_block->type, ring_context, 0); + + amdgpu_bo_unmap_and_free(ring_context->bo, ring_context->va_handle, ring_context->bo_mc, + ring_context->write_length * sizeof(uint32_t)); + if (user_queue) { + ip_block->funcs->userq_destroy(device_handle, ring_context, ip_type); + } else { + free(ring_context->pm4); + free(ring_context); + } +} + #define MAX_DMABUF_COUNT 0x20000 #define MAX_DWORD_COUNT 256 diff --git a/lib/amdgpu/amd_deadlock_helpers.h b/lib/amdgpu/amd_deadlock_helpers.h index 6e69e62cb..69c321ef6 100644 --- a/lib/amdgpu/amd_deadlock_helpers.h +++ b/lib/amdgpu/amd_deadlock_helpers.h @@ -41,5 +41,9 @@ amdgpu_hang_ring_helper(amdgpu_device_handle device_handle, unsigned int ip_type void amdgpu_priv_fault_ring_helper(amdgpu_device_handle device_handle, unsigned int ip_type, struct pci_addr *pci, bool user_queue); + +void +amdgpu_priv_inst_ring_helper(amdgpu_device_handle device_handle, unsigned int ip_type, + struct pci_addr *pci, bool user_queue); #endif diff --git a/lib/amdgpu/amd_ip_blocks.h b/lib/amdgpu/amd_ip_blocks.h index 6e8ac1511..427010c2d 100644 --- a/lib/amdgpu/amd_ip_blocks.h +++ b/lib/amdgpu/amd_ip_blocks.h @@ -448,6 +448,18 @@ struct amdgpu_ip_funcs { uint32_t *pm4_dw ); + /* + * Emit a privileged INDIRECT_BUFFER (PRIV bit) from an unprivileged user + * queue followed by a WAIT_REG_MEM hang: this raises a priv-instruction + * fault and the queue then hangs cleanly, so the driver recovers it with a + * per-queue reset. + */ + int (*priv_inst_hang)( + const struct amdgpu_ip_funcs *func, + const struct amdgpu_ring_context *context, + uint32_t *pm4_dw + ); + }; extern const struct amdgpu_ip_block_version gfx_v6_0_ip_block; diff --git a/lib/amdgpu/amd_ip_blocks_ex.c b/lib/amdgpu/amd_ip_blocks_ex.c index cec0f4d66..4655d9dcc 100644 --- a/lib/amdgpu/amd_ip_blocks_ex.c +++ b/lib/amdgpu/amd_ip_blocks_ex.c @@ -224,6 +224,10 @@ static int gfx_ring_priv_fault_hang(const struct amdgpu_ip_funcs *func, const struct amdgpu_ring_context *ring_context, uint32_t *pm4_dw); +static int gfx_ring_priv_inst_hang(const struct amdgpu_ip_funcs *func, + const struct amdgpu_ring_context *ring_context, + uint32_t *pm4_dw); + void amd_ip_blocks_ex_init(struct amdgpu_ip_funcs *funcs) { funcs->gfx_program_compute = gfx_program_compute_default; @@ -235,6 +239,7 @@ void amd_ip_blocks_ex_init(struct amdgpu_ip_funcs *funcs) /* Deadlock/hang test hooks */ funcs->wait_reg_mem_hang = gfx_ring_wait_reg_mem_hang; funcs->priv_fault_hang = gfx_ring_priv_fault_hang; + funcs->priv_inst_hang = gfx_ring_priv_inst_hang; switch (funcs->family_id) { case AMDGPU_FAMILY_RV: @@ -288,6 +293,40 @@ gfx_ring_wait_reg_mem_hang(const struct amdgpu_ip_funcs *func, return 0; } +/* + * Emit a privileged INDIRECT_BUFFER (PRIV bit set) launched from an + * unprivileged user queue, followed by a WAIT_REG_MEM hang. The privileged IB + * launch is rejected by the CP with a fault interrupt and the queue then hangs + * cleanly, so the driver recovers it with a per-queue reset. + */ +static int +gfx_ring_priv_inst_hang(const struct amdgpu_ip_funcs *func, + const struct amdgpu_ring_context *ring_context, + uint32_t *pm4_dw) +{ + uint32_t i = *pm4_dw; + + /* Privileged IB launch on an unprivileged UMQ -> priv-instruction fault. */ + ring_context->pm4[i++] = PACKET3(PACKET3_INDIRECT_BUFFER, 2); + ring_context->pm4[i++] = lower_32_bits(ring_context->bo_mc) & 0xfffffffc; + ring_context->pm4[i++] = upper_32_bits(ring_context->bo_mc); + ring_context->pm4[i++] = 4 | (1u << 31); /* IB size (dwords) | PRIV bit */ + + /* Then hang cleanly on a WAIT_REG_MEM that never completes. */ + ring_context->pm4[i++] = PACKET3(PACKET3_WAIT_REG_MEM, 5); + ring_context->pm4[i++] = (WAIT_REG_MEM_MEM_SPACE(1) | + WAIT_REG_MEM_FUNCTION(4) | + WAIT_REG_MEM_ENGINE(0)); + ring_context->pm4[i++] = lower_32_bits(ring_context->bo_mc) & 0xfffffffc; + ring_context->pm4[i++] = upper_32_bits(ring_context->bo_mc); + ring_context->pm4[i++] = 0; /* reference value */ + ring_context->pm4[i++] = 0xffffffff; /* and mask */ + ring_context->pm4[i++] = 0x00000004; /* poll interval */ + *pm4_dw = i; + + return 0; +} + /* * Emit an invalid opcode followed by a WAIT_REG_MEM hang for priv-fault tests. * The invalid opcode raises CP_BAD_OPCODE_ERROR (a gfx priv-fault) without diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c index 0d0e4ba6e..1d729eeb4 100644 --- a/tests/amdgpu/amd_deadlock.c +++ b/tests/amdgpu/amd_deadlock.c @@ -264,6 +264,15 @@ int igt_main() amdgpu_priv_fault_ring_helper(device, AMDGPU_HW_IP_GFX, &pci, true); } } + + igt_describe("Test-per-queue-reset-recovery-of-a-gfx-user-queue-privileged-instruction-fault"); + igt_subtest_with_dynamic("amdgpu-gfx-priv-inst-umq") { + if (enable_test && userq_arr_cap[AMD_IP_GFX] && + is_reset_enable(AMD_IP_GFX, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { + igt_dynamic_f("amdgpu-gfx-priv-inst-umq") + amdgpu_priv_inst_ring_helper(device, AMDGPU_HW_IP_GFX, &pci, true); + } + } #endif igt_fixture() { -- 2.49.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [i-g-t,v3,1/3] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test 2026-07-24 6:48 [PATCH i-g-t v3 1/3] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test Jesse Zhang 2026-07-24 6:48 ` [PATCH i-g-t V3 2/3] tests/amdgpu/amd_deadlock: add gfx user-queue priv-fault " Jesse Zhang 2026-07-24 6:48 ` [PATCH i-g-t V3 3/3] tests/amdgpu/amd_deadlock: add gfx user-queue priv-instruction " Jesse Zhang @ 2026-07-24 7:40 ` Patchwork 2026-07-24 9:01 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-07-24 7:40 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5065 bytes --] == Series Details == Series: series starting with [i-g-t,v3,1/3] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test URL : https://patchwork.freedesktop.org/series/171048/ State : success == Summary == CI Bug Log - changes from XEIGT_9024_BAT -> XEIGTPW_15591_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (12 -> 13) ------------------------------ Additional (1): bat-bmg-2 Known issues ------------ Here are the changes found in XEIGTPW_15591_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@write: - bat-bmg-2: NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/bat-bmg-2/igt@fbdev@write.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-bmg-2: NOTRUN -> [SKIP][2] ([Intel XE#2233]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@kms_flip@basic-flip-vs-modeset: - bat-bmg-2: NOTRUN -> [SKIP][4] ([Intel XE#2482]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html * igt@kms_frontbuffer_tracking@basic: - bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html * igt@xe_exec_multi_queue@priority: - bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#8364]) +13 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/bat-bmg-2/igt@xe_exec_multi_queue@priority.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - bat-bmg-2: NOTRUN -> [SKIP][8] ([Intel XE#2229]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_pat@pat-index-xehpc: - bat-bmg-2: NOTRUN -> [SKIP][9] ([Intel XE#1420] / [Intel XE#7590]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - bat-bmg-2: NOTRUN -> [SKIP][10] ([Intel XE#2245] / [Intel XE#7590]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/bat-bmg-2/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - bat-bmg-2: NOTRUN -> [SKIP][11] ([Intel XE#2236] / [Intel XE#7590]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434 [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482 [Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489 [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419 [Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 Build changes ------------- * IGT: IGT_9024 -> IGTPW_15591 * Linux: xe-5470-14d5aecf2acddcc01849c22468d654de384bf04c -> xe-5472-2d51a83867b4a139d9c24ce43b478651e2786576 IGTPW_15591: 15591 IGT_9024: 03b51ac5b6eaa5ff645f1728eb7404df874f0181 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5470-14d5aecf2acddcc01849c22468d654de384bf04c: 14d5aecf2acddcc01849c22468d654de384bf04c xe-5472-2d51a83867b4a139d9c24ce43b478651e2786576: 2d51a83867b4a139d9c24ce43b478651e2786576 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/index.html [-- Attachment #2: Type: text/html, Size: 5988 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for series starting with [i-g-t,v3,1/3] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test 2026-07-24 6:48 [PATCH i-g-t v3 1/3] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test Jesse Zhang ` (2 preceding siblings ...) 2026-07-24 7:40 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,v3,1/3] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang " Patchwork @ 2026-07-24 9:01 ` Patchwork 2026-07-24 23:31 ` ✓ Xe.CI.FULL: " Patchwork 2026-07-25 7:17 ` ✓ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-07-24 9:01 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2605 bytes --] == Series Details == Series: series starting with [i-g-t,v3,1/3] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test URL : https://patchwork.freedesktop.org/series/171048/ State : success == Summary == CI Bug Log - changes from IGT_9024 -> IGTPW_15591 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/index.html Participating hosts (42 -> 40) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_15591 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@sanitycheck: - fi-kbl-7567u: [PASS][1] -> [DMESG-WARN][2] ([i915#13735]) +79 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9024/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html * igt@kms_busy@basic@flip: - fi-kbl-7567u: [PASS][3] -> [DMESG-WARN][4] ([i915#13735] / [i915#180]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9024/fi-kbl-7567u/igt@kms_busy@basic@flip.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/fi-kbl-7567u/igt@kms_busy@basic@flip.html * igt@kms_pm_rpm@basic-pci-d3-state: - fi-kbl-7567u: [PASS][5] -> [DMESG-WARN][6] ([i915#13735] / [i915#15673] / [i915#180]) +52 other tests dmesg-warn [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9024/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735 [i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_9024 -> IGTPW_15591 * Linux: CI_DRM_18890 -> CI_DRM_18891 CI-20190529: 20190529 CI_DRM_18890: 2d51a83867b4a139d9c24ce43b478651e2786576 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18891: f695353a53ddf71634a3ce05b9fb237715419bbb @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15591: 15591 IGT_9024: 03b51ac5b6eaa5ff645f1728eb7404df874f0181 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/index.html [-- Attachment #2: Type: text/html, Size: 3492 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.FULL: success for series starting with [i-g-t,v3,1/3] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test 2026-07-24 6:48 [PATCH i-g-t v3 1/3] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test Jesse Zhang ` (3 preceding siblings ...) 2026-07-24 9:01 ` ✓ i915.CI.BAT: " Patchwork @ 2026-07-24 23:31 ` Patchwork 2026-07-25 7:17 ` ✓ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-07-24 23:31 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 28168 bytes --] == Series Details == Series: series starting with [i-g-t,v3,1/3] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test URL : https://patchwork.freedesktop.org/series/171048/ State : success == Summary == CI Bug Log - changes from XEIGT_9024_FULL -> XEIGTPW_15591_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_15591_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: NOTRUN -> [SKIP][1] ([Intel XE#2370]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#2327]) +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-10/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#7059] / [Intel XE#7085]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#610] / [Intel XE#7387]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-4/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#1124]) +7 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#7679]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-10/igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p.html * igt@kms_bw@linear-tiling-3-displays-target-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#367]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-6/igt@kms_bw@linear-tiling-3-displays-target-1920x1080p.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2887]) +4 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][9] -> [INCOMPLETE][10] ([Intel XE#7084] / [Intel XE#8150]) +1 other test incomplete [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9024/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#3432]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt@kms_chamelium_color@ctm-0-25: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-6/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2252]) +3 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-10/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_content_protection@atomic: - shard-bmg: NOTRUN -> [FAIL][14] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +5 other tests fail [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-8/igt@kms_content_protection@atomic.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-128x42: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2320]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-6/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html * igt@kms_dp_link_training@uhbr-mst: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#4354] / [Intel XE#7386]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-5/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dsc@dsc-with-output-formats-ultrajoiner: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#8265]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-5/igt@kms_dsc@dsc-with-output-formats-ultrajoiner.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#1138] / [Intel XE#7344]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-6/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2375]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-10/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#7178] / [Intel XE#7349]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#7178] / [Intel XE#7351]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-abgr161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-render: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#7061]) +5 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-1/igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#4141]) +7 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2311]) +33 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrshdr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2313]) +29 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2350] / [Intel XE#7503]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#7308]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-6/igt@kms_hdmi_inject@inject-audio.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#6911] / [Intel XE#7466]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-2/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-6/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#8303]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7283]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-3/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#5021] / [Intel XE#7377]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_pm_dc@dc3co-vpb-framegap: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#8395] / [Intel XE#8396]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-7/igt@kms_pm_dc@dc3co-vpb-framegap.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][36] -> [FAIL][37] ([Intel XE#8399]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9024/shard-lnl-5/igt@kms_pm_dc@dc5-dpms.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#1489]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-9/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-pr-cursor-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2234] / [Intel XE#2850]) +7 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-10/igt@kms_psr@fbc-pr-cursor-plane-onoff.html * igt@kms_rotation_crc@bad-tiling: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#3904] / [Intel XE#7342]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-6/igt@kms_rotation_crc@bad-tiling.html * igt@kms_sharpness_filter@invalid-plane-with-filter: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#6503]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-5/igt@kms_sharpness_filter@invalid-plane-with-filter.html * igt@kms_vrr@flip-basic: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#1499]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-9/igt@kms_vrr@flip-basic.html * igt@xe_compute@ccs-mode-basic: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#6599]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-2/igt@xe_compute@ccs-mode-basic.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][45] -> [INCOMPLETE][46] ([Intel XE#6321] / [Intel XE#8355]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9024/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2322] / [Intel XE#7372]) +6 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html * igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#8374]) +9 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-3/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch.html * igt@xe_exec_multi_queue@few-execs-preempt-mode-basic: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#8364]) +15 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-8/igt@xe_exec_multi_queue@few-execs-preempt-mode-basic.html * igt@xe_exec_reset@cm-multi-queue-close-execqueues: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#8369]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-8/igt@xe_exec_reset@cm-multi-queue-close-execqueues.html * igt@xe_exec_system_allocator@many-stride-new-prefetch: - shard-bmg: NOTRUN -> [INCOMPLETE][51] ([Intel XE#7098] / [Intel XE#8159]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-9/igt@xe_exec_system_allocator@many-stride-new-prefetch.html * igt@xe_exec_threads@threads-multi-queue-cm-fd-basic: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#8378]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-cm-fd-basic.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init: - shard-bmg: NOTRUN -> [ABORT][53] ([Intel XE#8007]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html * igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init: - shard-bmg: [PASS][54] -> [ABORT][55] ([Intel XE#8007]) +3 other tests abort [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9024/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html * igt@xe_multigpu_svm@mgpu-atomic-op-conflict: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#6964]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-9/igt@xe_multigpu_svm@mgpu-atomic-op-conflict.html * igt@xe_page_reclaim@boundary-split: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#7793]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-6/igt@xe_page_reclaim@boundary-split.html * igt@xe_pat@pat-sw-hw-compare: - shard-bmg: NOTRUN -> [FAIL][58] ([Intel XE#7695]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-4/igt@xe_pat@pat-sw-hw-compare.html * igt@xe_pm@d3cold-mmap-vram: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2284] / [Intel XE#7370]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-3/igt@xe_pm@d3cold-mmap-vram.html * igt@xe_pm@vram-d3cold-threshold: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#579] / [Intel XE#7329] / [Intel XE#7517]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-7/igt@xe_pm@vram-d3cold-threshold.html * igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-5/igt@xe_pxp@pxp-stale-bo-exec-post-termination-irq.html * igt@xe_query@multigpu-query-topology-l3-bank-mask: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#944]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-3/igt@xe_query@multigpu-query-topology-l3-bank-mask.html * igt@xe_sriov_scheduling@equal-throughput-low-priority: - shard-bmg: [PASS][63] -> [FAIL][64] ([Intel XE#7992]) +4 other tests fail [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9024/shard-bmg-6/igt@xe_sriov_scheduling@equal-throughput-low-priority.html [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-10/igt@xe_sriov_scheduling@equal-throughput-low-priority.html * igt@xe_sriov_scheduling@equal-throughput-low-priority@numvfs-random-gt1-vcs0: - shard-bmg: [PASS][65] -> [FAIL][66] ([Intel XE#8526]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9024/shard-bmg-6/igt@xe_sriov_scheduling@equal-throughput-low-priority@numvfs-random-gt1-vcs0.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-10/igt@xe_sriov_scheduling@equal-throughput-low-priority@numvfs-random-gt1-vcs0.html * igt@xe_wedged@wedged-at-any-timeout: - shard-bmg: NOTRUN -> [DMESG-WARN][67] ([Intel XE#5545]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-5/igt@xe_wedged@wedged-at-any-timeout.html #### Possible fixes #### * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [FAIL][68] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][69] +1 other test pass [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9024/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early: - shard-bmg: [ABORT][70] ([Intel XE#8007]) -> [PASS][71] +2 other tests pass [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9024/shard-bmg-2/igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early.html * igt@xe_sriov_flr@flr-each-isolation: - shard-bmg: [FAIL][72] ([Intel XE#6569]) -> [PASS][73] [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9024/shard-bmg-9/igt@xe_sriov_flr@flr-each-isolation.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-1/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_sriov_scheduling@nonpreempt-engine-resets-low-priority@numvfs-random-gt0-rcs0: - shard-bmg: [FAIL][74] ([Intel XE#7992]) -> [PASS][75] +2 other tests pass [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9024/shard-bmg-10/igt@xe_sriov_scheduling@nonpreempt-engine-resets-low-priority@numvfs-random-gt0-rcs0.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-5/igt@xe_sriov_scheduling@nonpreempt-engine-resets-low-priority@numvfs-random-gt0-rcs0.html * igt@xe_sriov_scheduling@nonpreempt-engine-resets-low-priority@numvfs-random-gt1-vcs0: - shard-bmg: [FAIL][76] ([Intel XE#8340]) -> [PASS][77] [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9024/shard-bmg-10/igt@xe_sriov_scheduling@nonpreempt-engine-resets-low-priority@numvfs-random-gt1-vcs0.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-bmg-5/igt@xe_sriov_scheduling@nonpreempt-engine-resets-low-priority@numvfs-random-gt1-vcs0.html #### Warnings #### * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [FAIL][78] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][79] ([Intel XE#301]) +1 other test fail [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9024/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [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#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [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#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#579]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/579 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599 [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084 [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085 [Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7329 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7344]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7344 [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375 [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377 [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383 [Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386 [Intel XE#7387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7387 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466 [Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503 [Intel XE#7517]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7517 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150 [Intel XE#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159 [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265 [Intel XE#8303]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8303 [Intel XE#8340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8340 [Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369 [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374 [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378 [Intel XE#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395 [Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396 [Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399 [Intel XE#8526]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8526 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_9024 -> IGTPW_15591 * Linux: xe-5470-14d5aecf2acddcc01849c22468d654de384bf04c -> xe-5472-2d51a83867b4a139d9c24ce43b478651e2786576 IGTPW_15591: 15591 IGT_9024: 03b51ac5b6eaa5ff645f1728eb7404df874f0181 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5470-14d5aecf2acddcc01849c22468d654de384bf04c: 14d5aecf2acddcc01849c22468d654de384bf04c xe-5472-2d51a83867b4a139d9c24ce43b478651e2786576: 2d51a83867b4a139d9c24ce43b478651e2786576 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15591/index.html [-- Attachment #2: Type: text/html, Size: 30602 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.Full: success for series starting with [i-g-t,v3,1/3] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test 2026-07-24 6:48 [PATCH i-g-t v3 1/3] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test Jesse Zhang ` (4 preceding siblings ...) 2026-07-24 23:31 ` ✓ Xe.CI.FULL: " Patchwork @ 2026-07-25 7:17 ` Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-07-25 7:17 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 140930 bytes --] == Series Details == Series: series starting with [i-g-t,v3,1/3] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test URL : https://patchwork.freedesktop.org/series/171048/ State : success == Summary == CI Bug Log - changes from CI_DRM_18891_full -> IGTPW_15591_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts New tests --------- New tests have been introduced between CI_DRM_18891_full and IGTPW_15591_full: ### New IGT tests (3) ### * igt@gem_exec_schedule@load@ccs0: - Statuses : - Exec time: [None] s * igt@gem_exec_schedule@load@vcs0: - Statuses : - Exec time: [None] s * igt@gem_exec_schedule@load@vecs0: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_15591_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][1] ([i915#8411]) +1 other test skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-5/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@crc32: - shard-tglu: NOTRUN -> [SKIP][2] ([i915#6230]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-5/igt@api_intel_bb@crc32.html * igt@gem_bad_reloc@negative-reloc-bltcopy: - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#3281]) +5 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-5/igt@gem_bad_reloc@negative-reloc-bltcopy.html - shard-rkl: NOTRUN -> [SKIP][4] ([i915#14544] / [i915#3281]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-bltcopy.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#3281]) +8 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-8/igt@gem_bad_reloc@negative-reloc-lut.html - shard-dg1: NOTRUN -> [SKIP][6] ([i915#3281]) +5 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-15/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_ccs@block-multicopy-inplace: - shard-tglu-1: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#9323]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#14544] / [i915#3555] / [i915#9323]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html - shard-dg1: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-17/igt@gem_ccs@ctrl-surf-copy.html - shard-tglu: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#9323]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-6/igt@gem_ccs@ctrl-surf-copy.html - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-1/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][13] -> [INCOMPLETE][14] ([i915#13356] / [i915#16348]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [PASS][15] -> [FAIL][16] ([i915#15454]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-dg2-4/igt@gem_create@create-ext-cpu-access-big.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_isolation@preservation-s3: - shard-rkl: [PASS][17] -> [INCOMPLETE][18] ([i915#13356]) +1 other test incomplete [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-5/igt@gem_ctx_isolation@preservation-s3.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][19] ([i915#13356] / [i915#16466]) +1 other test incomplete [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk3/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-hostile.html - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8555]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-hostile.html - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#8555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-1/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@legacy-engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][23] ([i915#1099]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-snb5/igt@gem_ctx_persistence@legacy-engines-mixed-process.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu-1: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][25] ([i915#8898]) +1 other test fail [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-snb4/igt@gem_eio@unwedge-stress.html * igt@gem_eio@unwedge-stress@blt: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#15314]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-3/igt@gem_eio@unwedge-stress@blt.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4812]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-1/igt@gem_exec_balancer@bonded-true-hang.html - shard-dg1: NOTRUN -> [SKIP][28] ([i915#4812]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-16/igt@gem_exec_balancer@bonded-true-hang.html - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4812]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-4/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@parallel: - shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#4525]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-contexts: - shard-rkl: NOTRUN -> [SKIP][31] ([i915#4525]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@gem_exec_balancer@parallel-contexts.html - shard-tglu: NOTRUN -> [SKIP][32] ([i915#4525]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-9/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3539] / [i915#4852]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-6/igt@gem_exec_flush@basic-uc-pro-default.html - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-13/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#5107]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-8/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-gtt-wc-active: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#3281]) +5 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-wc-active.html * igt@gem_exec_schedule@submit-late-slice: - shard-mtlp: [PASS][37] -> [DMESG-WARN][38] ([i915#13562]) +1 other test dmesg-warn [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-mtlp-6/igt@gem_exec_schedule@submit-late-slice.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-2/igt@gem_exec_schedule@submit-late-slice.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4860]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-8/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#4613]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@gem_lmem_swapping@parallel-multi.html - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4613]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-7/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][42] ([i915#4613]) +8 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk6/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][43] ([i915#4613]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-8/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#284]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4077]) +4 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-8/igt@gem_mmap_gtt@basic.html * igt@gem_mmap_gtt@fault-concurrent: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4077]) +4 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-15/igt@gem_mmap_gtt@fault-concurrent.html - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4077]) +4 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-2/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_wc@coherency: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4083]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-3/igt@gem_mmap_wc@coherency.html - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4083]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-12/igt@gem_mmap_wc@coherency.html - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4083]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-8/igt@gem_mmap_wc@coherency.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-rkl: [PASS][51] -> [SKIP][52] ([i915#4270]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-1/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-4/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4270]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-5/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_render_copy@y-tiled-ccs-to-linear: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#5190] / [i915#8428]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-7/igt@gem_render_copy@y-tiled-ccs-to-linear.html * igt@gem_tiled_partial_pwrite_pread@reads: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#3282]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-4/igt@gem_tiled_partial_pwrite_pread@reads.html * igt@gem_tiled_pread_basic@basic: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#15657]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-4/igt@gem_tiled_pread_basic@basic.html - shard-rkl: NOTRUN -> [SKIP][57] ([i915#15656]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-3/igt@gem_tiled_pread_basic@basic.html - shard-dg1: NOTRUN -> [SKIP][58] ([i915#15657]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-15/igt@gem_tiled_pread_basic@basic.html - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#15657]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-4/igt@gem_tiled_pread_basic@basic.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#3297]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-13/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@readonly-unsync: - shard-tglu-1: NOTRUN -> [SKIP][61] ([i915#3297]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_workarounds@suspend-resume-fd: - shard-glk: [PASS][62] -> [INCOMPLETE][63] ([i915#13356] / [i915#14586]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-glk2/igt@gem_workarounds@suspend-resume-fd.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk1/igt@gem_workarounds@suspend-resume-fd.html * igt@gen9_exec_parse@allowed-all: - shard-tglu-1: NOTRUN -> [SKIP][64] ([i915#2527] / [i915#2856]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-zero-length: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#2527]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-17/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#2527] / [i915#2856]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-9/igt@gen9_exec_parse@cmd-crossing-page.html - shard-rkl: NOTRUN -> [SKIP][67] ([i915#14544] / [i915#2527]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@gen9_exec_parse@cmd-crossing-page.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#2856]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-1/igt@gen9_exec_parse@valid-registers.html * igt@i915_drm_fdinfo@virtual-busy-hang-all: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#14118]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-5/igt@i915_drm_fdinfo@virtual-busy-hang-all.html * igt@i915_fb_tiling@basic-x-tiling: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#13786]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-16/igt@i915_fb_tiling@basic-x-tiling.html * igt@i915_module_load@fault-injection@__uc_init: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#15479]) +4 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-8/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-rkl: NOTRUN -> [ABORT][72] ([i915#15342]) +1 other test abort [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-8/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][73] ([i915#8399]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: [PASS][74] -> [WARN][75] ([i915#13790] / [i915#2681]) +1 other test warn [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@system-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][76] ([i915#13356]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk11/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#11681]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-8/igt@i915_pm_rps@thresholds-idle-park.html - shard-dg1: NOTRUN -> [SKIP][78] ([i915#11681]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-16/igt@i915_pm_rps@thresholds-idle-park.html - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#11681]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-6/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_query@hwconfig_table: - shard-tglu: NOTRUN -> [SKIP][80] ([i915#6245]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-4/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-unsupported: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#16079]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@i915_query@query-topology-unsupported.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu-1: NOTRUN -> [INCOMPLETE][82] ([i915#4817] / [i915#7443]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][83] ([i915#12761]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][84] ([i915#12761] / [i915#14995]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-2.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk10: NOTRUN -> [SKIP][85] ([i915#1769]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#5286]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#5286]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][88] ([i915#5286]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-3/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#14544] / [i915#5286]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-snb: NOTRUN -> [SKIP][90] +75 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-snb7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html - shard-dg1: NOTRUN -> [SKIP][91] ([i915#4538] / [i915#5286]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][92] ([i915#14544] / [i915#3638]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#4538] / [i915#5190]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-5/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html - shard-rkl: NOTRUN -> [SKIP][94] ([i915#3638]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-1/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#4538]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-13/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#6095]) +241 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#12313]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-15/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs: - shard-glk10: NOTRUN -> [SKIP][98] +151 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk10/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][99] ([i915#6095]) +24 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#14544] / [i915#6095]) +5 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#14098] / [i915#14544] / [i915#6095]) +4 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#12805]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-dg1: NOTRUN -> [SKIP][103] ([i915#12805]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-18/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-tglu: NOTRUN -> [SKIP][104] ([i915#12805]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#12805]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#6095]) +4 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#6095]) +44 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-2/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#12313]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-dg2: NOTRUN -> [SKIP][109] ([i915#12313]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][110] ([i915#12313]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#10307] / [i915#6095]) +103 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#6095]) +69 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#14098] / [i915#6095]) +42 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_chamelium_color_pipeline@plane-ctm3x4: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#16464] / [i915#16471]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-2/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html - shard-dg2: NOTRUN -> [SKIP][116] ([i915#16471]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-3/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html - shard-dg1: NOTRUN -> [SKIP][117] ([i915#16471]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-14/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html * igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#16471]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html - shard-tglu: NOTRUN -> [SKIP][119] ([i915#16471]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-5/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-rkl: NOTRUN -> [SKIP][120] ([i915#11151] / [i915#14544] / [i915#7828]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_chamelium_edid@dp-mode-timings: - shard-tglu-1: NOTRUN -> [SKIP][121] ([i915#11151] / [i915#7828]) +3 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_chamelium_edid@dp-mode-timings.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#11151] / [i915#7828]) +2 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-8/igt@kms_chamelium_frames@dp-crc-fast.html - shard-dg1: NOTRUN -> [SKIP][123] ([i915#11151] / [i915#7828]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-14/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-rkl: NOTRUN -> [SKIP][124] ([i915#11151] / [i915#7828]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@kms_chamelium_frames@hdmi-frame-dump.html - shard-tglu: NOTRUN -> [SKIP][125] ([i915#11151] / [i915#7828]) +3 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-6/igt@kms_chamelium_frames@hdmi-frame-dump.html - shard-mtlp: NOTRUN -> [SKIP][126] ([i915#11151] / [i915#7828]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-1/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_content_protection@atomic-dpms: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#15865]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@kms_content_protection@atomic-dpms.html - shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#15865]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-tglu: NOTRUN -> [SKIP][129] ([i915#15865]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-3/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#15330] / [i915#3299]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-3/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#15330]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@legacy-hdcp14: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#15865]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-15/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#15865]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-5/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#13049]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-rkl: NOTRUN -> [SKIP][135] ([i915#13049]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-dg1: NOTRUN -> [SKIP][136] ([i915#13049]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-tglu: NOTRUN -> [SKIP][137] ([i915#13049]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#13049]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: NOTRUN -> [FAIL][139] ([i915#13566]) +5 other tests fail [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#8814]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][141] ([i915#3555]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-rkl: [PASS][142] -> [FAIL][143] ([i915#13566]) +1 other test fail [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-64x21.html [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#14544] / [i915#3555]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-tglu-1: NOTRUN -> [SKIP][145] ([i915#13049]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][146] ([i915#13566]) +2 other tests fail [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#3555]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#4103]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-tglu-1: NOTRUN -> [SKIP][149] ([i915#4103]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#9809]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#13046] / [i915#5354]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#13691]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-2/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#13749]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-4/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#16361]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-16/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc-bigjoiner: - shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#16361]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-bigjoiner: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#16361]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-9/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#16361]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#16599]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-6/igt@kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][159] ([i915#16599]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-4/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@dsc: - shard-tglu: NOTRUN -> [SKIP][160] ([i915#16600]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-5/igt@kms_feature_discovery@dsc.html * igt@kms_feature_discovery@hdr: - shard-rkl: [PASS][161] -> [SKIP][162] ([i915#16600]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_feature_discovery@hdr.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-2/igt@kms_feature_discovery@hdr.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][163] ([i915#658]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-13/igt@kms_feature_discovery@psr2.html * igt@kms_feature_discovery@vrr: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#14544] / [i915#16600]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_feature_discovery@vrr.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#9934]) +2 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-15/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#3637] / [i915#9934]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-3/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][167] ([i915#12745] / [i915#4839]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk11/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk10: NOTRUN -> [INCOMPLETE][168] ([i915#12745] / [i915#4839]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk10/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk10: NOTRUN -> [INCOMPLETE][169] ([i915#12745]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk10/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2: - shard-glk11: NOTRUN -> [INCOMPLETE][170] ([i915#12745]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk11/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#9934]) +5 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#3637] / [i915#9934]) +3 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#9934]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#3637] / [i915#9934]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#8381]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-8/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-rkl: [PASS][176] -> [ABORT][177] ([i915#15132]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-2/igt@kms_flip@flip-vs-suspend-interruptible.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-1/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2: - shard-rkl: NOTRUN -> [ABORT][178] ([i915#15132]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-1/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a2.html * igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3: - shard-dg2: NOTRUN -> [FAIL][179] ([i915#14600]) +1 other test fail [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-3/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3.html * igt@kms_flip@wf_vblank-ts-check@a-vga1: - shard-snb: [PASS][180] -> [FAIL][181] ([i915#10826]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-snb7/igt@kms_flip@wf_vblank-ts-check@a-vga1.html [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-snb7/igt@kms_flip@wf_vblank-ts-check@a-vga1.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#15643]) +2 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#15643]) +2 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#15643]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/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-rkl: NOTRUN -> [SKIP][185] ([i915#14544] / [i915#15643]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#15643]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html - shard-dg1: NOTRUN -> [SKIP][187] ([i915#15643]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#15643]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#15990] / [i915#8708]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#14544]) +10 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbchdr-1p-indfb-fliptrack-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#15990]) +11 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-19/igt@kms_frontbuffer_tracking@fbchdr-1p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#15989]) +18 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-4/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-plflip-blt: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#15989]) +19 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][194] +50 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt: - shard-tglu: NOTRUN -> [SKIP][195] +68 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-3/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt.html - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#15991]) +7 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt: - shard-dg2: [PASS][197] -> [SKIP][198] ([i915#15989]) +2 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-dg2-10/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-8/igt@kms_frontbuffer_tracking@fbchdr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-stridechange: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#15989]) +9 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-17/igt@kms_frontbuffer_tracking@fbchdr-stridechange.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#14544] / [i915#15102]) +3 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#10433] / [i915#15102]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#1825]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#15990] / [i915#8708]) +6 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#5439]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#15102]) +13 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#15102]) +14 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-modesetfrombusy: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#15989]) +12 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#15989]) +10 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-6/igt@kms_frontbuffer_tracking@hdr-1p-offscreen-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-glk: [PASS][209] -> [SKIP][210] +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-mmap-wc.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#15989]) +10 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#15990]) +12 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-7/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html - shard-rkl: [PASS][213] -> [SKIP][214] ([i915#15989]) +11 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#15990]) +3 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-5/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-shrfb-msflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][216] +35 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#15104] / [i915#15990]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#15102]) +14 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#15102] / [i915#3023]) +12 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][221] ([i915#15102]) +26 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#15991] / [i915#1825]) +5 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#15991] / [i915#5354]) +9 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#15102]) +12 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-4/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-rte: - shard-dg1: NOTRUN -> [SKIP][225] +25 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-15/igt@kms_frontbuffer_tracking@psrhdr-2p-rte.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-spr-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#15991]) +15 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-4/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-mmap-gtt: - shard-glk11: NOTRUN -> [SKIP][227] +71 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk11/igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-mmap-gtt.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: [PASS][228] -> [SKIP][229] ([i915#16644] / [i915#3555] / [i915#8228]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-1/igt@kms_hdr@invalid-metadata-sizes.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-dpms: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#12713] / [i915#16490] / [i915#3555] / [i915#8228]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-1/igt@kms_hdr@static-toggle-dpms.html - shard-dg2: NOTRUN -> [SKIP][231] ([i915#16518] / [i915#3555] / [i915#8228]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-7/igt@kms_hdr@static-toggle-dpms.html - shard-dg1: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#8228]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-17/igt@kms_hdr@static-toggle-dpms.html - shard-tglu: NOTRUN -> [SKIP][233] ([i915#3555] / [i915#8228]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-6/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: [PASS][234] -> [SKIP][235] ([i915#16518] / [i915#3555] / [i915#8228]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-dg2-10/igt@kms_hdr@static-toggle-suspend.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#15458]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][237] ([i915#15458]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-18/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][238] ([i915#15458]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#15458]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#15638] / [i915#15722]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c: - shard-mtlp: NOTRUN -> [SKIP][241] [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-5/igt@kms_pipe_b_c_ivb@pipe-b-dpms-off-modeset-pipe-c.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-glk: NOTRUN -> [INCOMPLETE][242] ([i915#12756] / [i915#13409] / [i915#13476]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk6/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][243] ([i915#13409] / [i915#13476]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-xtiled: - shard-glk: NOTRUN -> [DMESG-FAIL][244] ([i915#118]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk2/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#14712]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#13705]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-5/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#15709]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-3/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html - shard-dg2: NOTRUN -> [SKIP][248] ([i915#15709]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-8/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#15709]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#15709]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-16/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier: - shard-tglu: NOTRUN -> [SKIP][251] ([i915#15709]) +3 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-9/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#15709]) +3 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#16112]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: - shard-glk: NOTRUN -> [INCOMPLETE][254] ([i915#13026]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][255] ([i915#10647] / [i915#12169]) +1 other test fail [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk1/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][256] ([i915#10647]) +3 other tests fail [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk9/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_multiple@2x-tiling-4: - shard-dg1: NOTRUN -> [SKIP][257] ([i915#13958]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-14/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@tiling-y: - shard-dg1: [PASS][258] -> [DMESG-WARN][259] ([i915#4423]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-dg1-19/igt@kms_plane_multiple@tiling-y.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-13/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#6953] / [i915#9423]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-5/igt@kms_plane_scaling@intel-max-src-size.html - shard-dg1: NOTRUN -> [SKIP][261] ([i915#6953]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-17/igt@kms_plane_scaling@intel-max-src-size.html - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#6953]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-4/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][263] ([i915#15329]) +3 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#15329] / [i915#3555]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#15329]) +3 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#12343] / [i915#5354]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-4/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#12343] / [i915#5354]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-4/igt@kms_pm_backlight@fade-with-suspend.html - shard-tglu: NOTRUN -> [SKIP][268] ([i915#12343] / [i915#9812]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-5/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu-1: NOTRUN -> [FAIL][269] ([i915#16479]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-rkl: NOTRUN -> [SKIP][270] ([i915#15948]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-4/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: NOTRUN -> [SKIP][271] ([i915#15739]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#8430]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-8/igt@kms_pm_lpsp@screens-disabled.html - shard-dg1: NOTRUN -> [SKIP][273] ([i915#8430]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-15/igt@kms_pm_lpsp@screens-disabled.html - shard-tglu: NOTRUN -> [SKIP][274] ([i915#8430]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-4/igt@kms_pm_lpsp@screens-disabled.html - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#8430]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-2/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg1: NOTRUN -> [SKIP][276] ([i915#15073]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-17/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg1: [PASS][277] -> [SKIP][278] ([i915#15073]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-dg1-18/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-15/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [PASS][279] -> [SKIP][280] ([i915#15073]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [PASS][281] -> [SKIP][282] ([i915#15073]) +2 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#15073]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][284] ([i915#15073]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-tglu: NOTRUN -> [SKIP][285] ([i915#15073]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#15073]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#11520]) +3 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-glk11: NOTRUN -> [SKIP][288] ([i915#11520]) +2 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk11/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][289] ([i915#11520]) +11 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk9/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#11520]) +3 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#11520] / [i915#14544]) +1 other test skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-tglu-1: NOTRUN -> [SKIP][292] ([i915#11520]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-update-sf: - shard-glk10: NOTRUN -> [SKIP][293] ([i915#11520]) +4 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk10/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][294] ([i915#11520]) +2 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-5/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][295] ([i915#11520]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-17/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html - shard-snb: NOTRUN -> [SKIP][296] ([i915#11520]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-snb6/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#9683]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-3/igt@kms_psr2_su@page_flip-p010.html - shard-dg1: NOTRUN -> [SKIP][298] ([i915#9683]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-12/igt@kms_psr2_su@page_flip-p010.html - shard-tglu: NOTRUN -> [SKIP][299] ([i915#9683]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-10/igt@kms_psr2_su@page_flip-p010.html - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#4348]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#9683]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-2/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#9683]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][303] +696 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk6/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt@kms_psr@pr-cursor-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#1072] / [i915#14544] / [i915#9732]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_psr@pr-cursor-mmap-cpu.html * igt@kms_psr@pr-cursor-plane-move: - shard-mtlp: NOTRUN -> [SKIP][305] ([i915#9688]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-8/igt@kms_psr@pr-cursor-plane-move.html * igt@kms_psr@pr-cursor-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][306] ([i915#1072] / [i915#9732]) +9 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@kms_psr@pr-cursor-plane-onoff.html * igt@kms_psr@pr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][307] ([i915#1072] / [i915#9732]) +7 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-4/igt@kms_psr@pr-primary-mmap-gtt.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][308] ([i915#1072] / [i915#9732]) +7 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-13/igt@kms_psr@psr-sprite-mmap-cpu.html - shard-tglu: NOTRUN -> [SKIP][309] ([i915#9732]) +14 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-9/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#9732]) +6 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_rotation_crc@multiplane-rotation: - shard-glk: NOTRUN -> [INCOMPLETE][311] ([i915#15492] / [i915#16184]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk2/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@multiplane-rotation-cropping-bottom: - shard-glk: NOTRUN -> [INCOMPLETE][312] ([i915#15500] / [i915#16184]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk4/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#12755] / [i915#15867] / [i915#5190]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-tglu: NOTRUN -> [SKIP][314] ([i915#5289]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-tglu-1: NOTRUN -> [SKIP][315] ([i915#5289]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_selftest@drm_framebuffer: - shard-rkl: NOTRUN -> [ABORT][316] ([i915#13179]) +1 other test abort [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg1: NOTRUN -> [SKIP][317] ([i915#3555]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-13/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-rkl: [PASS][318] -> [INCOMPLETE][319] ([i915#12276]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-8/igt@kms_vblank@ts-continuation-dpms-suspend.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][320] ([i915#12276]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html * igt@kms_vrr@flip-dpms: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#14544] / [i915#15243] / [i915#3555]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][322] ([i915#11920]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-dg1: NOTRUN -> [SKIP][323] ([i915#9906]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-18/igt@kms_vrr@max-min.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-dg2: NOTRUN -> [SKIP][324] ([i915#9906]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-3/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][325] ([i915#2435]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy-accuracy-98@vecs0: - shard-glk: [PASS][326] -> [FAIL][327] ([i915#4349]) +1 other test fail [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-glk9/igt@perf_pmu@busy-accuracy-98@vecs0.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk2/igt@perf_pmu@busy-accuracy-98@vecs0.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][328] +5 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-7/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@module-unload: - shard-glk: NOTRUN -> [ABORT][329] ([i915#15778]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk3/igt@perf_pmu@module-unload.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#16066]) +18 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-7/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#9917]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-4/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-rkl: NOTRUN -> [SKIP][332] ([i915#9917]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-2/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s4-devices: - shard-rkl: [ABORT][333] ([i915#15542] / [i915#7975]) -> [PASS][334] +1 other test pass [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_workarounds@suspend-resume: - shard-rkl: [INCOMPLETE][335] ([i915#13356]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@gem_workarounds@suspend-resume.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [ABORT][337] ([i915#5566]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-glk2/igt@gen9_exec_parse@allowed-single.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk3/igt@gen9_exec_parse@allowed-single.html * igt@i915_suspend@debugfs-reader: - shard-glk: [INCOMPLETE][339] ([i915#16182] / [i915#4817]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-glk5/igt@i915_suspend@debugfs-reader.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk2/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@fence-restore-untiled: - shard-rkl: [INCOMPLETE][341] ([i915#4817]) -> [PASS][342] +1 other test pass [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@i915_suspend@fence-restore-untiled.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-rkl: [INCOMPLETE][343] ([i915#12761]) -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_async_flips@async-flip-suspend-resume.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-mtlp: [FAIL][345] ([i915#5956]) -> [PASS][346] +1 other test pass [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-mtlp-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3: - shard-dg2: [FAIL][347] ([i915#5956]) -> [PASS][348] +1 other test pass [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-dg2-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-6/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][349] ([i915#15733] / [i915#5138]) -> [PASS][350] [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [ABORT][351] ([i915#15132]) -> [PASS][352] [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_color@deep-color: - shard-rkl: [SKIP][353] ([i915#12655] / [i915#3555]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-4/igt@kms_color@deep-color.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_color@deep-color.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-tglu: [FAIL][355] ([i915#13566]) -> [PASS][356] +5 other tests pass [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-128x42.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-rkl: [FAIL][357] ([i915#13566]) -> [PASS][358] +1 other test pass [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-1/igt@kms_cursor_crc@cursor-random-128x42.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-mtlp: [FAIL][359] ([i915#13027]) -> [PASS][360] +1 other test pass [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-mtlp-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a3: - shard-dg2: [FAIL][361] ([i915#13027]) -> [PASS][362] +1 other test pass [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-dg2-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a3.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a3.html * igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1: - shard-snb: [FAIL][363] ([i915#10826]) -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-snb7/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-snb7/igt@kms_flip@wf_vblank-ts-check@a-hdmi-a1.html * igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-gtt: - shard-glk: [SKIP][365] -> [PASS][366] +7 other tests pass [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-glk2/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-gtt.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk8/igt@kms_frontbuffer_tracking@hdr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary: - shard-rkl: [SKIP][367] ([i915#15989]) -> [PASS][368] +10 other tests pass [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-2/igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: [SKIP][369] ([i915#16644] / [i915#3555] / [i915#8228]) -> [PASS][370] [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-3/igt@kms_hdr@bpc-switch-dpms.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-1/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-glk: [DMESG-WARN][371] ([i915#118]) -> [PASS][372] [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-glk1/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk6/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-glk: [INCOMPLETE][373] ([i915#13026]) -> [PASS][374] [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-glk1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_multiple@tiling-none: - shard-dg1: [DMESG-WARN][375] ([i915#4423]) -> [PASS][376] +1 other test pass [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-dg1-18/igt@kms_plane_multiple@tiling-none.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-12/igt@kms_plane_multiple@tiling-none.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg1: [SKIP][377] ([i915#15073]) -> [PASS][378] +2 other tests pass [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-12/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][379] ([i915#15073]) -> [PASS][380] +1 other test pass [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@perf_pmu@busy-check-all@vecs0: - shard-rkl: [FAIL][381] -> [PASS][382] +1 other test pass [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-7/igt@perf_pmu@busy-check-all@vecs0.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@perf_pmu@busy-check-all@vecs0.html * igt@perf_pmu@busy-idle-check-all@ccs0: - shard-mtlp: [FAIL][383] ([i915#4349]) -> [PASS][384] +7 other tests pass [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-mtlp-1/igt@perf_pmu@busy-idle-check-all@ccs0.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-mtlp-3/igt@perf_pmu@busy-idle-check-all@ccs0.html * igt@perf_pmu@busy-idle-check-all@vcs0: - shard-dg2: [FAIL][385] ([i915#4349]) -> [PASS][386] +5 other tests pass [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-dg2-8/igt@perf_pmu@busy-idle-check-all@vcs0.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-7/igt@perf_pmu@busy-idle-check-all@vcs0.html * igt@perf_pmu@busy-idle-check-all@vecs0: - shard-dg1: [FAIL][387] ([i915#4349]) -> [PASS][388] +3 other tests pass [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-dg1-17/igt@perf_pmu@busy-idle-check-all@vecs0.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-13/igt@perf_pmu@busy-idle-check-all@vecs0.html * igt@perf_pmu@rc6-suspend: - shard-glk: [INCOMPLETE][389] ([i915#13356] / [i915#16236]) -> [PASS][390] [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-glk6/igt@perf_pmu@rc6-suspend.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk2/igt@perf_pmu@rc6-suspend.html #### Warnings #### * igt@api_intel_bb@crc32: - shard-rkl: [SKIP][391] ([i915#14544] / [i915#6230]) -> [SKIP][392] ([i915#6230]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@api_intel_bb@crc32.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@api_intel_bb@crc32.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: [SKIP][393] ([i915#7697]) -> [SKIP][394] ([i915#14544] / [i915#7697]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-5/igt@gem_close_race@multigpu-basic-threads.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-rkl: [SKIP][395] ([i915#8562]) -> [SKIP][396] ([i915#14544] / [i915#8562]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-3/igt@gem_create@create-ext-set-pat.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: [SKIP][397] ([i915#280]) -> [SKIP][398] ([i915#14544] / [i915#280]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-2/igt@gem_ctx_sseu@invalid-args.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@gem_ctx_sseu@invalid-args.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: [SKIP][399] ([i915#6344]) -> [SKIP][400] ([i915#14544] / [i915#6344]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-5/igt@gem_exec_capture@capture-recoverable.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_reloc@basic-gtt-cpu-noreloc: - shard-rkl: [SKIP][401] ([i915#14544] / [i915#3281]) -> [SKIP][402] ([i915#3281]) +1 other test skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: [SKIP][403] ([i915#3281]) -> [SKIP][404] ([i915#14544] / [i915#3281]) +5 other tests skip [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-7/igt@gem_exec_reloc@basic-write-read.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html * igt@gem_huc_copy@huc-copy: - shard-rkl: [SKIP][405] ([i915#2190]) -> [SKIP][406] ([i915#14544] / [i915#2190]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-4/igt@gem_huc_copy@huc-copy.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-random: - shard-rkl: [SKIP][407] ([i915#14544] / [i915#4613]) -> [SKIP][408] ([i915#4613]) +1 other test skip [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@gem_lmem_swapping@heavy-random.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-2/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@verify: - shard-rkl: [SKIP][409] ([i915#4613]) -> [SKIP][410] ([i915#14544] / [i915#4613]) +1 other test skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-5/igt@gem_lmem_swapping@verify.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@gem_lmem_swapping@verify.html * igt@gem_madvise@dontneed-before-pwrite: - shard-rkl: [SKIP][411] ([i915#14544] / [i915#3282]) -> [SKIP][412] ([i915#3282]) +2 other tests skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@gem_madvise@dontneed-before-pwrite.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-rkl: [SKIP][413] ([i915#3282]) -> [SKIP][414] ([i915#14544] / [i915#3282]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-4/igt@gem_tiled_partial_pwrite_pread@writes.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: [SKIP][415] ([i915#3297]) -> [SKIP][416] ([i915#14544] / [i915#3297]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-2/igt@gem_userptr_blits@coherency-unsync.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: [SKIP][417] ([i915#14544] / [i915#3282] / [i915#3297]) -> [SKIP][418] ([i915#3282] / [i915#3297]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-4/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: [SKIP][419] ([i915#14544] / [i915#3297]) -> [SKIP][420] ([i915#3297]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@gem_userptr_blits@readonly-unsync.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-2/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@relocations: - shard-rkl: [SKIP][421] ([i915#3281] / [i915#3297]) -> [SKIP][422] ([i915#14544] / [i915#3281] / [i915#3297]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-8/igt@gem_userptr_blits@relocations.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@gem_userptr_blits@relocations.html * igt@gen9_exec_parse@bb-start-far: - shard-rkl: [SKIP][423] ([i915#2527]) -> [SKIP][424] ([i915#14544] / [i915#2527]) +1 other test skip [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-2/igt@gen9_exec_parse@bb-start-far.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: [SKIP][425] ([i915#14544] / [i915#2527]) -> [SKIP][426] ([i915#2527]) +1 other test skip [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-3/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@resize-bar: - shard-rkl: [SKIP][427] ([i915#6412]) -> [SKIP][428] ([i915#14544] / [i915#6412]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-7/igt@i915_module_load@resize-bar.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: [SKIP][429] ([i915#8399]) -> [SKIP][430] ([i915#14544] / [i915#8399]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-7/igt@i915_pm_freq_api@freq-reset-multiple.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_query@hwconfig_table: - shard-rkl: [SKIP][431] ([i915#14544] / [i915#6245]) -> [SKIP][432] ([i915#6245]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@i915_query@hwconfig_table.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-8/igt@i915_query@hwconfig_table.html * igt@intel_hwmon@hwmon-read: - shard-rkl: [SKIP][433] ([i915#7707]) -> [SKIP][434] ([i915#14544] / [i915#7707]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-2/igt@intel_hwmon@hwmon-read.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: [SKIP][435] ([i915#4212] / [i915#4423]) -> [SKIP][436] ([i915#4212]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-dg1-18/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-15/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][437] ([i915#14544] / [i915#5286]) -> [SKIP][438] ([i915#5286]) +1 other test skip [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: [SKIP][439] ([i915#5286]) -> [SKIP][440] ([i915#14544] / [i915#5286]) +2 other tests skip [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: [SKIP][441] ([i915#14544] / [i915#3638]) -> [SKIP][442] ([i915#3638]) +1 other test skip [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-rkl: [SKIP][443] ([i915#3638]) -> [SKIP][444] ([i915#14544] / [i915#3638]) [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-2/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][445] ([i915#6095]) -> [SKIP][446] ([i915#14544] / [i915#6095]) +4 other tests skip [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-rkl: [SKIP][447] ([i915#12313]) -> [SKIP][448] ([i915#12313] / [i915#14544]) +2 other tests skip [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-2/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs: - shard-rkl: [SKIP][449] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][450] ([i915#14098] / [i915#6095]) +11 other tests skip [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][451] ([i915#14544] / [i915#6095]) -> [SKIP][452] ([i915#6095]) +6 other tests skip [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: [SKIP][453] ([i915#14098] / [i915#6095]) -> [SKIP][454] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: [SKIP][455] ([i915#12313] / [i915#14544]) -> [SKIP][456] ([i915#12313]) [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_chamelium_color_pipeline@plane-lut1d: - shard-rkl: [SKIP][457] ([i915#16471]) -> [SKIP][458] ([i915#14544] / [i915#16471]) [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-8/igt@kms_chamelium_color_pipeline@plane-lut1d.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut3d-green-only: - shard-rkl: [SKIP][459] ([i915#14544] / [i915#16471]) -> [SKIP][460] ([i915#16471]) [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: [SKIP][461] ([i915#11151] / [i915#7828]) -> [SKIP][462] ([i915#11151] / [i915#14544] / [i915#7828]) +5 other tests skip [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-8/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-rkl: [SKIP][463] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][464] ([i915#11151] / [i915#7828]) +2 other tests skip [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-storm.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-8/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_content_protection@content-type-change: - shard-rkl: [SKIP][465] ([i915#14544] / [i915#15865]) -> [SKIP][466] ([i915#15865]) +2 other tests skip [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_content_protection@content-type-change.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-8/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][467] ([i915#9433]) -> [SKIP][468] ([i915#15865]) [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-dg1-12/igt@kms_content_protection@mei-interface.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-17/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-rkl: [SKIP][469] ([i915#15865]) -> [SKIP][470] ([i915#14544] / [i915#15865]) [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-8/igt@kms_content_protection@srm.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: [SKIP][471] ([i915#13049] / [i915#14544]) -> [SKIP][472] ([i915#13049]) +1 other test skip [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x512.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: [SKIP][473] ([i915#14544] / [i915#3555]) -> [SKIP][474] ([i915#3555]) +2 other tests skip [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: [SKIP][475] ([i915#14544]) -> [SKIP][476] +53 other tests skip [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-2/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: [SKIP][477] ([i915#14544] / [i915#4103]) -> [SKIP][478] ([i915#4103]) [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: [SKIP][479] ([i915#14544] / [i915#3555] / [i915#3804]) -> [SKIP][480] ([i915#3555] / [i915#3804]) [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][481] ([i915#14544] / [i915#3804]) -> [SKIP][482] ([i915#3804]) [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: [SKIP][483] ([i915#13707]) -> [SKIP][484] ([i915#13707] / [i915#14544]) [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-basic-ultrajoiner: - shard-rkl: [SKIP][485] ([i915#14544] / [i915#16361]) -> [SKIP][486] ([i915#16361]) [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_dsc@dsc-basic-ultrajoiner.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@kms_dsc@dsc-basic-ultrajoiner.html * igt@kms_dsc@dsc-fractional-bpp-ultrajoiner: - shard-rkl: [SKIP][487] ([i915#16361]) -> [SKIP][488] ([i915#14544] / [i915#16361]) +2 other tests skip [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp-ultrajoiner.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-ultrajoiner.html * igt@kms_feature_discovery@display-4x: - shard-rkl: [SKIP][489] ([i915#16081]) -> [SKIP][490] ([i915#14544] / [i915#16081]) [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-4/igt@kms_feature_discovery@display-4x.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: [SKIP][491] ([i915#14544] / [i915#16599]) -> [SKIP][492] ([i915#16599]) [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-rkl: [SKIP][493] ([i915#658]) -> [SKIP][494] ([i915#14544] / [i915#658]) [493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-5/igt@kms_feature_discovery@psr2.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-rkl: [SKIP][495] ([i915#9934]) -> [SKIP][496] ([i915#14544] / [i915#9934]) +3 other tests skip [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-2/igt@kms_flip@2x-modeset-vs-vblank-race.html [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: [INCOMPLETE][497] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][498] ([i915#12745] / [i915#4839]) [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-glk3/igt@kms_flip@flip-vs-suspend-interruptible.html [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-glk6/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-rkl: [SKIP][499] ([i915#15643]) -> [SKIP][500] ([i915#14544] / [i915#15643]) [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-rkl: [SKIP][501] ([i915#14544] / [i915#15643]) -> [SKIP][502] ([i915#15643]) [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: [SKIP][503] ([i915#14544] / [i915#5439]) -> [SKIP][504] ([i915#5439]) [503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-onoff: - shard-rkl: [SKIP][505] -> [SKIP][506] ([i915#14544]) +44 other tests skip [505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-4/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-onoff.html [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-cpu: - shard-dg1: [SKIP][507] ([i915#4423]) -> [SKIP][508] [507]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-dg1-12/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-19/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: [SKIP][509] ([i915#15102] / [i915#3023]) -> [SKIP][510] ([i915#14544] / [i915#15102] / [i915#3023]) +13 other tests skip [509]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: [SKIP][511] ([i915#15102]) -> [SKIP][512] ([i915#10433] / [i915#15102]) +1 other test skip [511]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][513] ([i915#14544] / [i915#1825]) -> [SKIP][514] ([i915#1825]) +4 other tests skip [513]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][515] ([i915#1825]) -> [SKIP][516] ([i915#14544] / [i915#1825]) +2 other tests skip [515]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: [SKIP][517] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][518] ([i915#15102] / [i915#3023]) +7 other tests skip [517]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: [SKIP][519] ([i915#15990]) -> [SKIP][520] ([i915#15990] / [i915#4423]) [519]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-shrfb-draw-mmap-wc.html [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-suspend: - shard-rkl: [SKIP][521] ([i915#15989]) -> [INCOMPLETE][522] ([i915#16056]) [521]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-4/igt@kms_frontbuffer_tracking@hdr-suspend.html [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-suspend.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][523] ([i915#15102]) -> [SKIP][524] ([i915#14544] / [i915#15102]) +14 other tests skip [523]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-blt: - shard-rkl: [SKIP][525] ([i915#14544] / [i915#15102]) -> [SKIP][526] ([i915#15102]) +11 other tests skip [525]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-blt.html [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@kms_frontbuffer_tracking@psrhdr-rgb101010-draw-blt.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][527] ([i915#15815]) -> [SKIP][528] ([i915#14544] / [i915#15815]) [527]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-rkl: [SKIP][529] ([i915#14544] / [i915#15709]) -> [SKIP][530] ([i915#15709]) +1 other test skip [529]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-rkl: [SKIP][531] ([i915#15709]) -> [SKIP][532] ([i915#14544] / [i915#15709]) +2 other tests skip [531]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-2/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_plane_multiple@tiling-4: - shard-rkl: [SKIP][533] ([i915#14259] / [i915#14544]) -> [SKIP][534] ([i915#14259]) [533]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_plane_multiple@tiling-4.html [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@kms_plane_multiple@tiling-4.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: [SKIP][535] ([i915#12343] / [i915#5354]) -> [SKIP][536] ([i915#12343] / [i915#14544] / [i915#5354]) +2 other tests skip [535]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-3/igt@kms_pm_backlight@bad-brightness.html [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][537] ([i915#14544] / [i915#15739]) -> [SKIP][538] ([i915#15739]) [537]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][539] ([i915#3828]) -> [SKIP][540] ([i915#9340]) [539]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-rkl: [SKIP][541] ([i915#11520]) -> [SKIP][542] ([i915#11520] / [i915#14544]) +4 other tests skip [541]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-3/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area: - shard-rkl: [SKIP][543] ([i915#11520] / [i915#14544]) -> [SKIP][544] ([i915#11520]) +1 other test skip [543]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-2/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr@pr-primary-mmap-gtt: - shard-rkl: [SKIP][545] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][546] ([i915#1072] / [i915#9732]) +10 other tests skip [545]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_psr@pr-primary-mmap-gtt.html [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@kms_psr@pr-primary-mmap-gtt.html * igt@kms_psr@psr-cursor-render: - shard-rkl: [SKIP][547] ([i915#1072] / [i915#9732]) -> [SKIP][548] ([i915#1072] / [i915#14544] / [i915#9732]) +9 other tests skip [547]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-4/igt@kms_psr@psr-cursor-render.html [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_psr@psr-cursor-render.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: [SKIP][549] ([i915#14544] / [i915#5289]) -> [SKIP][550] ([i915#5289]) [549]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: [SKIP][551] ([i915#15867] / [i915#5190]) -> [SKIP][552] ([i915#12755] / [i915#15867] / [i915#5190]) [551]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@basic-clone-single-crtc: - shard-rkl: [SKIP][553] ([i915#3555]) -> [SKIP][554] ([i915#14544] / [i915#3555]) +2 other tests skip [553]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-5/igt@kms_setmode@basic-clone-single-crtc.html [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_vrr@flip-suspend: - shard-rkl: [SKIP][555] ([i915#15243] / [i915#3555]) -> [SKIP][556] ([i915#14544] / [i915#15243] / [i915#3555]) [555]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-2/igt@kms_vrr@flip-suspend.html [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: [SKIP][557] ([i915#14544] / [i915#9906]) -> [SKIP][558] ([i915#9906]) [557]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-drrs.html [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-rkl: [SKIP][559] ([i915#9906]) -> [SKIP][560] ([i915#14544] / [i915#9906]) [559]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-vrr.html [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: [SKIP][561] ([i915#2433]) -> [SKIP][562] ([i915#14544] / [i915#2433]) [561]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-5/igt@perf@unprivileged-single-ctx-counters.html [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@module-unload: - shard-dg2: [ABORT][563] ([i915#15778]) -> [ABORT][564] ([i915#13029] / [i915#15778]) [563]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-dg2-6/igt@perf_pmu@module-unload.html [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-dg2-6/igt@perf_pmu@module-unload.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-rkl: [SKIP][565] ([i915#14544] / [i915#9917]) -> [SKIP][566] ([i915#9917]) [565]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18891/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/shard-rkl-5/igt@sriov_basic@enable-vfs-bind-unbind-each.html [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786 [i915#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586 [i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14995]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14995 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15314 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15454 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500 [i915#15542]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15542 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056 [i915#16066]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16066 [i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079 [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081 [i915#16112]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16112 [i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182 [i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184 [i915#16236]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16236 [i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348 [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361 [i915#16464]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16464 [i915#16466]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16466 [i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471 [i915#16479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16479 [i915#16490]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16490 [i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518 [i915#16599]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16599 [i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600 [i915#16644]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16644 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [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#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#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [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#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [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#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566 [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#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [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#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 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_9024 -> IGTPW_15591 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18891: f695353a53ddf71634a3ce05b9fb237715419bbb @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15591: 15591 IGT_9024: 03b51ac5b6eaa5ff645f1728eb7404df874f0181 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15591/index.html [-- Attachment #2: Type: text/html, Size: 189538 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-07-25 7:17 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-07-24 6:48 [PATCH i-g-t v3 1/3] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test Jesse Zhang 2026-07-24 6:48 ` [PATCH i-g-t V3 2/3] tests/amdgpu/amd_deadlock: add gfx user-queue priv-fault " Jesse Zhang 2026-07-24 6:48 ` [PATCH i-g-t V3 3/3] tests/amdgpu/amd_deadlock: add gfx user-queue priv-instruction " Jesse Zhang 2026-07-24 7:40 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,v3,1/3] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang " Patchwork 2026-07-24 9:01 ` ✓ i915.CI.BAT: " Patchwork 2026-07-24 23:31 ` ✓ Xe.CI.FULL: " Patchwork 2026-07-25 7:17 ` ✓ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox