* [PATCH v2 0/3] Some more xe_migrate_access_memory fixes
@ 2025-07-31 9:38 Matthew Auld
2025-07-31 9:38 ` [PATCH v2 1/3] drm/xe/migrate: prevent infinite recursion Matthew Auld
` (6 more replies)
0 siblings, 7 replies; 9+ messages in thread
From: Matthew Auld @ 2025-07-31 9:38 UTC (permalink / raw)
To: intel-xe
Some more fixes to hopefully to get this working correctly with eudebug testcases. Tested locally on
BMG.
v2:
- Various improvements from Stuart.
--
2.50.1
^ permalink raw reply [flat|nested] 9+ messages in thread* [PATCH v2 1/3] drm/xe/migrate: prevent infinite recursion 2025-07-31 9:38 [PATCH v2 0/3] Some more xe_migrate_access_memory fixes Matthew Auld @ 2025-07-31 9:38 ` Matthew Auld 2025-07-31 14:28 ` Summers, Stuart 2025-07-31 9:38 ` [PATCH v2 2/3] drm/xe/migrate: don't overflow max copy size Matthew Auld ` (5 subsequent siblings) 6 siblings, 1 reply; 9+ messages in thread From: Matthew Auld @ 2025-07-31 9:38 UTC (permalink / raw) To: intel-xe; +Cc: Maciej Patelczyk, Stuart Summers, Matthew Brost If the buf + offset is not aligned to XE_CAHELINE_BYTES we fallback to using a bounce buffer. However the bounce buffer here is allocated on the stack, and the only alignment requirement here is that it's naturally aligned to u8, and not XE_CACHELINE_BYTES. If the bounce buffer is also misaligned we then recurse back into the function again, however the new bounce buffer might also not be aligned, and might never be until we eventually blow through the stack, as we keep recursing. Instead of using the stack use kmalloc, which should respect the power-of-two alignment request here. Fixes a kernel panic when triggering this path through eudebug. v2 (Stuart): - Add build bug check for power-of-two restriction - s/EINVAL/ENOMEM/ Fixes: 270172f64b11 ("drm/xe: Update xe_ttm_access_memory to use GPU for non-visible access") Signed-off-by: Matthew Auld <matthew.auld@intel.com> Cc: Maciej Patelczyk <maciej.patelczyk@intel.com> Cc: Stuart Summers <stuart.summers@intel.com> Cc: Matthew Brost <matthew.brost@intel.com> --- drivers/gpu/drm/xe/xe_migrate.c | 32 ++++++++++++++++++++------------ 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c index 3a276e2348a2..b8d1ec4c1861 100644 --- a/drivers/gpu/drm/xe/xe_migrate.c +++ b/drivers/gpu/drm/xe/xe_migrate.c @@ -1987,15 +1987,22 @@ int xe_migrate_access_memory(struct xe_migrate *m, struct xe_bo *bo, if (!IS_ALIGNED(len, XE_CACHELINE_BYTES) || !IS_ALIGNED((unsigned long)buf + offset, XE_CACHELINE_BYTES)) { int buf_offset = 0; + void *bounce; + int err; + + BUILD_BUG_ON(!is_power_of_2(XE_CACHELINE_BYTES)); + bounce = kmalloc(XE_CACHELINE_BYTES, GFP_KERNEL); + if (!bounce) + return -ENOMEM; + + xe_assert(xe, IS_ALIGNED((unsigned long)bounce, + XE_CACHELINE_BYTES)); /* * Less than ideal for large unaligned access but this should be * fairly rare, can fixup if this becomes common. */ do { - u8 bounce[XE_CACHELINE_BYTES]; - void *ptr = (void *)bounce; - int err; int copy_bytes = min_t(int, bytes_left, XE_CACHELINE_BYTES - (offset & XE_CACHELINE_MASK)); @@ -2004,22 +2011,22 @@ int xe_migrate_access_memory(struct xe_migrate *m, struct xe_bo *bo, err = xe_migrate_access_memory(m, bo, offset & ~XE_CACHELINE_MASK, - (void *)ptr, - sizeof(bounce), 0); + bounce, + XE_CACHELINE_BYTES, 0); if (err) - return err; + break; if (write) { - memcpy(ptr + ptr_offset, buf + buf_offset, copy_bytes); + memcpy(bounce + ptr_offset, buf + buf_offset, copy_bytes); err = xe_migrate_access_memory(m, bo, offset & ~XE_CACHELINE_MASK, - (void *)ptr, - sizeof(bounce), write); + bounce, + XE_CACHELINE_BYTES, write); if (err) - return err; + break; } else { - memcpy(buf + buf_offset, ptr + ptr_offset, + memcpy(buf + buf_offset, bounce + ptr_offset, copy_bytes); } @@ -2028,7 +2035,8 @@ int xe_migrate_access_memory(struct xe_migrate *m, struct xe_bo *bo, offset += copy_bytes; } while (bytes_left); - return 0; + kfree(bounce); + return err; } dma_addr = xe_migrate_dma_map(xe, buf, len + page_offset, write); -- 2.50.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [PATCH v2 1/3] drm/xe/migrate: prevent infinite recursion 2025-07-31 9:38 ` [PATCH v2 1/3] drm/xe/migrate: prevent infinite recursion Matthew Auld @ 2025-07-31 14:28 ` Summers, Stuart 0 siblings, 0 replies; 9+ messages in thread From: Summers, Stuart @ 2025-07-31 14:28 UTC (permalink / raw) To: intel-xe@lists.freedesktop.org, Auld, Matthew Cc: Patelczyk, Maciej, Brost, Matthew On Thu, 2025-07-31 at 10:38 +0100, Matthew Auld wrote: > If the buf + offset is not aligned to XE_CAHELINE_BYTES we fallback > to > using a bounce buffer. However the bounce buffer here is allocated on > the stack, and the only alignment requirement here is that it's > naturally aligned to u8, and not XE_CACHELINE_BYTES. If the bounce > buffer is also misaligned we then recurse back into the function > again, > however the new bounce buffer might also not be aligned, and might > never > be until we eventually blow through the stack, as we keep recursing. > > Instead of using the stack use kmalloc, which should respect the > power-of-two alignment request here. Fixes a kernel panic when > triggering this path through eudebug. > > v2 (Stuart): > - Add build bug check for power-of-two restriction > - s/EINVAL/ENOMEM/ > > Fixes: 270172f64b11 ("drm/xe: Update xe_ttm_access_memory to use GPU > for non-visible access") > Signed-off-by: Matthew Auld <matthew.auld@intel.com> > Cc: Maciej Patelczyk <maciej.patelczyk@intel.com> > Cc: Stuart Summers <stuart.summers@intel.com> > Cc: Matthew Brost <matthew.brost@intel.com> > --- > drivers/gpu/drm/xe/xe_migrate.c | 32 ++++++++++++++++++++----------- > - > 1 file changed, 20 insertions(+), 12 deletions(-) > > diff --git a/drivers/gpu/drm/xe/xe_migrate.c > b/drivers/gpu/drm/xe/xe_migrate.c > index 3a276e2348a2..b8d1ec4c1861 100644 > --- a/drivers/gpu/drm/xe/xe_migrate.c > +++ b/drivers/gpu/drm/xe/xe_migrate.c > @@ -1987,15 +1987,22 @@ int xe_migrate_access_memory(struct > xe_migrate *m, struct xe_bo *bo, > if (!IS_ALIGNED(len, XE_CACHELINE_BYTES) || > !IS_ALIGNED((unsigned long)buf + offset, > XE_CACHELINE_BYTES)) { > int buf_offset = 0; > + void *bounce; > + int err; > + > + BUILD_BUG_ON(!is_power_of_2(XE_CACHELINE_BYTES)); > + bounce = kmalloc(XE_CACHELINE_BYTES, GFP_KERNEL); > + if (!bounce) > + return -ENOMEM; > + > + xe_assert(xe, IS_ALIGNED((unsigned long)bounce, > + XE_CACHELINE_BYTES)); Personally I think this is a little overkill. I guess it does save us in case that pow-of-2 requirement in kmalloc changes, but as discussed in for instance https://lwn.net/Articles/802469/, a lot of other kernel usages would fail if this was the case. But also.. not a problem having it either, just the extra code. Reviewed-by: Stuart Summers <stuart.summers@intel.com> Thanks for the fix! -Stuart > > /* > * Less than ideal for large unaligned access but > this should be > * fairly rare, can fixup if this becomes common. > */ > do { > - u8 bounce[XE_CACHELINE_BYTES]; > - void *ptr = (void *)bounce; > - int err; > int copy_bytes = min_t(int, bytes_left, > XE_CACHELINE_BYTES - > (offset & > XE_CACHELINE_MASK)); > @@ -2004,22 +2011,22 @@ int xe_migrate_access_memory(struct > xe_migrate *m, struct xe_bo *bo, > err = xe_migrate_access_memory(m, bo, > offset & > > ~XE_CACHELINE_MASK, > - (void *)ptr, > - > sizeof(bounce), 0); > + bounce, > + > XE_CACHELINE_BYTES, 0); > if (err) > - return err; > + break; > > if (write) { > - memcpy(ptr + ptr_offset, buf + > buf_offset, copy_bytes); > + memcpy(bounce + ptr_offset, buf + > buf_offset, copy_bytes); > > err = xe_migrate_access_memory(m, bo, > offset > & ~XE_CACHELINE_MASK, > - (void > *)ptr, > - > sizeof(bounce), write); > + > bounce, > + > XE_CACHELINE_BYTES, write); > if (err) > - return err; > + break; > } else { > - memcpy(buf + buf_offset, ptr + > ptr_offset, > + memcpy(buf + buf_offset, bounce + > ptr_offset, > copy_bytes); > } > > @@ -2028,7 +2035,8 @@ int xe_migrate_access_memory(struct xe_migrate > *m, struct xe_bo *bo, > offset += copy_bytes; > } while (bytes_left); > > - return 0; > + kfree(bounce); > + return err; > } > > dma_addr = xe_migrate_dma_map(xe, buf, len + page_offset, > write); ^ permalink raw reply [flat|nested] 9+ messages in thread
* [PATCH v2 2/3] drm/xe/migrate: don't overflow max copy size 2025-07-31 9:38 [PATCH v2 0/3] Some more xe_migrate_access_memory fixes Matthew Auld 2025-07-31 9:38 ` [PATCH v2 1/3] drm/xe/migrate: prevent infinite recursion Matthew Auld @ 2025-07-31 9:38 ` Matthew Auld 2025-07-31 9:38 ` [PATCH v2 3/3] drm/xe/migrate: prevent potential UAF Matthew Auld ` (4 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Matthew Auld @ 2025-07-31 9:38 UTC (permalink / raw) To: intel-xe; +Cc: Maciej Patelczyk, Matthew Brost, Stuart Summers With non-page aligned copy, we need to use 4 byte aligned pitch, however the size itself might still be close to our maximum of ~8M, and so the dimensions of the copy can easily exceed the S16_MAX limit of the copy command leading to the following assert: xe 0000:03:00.0: [drm] Assertion `size / pitch <= ((s16)(((u16)~0U) >> 1))` failed! platform: BATTLEMAGE subplatform: 1 graphics: Xe2_HPG 20.01 step A0 media: Xe2_HPM 13.01 step A1 tile: 0 VRAM 10.0 GiB GT: 0 type 1 WARNING: CPU: 23 PID: 10605 at drivers/gpu/drm/xe/xe_migrate.c:673 emit_copy+0x4b5/0x4e0 [xe] To fix this account for the pitch when calculating the number of current bytes to copy. Fixes: 270172f64b11 ("drm/xe: Update xe_ttm_access_memory to use GPU for non-visible access") Signed-off-by: Matthew Auld <matthew.auld@intel.com> Cc: Maciej Patelczyk <maciej.patelczyk@intel.com> Cc: Matthew Brost <matthew.brost@intel.com> Reviewed-by: Stuart Summers <stuart.summers@intel.com> --- drivers/gpu/drm/xe/xe_migrate.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c index b8d1ec4c1861..30f40e1201c4 100644 --- a/drivers/gpu/drm/xe/xe_migrate.c +++ b/drivers/gpu/drm/xe/xe_migrate.c @@ -2057,6 +2057,12 @@ int xe_migrate_access_memory(struct xe_migrate *m, struct xe_bo *bo, else current_bytes = min_t(int, bytes_left, cursor.size); + if (current_bytes & ~PAGE_MASK) { + int pitch = 4; + + current_bytes = min_t(int, current_bytes, S16_MAX * pitch); + } + if (fence) dma_fence_put(fence); -- 2.50.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH v2 3/3] drm/xe/migrate: prevent potential UAF 2025-07-31 9:38 [PATCH v2 0/3] Some more xe_migrate_access_memory fixes Matthew Auld 2025-07-31 9:38 ` [PATCH v2 1/3] drm/xe/migrate: prevent infinite recursion Matthew Auld 2025-07-31 9:38 ` [PATCH v2 2/3] drm/xe/migrate: don't overflow max copy size Matthew Auld @ 2025-07-31 9:38 ` Matthew Auld 2025-07-31 10:50 ` ✗ CI.checkpatch: warning for Some more xe_migrate_access_memory fixes (rev2) Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Matthew Auld @ 2025-07-31 9:38 UTC (permalink / raw) To: intel-xe; +Cc: Maciej Patelczyk, Matthew Brost, Stuart Summers If we hit the error path, the previous fence (if there is one) has already been put() prior to this, so doing a fence_wait could lead to UAF. Tweak the flow to do to the put() until after we do the wait. Fixes: 270172f64b11 ("drm/xe: Update xe_ttm_access_memory to use GPU for non-visible access") Signed-off-by: Matthew Auld <matthew.auld@intel.com> Cc: Maciej Patelczyk <maciej.patelczyk@intel.com> Cc: Matthew Brost <matthew.brost@intel.com> Reviewed-by: Stuart Summers <stuart.summers@intel.com> --- drivers/gpu/drm/xe/xe_migrate.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/drivers/gpu/drm/xe/xe_migrate.c b/drivers/gpu/drm/xe/xe_migrate.c index 30f40e1201c4..084157e1a9e3 100644 --- a/drivers/gpu/drm/xe/xe_migrate.c +++ b/drivers/gpu/drm/xe/xe_migrate.c @@ -2063,9 +2063,6 @@ int xe_migrate_access_memory(struct xe_migrate *m, struct xe_bo *bo, current_bytes = min_t(int, current_bytes, S16_MAX * pitch); } - if (fence) - dma_fence_put(fence); - __fence = xe_migrate_vram(m, current_bytes, (unsigned long)buf & ~PAGE_MASK, dma_addr + current_page, @@ -2073,11 +2070,15 @@ int xe_migrate_access_memory(struct xe_migrate *m, struct xe_bo *bo, XE_MIGRATE_COPY_TO_VRAM : XE_MIGRATE_COPY_TO_SRAM); if (IS_ERR(__fence)) { - if (fence) + if (fence) { dma_fence_wait(fence, false); + dma_fence_put(fence); + } fence = __fence; goto out_err; } + + dma_fence_put(fence); fence = __fence; buf += current_bytes; -- 2.50.1 ^ permalink raw reply related [flat|nested] 9+ messages in thread
* ✗ CI.checkpatch: warning for Some more xe_migrate_access_memory fixes (rev2) 2025-07-31 9:38 [PATCH v2 0/3] Some more xe_migrate_access_memory fixes Matthew Auld ` (2 preceding siblings ...) 2025-07-31 9:38 ` [PATCH v2 3/3] drm/xe/migrate: prevent potential UAF Matthew Auld @ 2025-07-31 10:50 ` Patchwork 2025-07-31 10:51 ` ✓ CI.KUnit: success " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2025-07-31 10:50 UTC (permalink / raw) To: Matthew Auld; +Cc: intel-xe == Series Details == Series: Some more xe_migrate_access_memory fixes (rev2) URL : https://patchwork.freedesktop.org/series/152297/ State : warning == Summary == + KERNEL=/kernel + git clone https://gitlab.freedesktop.org/drm/maintainer-tools mt Cloning into 'mt'... warning: redirecting to https://gitlab.freedesktop.org/drm/maintainer-tools.git/ + git -C mt rev-list -n1 origin/master c298eac5978c38dcc62a70c0d73c91765e7cc296 + cd /kernel + git config --global --add safe.directory /kernel + git log -n1 commit 93e348d767e58a20b3bfc784f534e4eb8482d109 Author: Matthew Auld <matthew.auld@intel.com> Date: Thu Jul 31 10:38:11 2025 +0100 drm/xe/migrate: prevent potential UAF If we hit the error path, the previous fence (if there is one) has already been put() prior to this, so doing a fence_wait could lead to UAF. Tweak the flow to do to the put() until after we do the wait. Fixes: 270172f64b11 ("drm/xe: Update xe_ttm_access_memory to use GPU for non-visible access") Signed-off-by: Matthew Auld <matthew.auld@intel.com> Cc: Maciej Patelczyk <maciej.patelczyk@intel.com> Cc: Matthew Brost <matthew.brost@intel.com> Reviewed-by: Stuart Summers <stuart.summers@intel.com> + /mt/dim checkpatch 7f74ca5c75dd28bc57d5ea1be165919bc70609d8 drm-intel 50aeca156e40 drm/xe/migrate: prevent infinite recursion b028279263c7 drm/xe/migrate: don't overflow max copy size -:11: WARNING:COMMIT_LOG_LONG_LINE: Prefer a maximum 75 chars per line (possible unwrapped commit description?) #11: xe 0000:03:00.0: [drm] Assertion `size / pitch <= ((s16)(((u16)~0U) >> 1))` failed! total: 0 errors, 1 warnings, 0 checks, 12 lines checked 93e348d767e5 drm/xe/migrate: prevent potential UAF ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ CI.KUnit: success for Some more xe_migrate_access_memory fixes (rev2) 2025-07-31 9:38 [PATCH v2 0/3] Some more xe_migrate_access_memory fixes Matthew Auld ` (3 preceding siblings ...) 2025-07-31 10:50 ` ✗ CI.checkpatch: warning for Some more xe_migrate_access_memory fixes (rev2) Patchwork @ 2025-07-31 10:51 ` Patchwork 2025-07-31 11:53 ` ✓ Xe.CI.BAT: " Patchwork 2025-07-31 13:01 ` ✗ Xe.CI.Full: failure " Patchwork 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2025-07-31 10:51 UTC (permalink / raw) To: Matthew Auld; +Cc: intel-xe == Series Details == Series: Some more xe_migrate_access_memory fixes (rev2) URL : https://patchwork.freedesktop.org/series/152297/ State : success == Summary == + trap cleanup EXIT + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig [10:50:28] Configuring KUnit Kernel ... Generating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [10:50:32] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48 [10:50:59] Starting KUnit Kernel (1/1)... [10:50:59] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [10:50:59] ================== guc_buf (11 subtests) =================== [10:50:59] [PASSED] test_smallest [10:50:59] [PASSED] test_largest [10:50:59] [PASSED] test_granular [10:50:59] [PASSED] test_unique [10:50:59] [PASSED] test_overlap [10:50:59] [PASSED] test_reusable [10:50:59] [PASSED] test_too_big [10:50:59] [PASSED] test_flush [10:50:59] [PASSED] test_lookup [10:50:59] [PASSED] test_data [10:50:59] [PASSED] test_class [10:50:59] ===================== [PASSED] guc_buf ===================== [10:50:59] =================== guc_dbm (7 subtests) =================== [10:50:59] [PASSED] test_empty [10:50:59] [PASSED] test_default [10:50:59] ======================== test_size ======================== [10:50:59] [PASSED] 4 [10:50:59] [PASSED] 8 [10:50:59] [PASSED] 32 [10:50:59] [PASSED] 256 [10:50:59] ==================== [PASSED] test_size ==================== [10:50:59] ======================= test_reuse ======================== [10:50:59] [PASSED] 4 [10:50:59] [PASSED] 8 [10:50:59] [PASSED] 32 [10:50:59] [PASSED] 256 [10:50:59] =================== [PASSED] test_reuse ==================== [10:50:59] =================== test_range_overlap ==================== [10:50:59] [PASSED] 4 [10:50:59] [PASSED] 8 [10:50:59] [PASSED] 32 [10:50:59] [PASSED] 256 [10:50:59] =============== [PASSED] test_range_overlap ================ [10:50:59] =================== test_range_compact ==================== [10:50:59] [PASSED] 4 [10:50:59] [PASSED] 8 [10:50:59] [PASSED] 32 [10:50:59] [PASSED] 256 [10:50:59] =============== [PASSED] test_range_compact ================ [10:50:59] ==================== test_range_spare ===================== [10:50:59] [PASSED] 4 [10:50:59] [PASSED] 8 [10:50:59] [PASSED] 32 [10:50:59] [PASSED] 256 [10:50:59] ================ [PASSED] test_range_spare ================= [10:50:59] ===================== [PASSED] guc_dbm ===================== [10:50:59] =================== guc_idm (6 subtests) =================== [10:50:59] [PASSED] bad_init [10:50:59] [PASSED] no_init [10:50:59] [PASSED] init_fini [10:50:59] [PASSED] check_used [10:50:59] [PASSED] check_quota [10:50:59] [PASSED] check_all [10:50:59] ===================== [PASSED] guc_idm ===================== [10:50:59] ================== no_relay (3 subtests) =================== [10:50:59] [PASSED] xe_drops_guc2pf_if_not_ready [10:51:00] [PASSED] xe_drops_guc2vf_if_not_ready [10:51:00] [PASSED] xe_rejects_send_if_not_ready [10:51:00] ==================== [PASSED] no_relay ===================== [10:51:00] ================== pf_relay (14 subtests) ================== [10:51:00] [PASSED] pf_rejects_guc2pf_too_short [10:51:00] [PASSED] pf_rejects_guc2pf_too_long [10:51:00] [PASSED] pf_rejects_guc2pf_no_payload [10:51:00] [PASSED] pf_fails_no_payload [10:51:00] [PASSED] pf_fails_bad_origin [10:51:00] [PASSED] pf_fails_bad_type [10:51:00] [PASSED] pf_txn_reports_error [10:51:00] [PASSED] pf_txn_sends_pf2guc [10:51:00] [PASSED] pf_sends_pf2guc [10:51:00] [SKIPPED] pf_loopback_nop [10:51:00] [SKIPPED] pf_loopback_echo [10:51:00] [SKIPPED] pf_loopback_fail [10:51:00] [SKIPPED] pf_loopback_busy [10:51:00] [SKIPPED] pf_loopback_retry [10:51:00] ==================== [PASSED] pf_relay ===================== [10:51:00] ================== vf_relay (3 subtests) =================== [10:51:00] [PASSED] vf_rejects_guc2vf_too_short [10:51:00] [PASSED] vf_rejects_guc2vf_too_long [10:51:00] [PASSED] vf_rejects_guc2vf_no_payload [10:51:00] ==================== [PASSED] vf_relay ===================== [10:51:00] ===================== lmtt (1 subtest) ===================== [10:51:00] ======================== test_ops ========================= [10:51:00] [PASSED] 2-level [10:51:00] [PASSED] multi-level [10:51:00] ==================== [PASSED] test_ops ===================== [10:51:00] ====================== [PASSED] lmtt ======================= [10:51:00] ================= pf_service (11 subtests) ================= [10:51:00] [PASSED] pf_negotiate_any [10:51:00] [PASSED] pf_negotiate_base_match [10:51:00] [PASSED] pf_negotiate_base_newer [10:51:00] [PASSED] pf_negotiate_base_next [10:51:00] [SKIPPED] pf_negotiate_base_older [10:51:00] [PASSED] pf_negotiate_base_prev [10:51:00] [PASSED] pf_negotiate_latest_match [10:51:00] [PASSED] pf_negotiate_latest_newer [10:51:00] [PASSED] pf_negotiate_latest_next [10:51:00] [SKIPPED] pf_negotiate_latest_older [10:51:00] [SKIPPED] pf_negotiate_latest_prev [10:51:00] =================== [PASSED] pf_service ==================== [10:51:00] =================== xe_mocs (2 subtests) =================== [10:51:00] ================ xe_live_mocs_kernel_kunit ================ [10:51:00] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============ [10:51:00] ================ xe_live_mocs_reset_kunit ================= [10:51:00] ============ [SKIPPED] xe_live_mocs_reset_kunit ============ [10:51:00] ==================== [SKIPPED] xe_mocs ===================== [10:51:00] ================= xe_migrate (2 subtests) ================== [10:51:00] ================= xe_migrate_sanity_kunit ================= [10:51:00] ============ [SKIPPED] xe_migrate_sanity_kunit ============= [10:51:00] ================== xe_validate_ccs_kunit ================== [10:51:00] ============= [SKIPPED] xe_validate_ccs_kunit ============== [10:51:00] =================== [SKIPPED] xe_migrate =================== [10:51:00] ================== xe_dma_buf (1 subtest) ================== [10:51:00] ==================== xe_dma_buf_kunit ===================== [10:51:00] ================ [SKIPPED] xe_dma_buf_kunit ================ [10:51:00] =================== [SKIPPED] xe_dma_buf =================== [10:51:00] ================= xe_bo_shrink (1 subtest) ================= [10:51:00] =================== xe_bo_shrink_kunit ==================== [10:51:00] =============== [SKIPPED] xe_bo_shrink_kunit =============== [10:51:00] ================== [SKIPPED] xe_bo_shrink ================== [10:51:00] ==================== xe_bo (2 subtests) ==================== [10:51:00] ================== xe_ccs_migrate_kunit =================== [10:51:00] ============== [SKIPPED] xe_ccs_migrate_kunit ============== [10:51:00] ==================== xe_bo_evict_kunit ==================== [10:51:00] =============== [SKIPPED] xe_bo_evict_kunit ================ [10:51:00] ===================== [SKIPPED] xe_bo ====================== [10:51:00] ==================== args (11 subtests) ==================== [10:51:00] [PASSED] count_args_test [10:51:00] [PASSED] call_args_example [10:51:00] [PASSED] call_args_test [10:51:00] [PASSED] drop_first_arg_example [10:51:00] [PASSED] drop_first_arg_test [10:51:00] [PASSED] first_arg_example [10:51:00] [PASSED] first_arg_test [10:51:00] [PASSED] last_arg_example [10:51:00] [PASSED] last_arg_test [10:51:00] [PASSED] pick_arg_example [10:51:00] [PASSED] sep_comma_example [10:51:00] ====================== [PASSED] args ======================= [10:51:00] =================== xe_pci (3 subtests) ==================== [10:51:00] ==================== check_graphics_ip ==================== [10:51:00] [PASSED] 12.70 Xe_LPG [10:51:00] [PASSED] 12.71 Xe_LPG [10:51:00] [PASSED] 12.74 Xe_LPG+ [10:51:00] [PASSED] 20.01 Xe2_HPG [10:51:00] [PASSED] 20.02 Xe2_HPG [10:51:00] [PASSED] 20.04 Xe2_LPG [10:51:00] [PASSED] 30.00 Xe3_LPG [10:51:00] [PASSED] 30.01 Xe3_LPG [10:51:00] [PASSED] 30.03 Xe3_LPG [10:51:00] ================ [PASSED] check_graphics_ip ================ [10:51:00] ===================== check_media_ip ====================== [10:51:00] [PASSED] 13.00 Xe_LPM+ [10:51:00] [PASSED] 13.01 Xe2_HPM [10:51:00] [PASSED] 20.00 Xe2_LPM [10:51:00] [PASSED] 30.00 Xe3_LPM [10:51:00] [PASSED] 30.02 Xe3_LPM [10:51:00] ================= [PASSED] check_media_ip ================== [10:51:00] ================= check_platform_gt_count ================= [10:51:00] [PASSED] 0x9A60 (TIGERLAKE) [10:51:00] [PASSED] 0x9A68 (TIGERLAKE) [10:51:00] [PASSED] 0x9A70 (TIGERLAKE) [10:51:00] [PASSED] 0x9A40 (TIGERLAKE) [10:51:00] [PASSED] 0x9A49 (TIGERLAKE) [10:51:00] [PASSED] 0x9A59 (TIGERLAKE) [10:51:00] [PASSED] 0x9A78 (TIGERLAKE) [10:51:00] [PASSED] 0x9AC0 (TIGERLAKE) [10:51:00] [PASSED] 0x9AC9 (TIGERLAKE) [10:51:00] [PASSED] 0x9AD9 (TIGERLAKE) [10:51:00] [PASSED] 0x9AF8 (TIGERLAKE) [10:51:00] [PASSED] 0x4C80 (ROCKETLAKE) [10:51:00] [PASSED] 0x4C8A (ROCKETLAKE) [10:51:00] [PASSED] 0x4C8B (ROCKETLAKE) [10:51:00] [PASSED] 0x4C8C (ROCKETLAKE) [10:51:00] [PASSED] 0x4C90 (ROCKETLAKE) [10:51:00] [PASSED] 0x4C9A (ROCKETLAKE) [10:51:00] [PASSED] 0x4680 (ALDERLAKE_S) [10:51:00] [PASSED] 0x4682 (ALDERLAKE_S) [10:51:00] [PASSED] 0x4688 (ALDERLAKE_S) [10:51:00] [PASSED] 0x468A (ALDERLAKE_S) [10:51:00] [PASSED] 0x468B (ALDERLAKE_S) [10:51:00] [PASSED] 0x4690 (ALDERLAKE_S) [10:51:00] [PASSED] 0x4692 (ALDERLAKE_S) [10:51:00] [PASSED] 0x4693 (ALDERLAKE_S) [10:51:00] [PASSED] 0x46A0 (ALDERLAKE_P) [10:51:00] [PASSED] 0x46A1 (ALDERLAKE_P) [10:51:00] [PASSED] 0x46A2 (ALDERLAKE_P) [10:51:00] [PASSED] 0x46A3 (ALDERLAKE_P) [10:51:00] [PASSED] 0x46A6 (ALDERLAKE_P) [10:51:00] [PASSED] 0x46A8 (ALDERLAKE_P) [10:51:00] [PASSED] 0x46AA (ALDERLAKE_P) [10:51:00] [PASSED] 0x462A (ALDERLAKE_P) [10:51:00] [PASSED] 0x4626 (ALDERLAKE_P) [10:51:00] [PASSED] 0x4628 (ALDERLAKE_P) [10:51:00] [PASSED] 0x46B0 (ALDERLAKE_P) [10:51:00] [PASSED] 0x46B1 (ALDERLAKE_P) [10:51:00] [PASSED] 0x46B2 (ALDERLAKE_P) [10:51:00] [PASSED] 0x46B3 (ALDERLAKE_P) [10:51:00] [PASSED] 0x46C0 (ALDERLAKE_P) [10:51:00] [PASSED] 0x46C1 (ALDERLAKE_P) [10:51:00] [PASSED] 0x46C2 (ALDERLAKE_P) [10:51:00] [PASSED] 0x46C3 (ALDERLAKE_P) [10:51:00] [PASSED] 0x46D0 (ALDERLAKE_N) [10:51:00] [PASSED] 0x46D1 (ALDERLAKE_N) [10:51:00] [PASSED] 0x46D2 (ALDERLAKE_N) [10:51:00] [PASSED] 0x46D3 (ALDERLAKE_N) [10:51:00] [PASSED] 0x46D4 (ALDERLAKE_N) [10:51:00] [PASSED] 0xA721 (ALDERLAKE_P) [10:51:00] [PASSED] 0xA7A1 (ALDERLAKE_P) [10:51:00] [PASSED] 0xA7A9 (ALDERLAKE_P) [10:51:00] [PASSED] 0xA7AC (ALDERLAKE_P) [10:51:00] [PASSED] 0xA7AD (ALDERLAKE_P) [10:51:00] [PASSED] 0xA720 (ALDERLAKE_P) [10:51:00] [PASSED] 0xA7A0 (ALDERLAKE_P) [10:51:00] [PASSED] 0xA7A8 (ALDERLAKE_P) [10:51:00] [PASSED] 0xA7AA (ALDERLAKE_P) [10:51:00] [PASSED] 0xA7AB (ALDERLAKE_P) [10:51:00] [PASSED] 0xA780 (ALDERLAKE_S) [10:51:00] [PASSED] 0xA781 (ALDERLAKE_S) [10:51:00] [PASSED] 0xA782 (ALDERLAKE_S) [10:51:00] [PASSED] 0xA783 (ALDERLAKE_S) [10:51:00] [PASSED] 0xA788 (ALDERLAKE_S) [10:51:00] [PASSED] 0xA789 (ALDERLAKE_S) [10:51:00] [PASSED] 0xA78A (ALDERLAKE_S) [10:51:00] [PASSED] 0xA78B (ALDERLAKE_S) [10:51:00] [PASSED] 0x4905 (DG1) [10:51:00] [PASSED] 0x4906 (DG1) [10:51:00] [PASSED] 0x4907 (DG1) [10:51:00] [PASSED] 0x4908 (DG1) [10:51:00] [PASSED] 0x4909 (DG1) [10:51:00] [PASSED] 0x56C0 (DG2) [10:51:00] [PASSED] 0x56C2 (DG2) [10:51:00] [PASSED] 0x56C1 (DG2) [10:51:00] [PASSED] 0x7D51 (METEORLAKE) [10:51:00] [PASSED] 0x7DD1 (METEORLAKE) [10:51:00] [PASSED] 0x7D41 (METEORLAKE) [10:51:00] [PASSED] 0x7D67 (METEORLAKE) [10:51:00] [PASSED] 0xB640 (METEORLAKE) [10:51:00] [PASSED] 0x56A0 (DG2) [10:51:00] [PASSED] 0x56A1 (DG2) [10:51:00] [PASSED] 0x56A2 (DG2) [10:51:00] [PASSED] 0x56BE (DG2) [10:51:00] [PASSED] 0x56BF (DG2) [10:51:00] [PASSED] 0x5690 (DG2) [10:51:00] [PASSED] 0x5691 (DG2) [10:51:00] [PASSED] 0x5692 (DG2) [10:51:00] [PASSED] 0x56A5 (DG2) [10:51:00] [PASSED] 0x56A6 (DG2) [10:51:00] [PASSED] 0x56B0 (DG2) [10:51:00] [PASSED] 0x56B1 (DG2) [10:51:00] [PASSED] 0x56BA (DG2) [10:51:00] [PASSED] 0x56BB (DG2) [10:51:00] [PASSED] 0x56BC (DG2) [10:51:00] [PASSED] 0x56BD (DG2) [10:51:00] [PASSED] 0x5693 (DG2) [10:51:00] [PASSED] 0x5694 (DG2) [10:51:00] [PASSED] 0x5695 (DG2) [10:51:00] [PASSED] 0x56A3 (DG2) [10:51:00] [PASSED] 0x56A4 (DG2) [10:51:00] [PASSED] 0x56B2 (DG2) [10:51:00] [PASSED] 0x56B3 (DG2) [10:51:00] [PASSED] 0x5696 (DG2) [10:51:00] [PASSED] 0x5697 (DG2) [10:51:00] [PASSED] 0xB69 (PVC) [10:51:00] [PASSED] 0xB6E (PVC) [10:51:00] [PASSED] 0xBD4 (PVC) [10:51:00] [PASSED] 0xBD5 (PVC) [10:51:00] [PASSED] 0xBD6 (PVC) [10:51:00] [PASSED] 0xBD7 (PVC) [10:51:00] [PASSED] 0xBD8 (PVC) [10:51:00] [PASSED] 0xBD9 (PVC) [10:51:00] [PASSED] 0xBDA (PVC) [10:51:00] [PASSED] 0xBDB (PVC) [10:51:00] [PASSED] 0xBE0 (PVC) [10:51:00] [PASSED] 0xBE1 (PVC) [10:51:00] [PASSED] 0xBE5 (PVC) [10:51:00] [PASSED] 0x7D40 (METEORLAKE) [10:51:00] [PASSED] 0x7D45 (METEORLAKE) [10:51:00] [PASSED] 0x7D55 (METEORLAKE) [10:51:00] [PASSED] 0x7D60 (METEORLAKE) [10:51:00] [PASSED] 0x7DD5 (METEORLAKE) [10:51:00] [PASSED] 0x6420 (LUNARLAKE) [10:51:00] [PASSED] 0x64A0 (LUNARLAKE) [10:51:00] [PASSED] 0x64B0 (LUNARLAKE) [10:51:00] [PASSED] 0xE202 (BATTLEMAGE) [10:51:00] [PASSED] 0xE209 (BATTLEMAGE) [10:51:00] [PASSED] 0xE20B (BATTLEMAGE) [10:51:00] [PASSED] 0xE20C (BATTLEMAGE) [10:51:00] [PASSED] 0xE20D (BATTLEMAGE) [10:51:00] [PASSED] 0xE210 (BATTLEMAGE) [10:51:00] [PASSED] 0xE211 (BATTLEMAGE) [10:51:00] [PASSED] 0xE212 (BATTLEMAGE) [10:51:00] [PASSED] 0xE216 (BATTLEMAGE) [10:51:00] [PASSED] 0xE220 (BATTLEMAGE) [10:51:00] [PASSED] 0xE221 (BATTLEMAGE) [10:51:00] [PASSED] 0xE222 (BATTLEMAGE) [10:51:00] [PASSED] 0xE223 (BATTLEMAGE) [10:51:00] [PASSED] 0xB080 (PANTHERLAKE) [10:51:00] [PASSED] 0xB081 (PANTHERLAKE) [10:51:00] [PASSED] 0xB082 (PANTHERLAKE) [10:51:00] [PASSED] 0xB083 (PANTHERLAKE) [10:51:00] [PASSED] 0xB084 (PANTHERLAKE) [10:51:00] [PASSED] 0xB085 (PANTHERLAKE) [10:51:00] [PASSED] 0xB086 (PANTHERLAKE) [10:51:00] [PASSED] 0xB087 (PANTHERLAKE) [10:51:00] [PASSED] 0xB08F (PANTHERLAKE) [10:51:00] [PASSED] 0xB090 (PANTHERLAKE) [10:51:00] [PASSED] 0xB0A0 (PANTHERLAKE) [10:51:00] [PASSED] 0xB0B0 (PANTHERLAKE) [10:51:00] [PASSED] 0xFD80 (PANTHERLAKE) [10:51:00] [PASSED] 0xFD81 (PANTHERLAKE) [10:51:00] ============= [PASSED] check_platform_gt_count ============= [10:51:00] ===================== [PASSED] xe_pci ====================== [10:51:00] =================== xe_rtp (2 subtests) ==================== [10:51:00] =============== xe_rtp_process_to_sr_tests ================ [10:51:00] [PASSED] coalesce-same-reg [10:51:00] [PASSED] no-match-no-add [10:51:00] [PASSED] match-or [10:51:00] [PASSED] match-or-xfail [10:51:00] [PASSED] no-match-no-add-multiple-rules [10:51:00] [PASSED] two-regs-two-entries [10:51:00] [PASSED] clr-one-set-other [10:51:00] [PASSED] set-field [10:51:00] [PASSED] conflict-duplicate [10:51:00] [PASSED] conflict-not-disjoint [10:51:00] [PASSED] conflict-reg-type [10:51:00] =========== [PASSED] xe_rtp_process_to_sr_tests ============ [10:51:00] ================== xe_rtp_process_tests =================== [10:51:00] [PASSED] active1 [10:51:00] [PASSED] active2 [10:51:00] [PASSED] active-inactive [10:51:00] [PASSED] inactive-active [10:51:00] [PASSED] inactive-1st_or_active-inactive [10:51:00] [PASSED] inactive-2nd_or_active-inactive [10:51:00] [PASSED] inactive-last_or_active-inactive [10:51:00] [PASSED] inactive-no_or_active-inactive [10:51:00] ============== [PASSED] xe_rtp_process_tests =============== [10:51:00] ===================== [PASSED] xe_rtp ====================== [10:51:00] ==================== xe_wa (1 subtest) ===================== [10:51:00] ======================== xe_wa_gt ========================= [10:51:00] [PASSED] TIGERLAKE (B0) [10:51:00] [PASSED] DG1 (A0) [10:51:00] [PASSED] DG1 (B0) [10:51:00] [PASSED] ALDERLAKE_S (A0) [10:51:00] [PASSED] ALDERLAKE_S (B0) [10:51:00] [PASSED] ALDERLAKE_S (C0) [10:51:00] [PASSED] ALDERLAKE_S (D0) [10:51:00] [PASSED] ALDERLAKE_P (A0) [10:51:00] [PASSED] ALDERLAKE_P (B0) [10:51:00] [PASSED] ALDERLAKE_P (C0) [10:51:00] [PASSED] ALDERLAKE_S_RPLS (D0) [10:51:00] [PASSED] ALDERLAKE_P_RPLU (E0) [10:51:00] [PASSED] DG2_G10 (C0) [10:51:00] [PASSED] DG2_G11 (B1) [10:51:00] [PASSED] DG2_G12 (A1) [10:51:00] [PASSED] METEORLAKE (g:A0, m:A0) [10:51:00] [PASSED] METEORLAKE (g:A0, m:A0) [10:51:00] [PASSED] METEORLAKE (g:A0, m:A0) [10:51:00] [PASSED] LUNARLAKE (g:A0, m:A0) [10:51:00] [PASSED] LUNARLAKE (g:B0, m:A0) stty: 'standard input': Inappropriate ioctl for device [10:51:00] [PASSED] BATTLEMAGE (g:A0, m:A1) [10:51:00] ==================== [PASSED] xe_wa_gt ===================== [10:51:00] ====================== [PASSED] xe_wa ====================== [10:51:00] ============================================================ [10:51:00] Testing complete. Ran 297 tests: passed: 281, skipped: 16 [10:51:00] Elapsed time: 31.644s total, 4.190s configuring, 27.137s building, 0.303s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig [10:51:00] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [10:51:01] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48 [10:51:23] Starting KUnit Kernel (1/1)... [10:51:23] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [10:51:23] == drm_test_atomic_get_connector_for_encoder (1 subtest) === [10:51:23] [PASSED] drm_test_drm_atomic_get_connector_for_encoder [10:51:23] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ==== [10:51:23] =========== drm_validate_clone_mode (2 subtests) =========== [10:51:23] ============== drm_test_check_in_clone_mode =============== [10:51:23] [PASSED] in_clone_mode [10:51:23] [PASSED] not_in_clone_mode [10:51:23] ========== [PASSED] drm_test_check_in_clone_mode =========== [10:51:23] =============== drm_test_check_valid_clones =============== [10:51:23] [PASSED] not_in_clone_mode [10:51:23] [PASSED] valid_clone [10:51:23] [PASSED] invalid_clone [10:51:23] =========== [PASSED] drm_test_check_valid_clones =========== [10:51:23] ============= [PASSED] drm_validate_clone_mode ============= [10:51:23] ============= drm_validate_modeset (1 subtest) ============= [10:51:23] [PASSED] drm_test_check_connector_changed_modeset [10:51:23] ============== [PASSED] drm_validate_modeset =============== [10:51:23] ====== drm_test_bridge_get_current_state (2 subtests) ====== [10:51:23] [PASSED] drm_test_drm_bridge_get_current_state_atomic [10:51:23] [PASSED] drm_test_drm_bridge_get_current_state_legacy [10:51:23] ======== [PASSED] drm_test_bridge_get_current_state ======== [10:51:23] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ====== [10:51:23] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic [10:51:23] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled [10:51:23] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy [10:51:23] ======== [PASSED] drm_test_bridge_helper_reset_crtc ======== [10:51:23] ============== drm_bridge_alloc (2 subtests) =============== [10:51:23] [PASSED] drm_test_drm_bridge_alloc_basic [10:51:23] [PASSED] drm_test_drm_bridge_alloc_get_put [10:51:23] ================ [PASSED] drm_bridge_alloc ================= [10:51:23] ================== drm_buddy (7 subtests) ================== [10:51:23] [PASSED] drm_test_buddy_alloc_limit [10:51:23] [PASSED] drm_test_buddy_alloc_optimistic [10:51:23] [PASSED] drm_test_buddy_alloc_pessimistic [10:51:23] [PASSED] drm_test_buddy_alloc_pathological [10:51:23] [PASSED] drm_test_buddy_alloc_contiguous [10:51:23] [PASSED] drm_test_buddy_alloc_clear [10:51:23] [PASSED] drm_test_buddy_alloc_range_bias [10:51:23] ==================== [PASSED] drm_buddy ==================== [10:51:23] ============= drm_cmdline_parser (40 subtests) ============= [10:51:23] [PASSED] drm_test_cmdline_force_d_only [10:51:23] [PASSED] drm_test_cmdline_force_D_only_dvi [10:51:23] [PASSED] drm_test_cmdline_force_D_only_hdmi [10:51:23] [PASSED] drm_test_cmdline_force_D_only_not_digital [10:51:23] [PASSED] drm_test_cmdline_force_e_only [10:51:23] [PASSED] drm_test_cmdline_res [10:51:23] [PASSED] drm_test_cmdline_res_vesa [10:51:23] [PASSED] drm_test_cmdline_res_vesa_rblank [10:51:23] [PASSED] drm_test_cmdline_res_rblank [10:51:23] [PASSED] drm_test_cmdline_res_bpp [10:51:23] [PASSED] drm_test_cmdline_res_refresh [10:51:23] [PASSED] drm_test_cmdline_res_bpp_refresh [10:51:23] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced [10:51:23] [PASSED] drm_test_cmdline_res_bpp_refresh_margins [10:51:23] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off [10:51:23] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on [10:51:23] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog [10:51:23] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital [10:51:23] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on [10:51:23] [PASSED] drm_test_cmdline_res_margins_force_on [10:51:23] [PASSED] drm_test_cmdline_res_vesa_margins [10:51:23] [PASSED] drm_test_cmdline_name [10:51:23] [PASSED] drm_test_cmdline_name_bpp [10:51:23] [PASSED] drm_test_cmdline_name_option [10:51:23] [PASSED] drm_test_cmdline_name_bpp_option [10:51:23] [PASSED] drm_test_cmdline_rotate_0 [10:51:23] [PASSED] drm_test_cmdline_rotate_90 [10:51:23] [PASSED] drm_test_cmdline_rotate_180 [10:51:23] [PASSED] drm_test_cmdline_rotate_270 [10:51:23] [PASSED] drm_test_cmdline_hmirror [10:51:23] [PASSED] drm_test_cmdline_vmirror [10:51:23] [PASSED] drm_test_cmdline_margin_options [10:51:23] [PASSED] drm_test_cmdline_multiple_options [10:51:23] [PASSED] drm_test_cmdline_bpp_extra_and_option [10:51:23] [PASSED] drm_test_cmdline_extra_and_option [10:51:23] [PASSED] drm_test_cmdline_freestanding_options [10:51:23] [PASSED] drm_test_cmdline_freestanding_force_e_and_options [10:51:23] [PASSED] drm_test_cmdline_panel_orientation [10:51:23] ================ drm_test_cmdline_invalid ================= [10:51:23] [PASSED] margin_only [10:51:23] [PASSED] interlace_only [10:51:23] [PASSED] res_missing_x [10:51:23] [PASSED] res_missing_y [10:51:23] [PASSED] res_bad_y [10:51:23] [PASSED] res_missing_y_bpp [10:51:23] [PASSED] res_bad_bpp [10:51:23] [PASSED] res_bad_refresh [10:51:23] [PASSED] res_bpp_refresh_force_on_off [10:51:23] [PASSED] res_invalid_mode [10:51:23] [PASSED] res_bpp_wrong_place_mode [10:51:23] [PASSED] name_bpp_refresh [10:51:23] [PASSED] name_refresh [10:51:23] [PASSED] name_refresh_wrong_mode [10:51:23] [PASSED] name_refresh_invalid_mode [10:51:23] [PASSED] rotate_multiple [10:51:23] [PASSED] rotate_invalid_val [10:51:23] [PASSED] rotate_truncated [10:51:23] [PASSED] invalid_option [10:51:23] [PASSED] invalid_tv_option [10:51:23] [PASSED] truncated_tv_option [10:51:23] ============ [PASSED] drm_test_cmdline_invalid ============= [10:51:23] =============== drm_test_cmdline_tv_options =============== [10:51:23] [PASSED] NTSC [10:51:23] [PASSED] NTSC_443 [10:51:23] [PASSED] NTSC_J [10:51:23] [PASSED] PAL [10:51:23] [PASSED] PAL_M [10:51:23] [PASSED] PAL_N [10:51:23] [PASSED] SECAM [10:51:23] [PASSED] MONO_525 [10:51:23] [PASSED] MONO_625 [10:51:23] =========== [PASSED] drm_test_cmdline_tv_options =========== [10:51:23] =============== [PASSED] drm_cmdline_parser ================ [10:51:23] ========== drmm_connector_hdmi_init (20 subtests) ========== [10:51:23] [PASSED] drm_test_connector_hdmi_init_valid [10:51:23] [PASSED] drm_test_connector_hdmi_init_bpc_8 [10:51:23] [PASSED] drm_test_connector_hdmi_init_bpc_10 [10:51:23] [PASSED] drm_test_connector_hdmi_init_bpc_12 [10:51:23] [PASSED] drm_test_connector_hdmi_init_bpc_invalid [10:51:23] [PASSED] drm_test_connector_hdmi_init_bpc_null [10:51:23] [PASSED] drm_test_connector_hdmi_init_formats_empty [10:51:23] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb [10:51:23] === drm_test_connector_hdmi_init_formats_yuv420_allowed === [10:51:23] [PASSED] supported_formats=0x9 yuv420_allowed=1 [10:51:23] [PASSED] supported_formats=0x9 yuv420_allowed=0 [10:51:23] [PASSED] supported_formats=0x3 yuv420_allowed=1 [10:51:23] [PASSED] supported_formats=0x3 yuv420_allowed=0 [10:51:23] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed === [10:51:23] [PASSED] drm_test_connector_hdmi_init_null_ddc [10:51:23] [PASSED] drm_test_connector_hdmi_init_null_product [10:51:23] [PASSED] drm_test_connector_hdmi_init_null_vendor [10:51:23] [PASSED] drm_test_connector_hdmi_init_product_length_exact [10:51:23] [PASSED] drm_test_connector_hdmi_init_product_length_too_long [10:51:23] [PASSED] drm_test_connector_hdmi_init_product_valid [10:51:23] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact [10:51:23] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long [10:51:23] [PASSED] drm_test_connector_hdmi_init_vendor_valid [10:51:23] ========= drm_test_connector_hdmi_init_type_valid ========= [10:51:23] [PASSED] HDMI-A [10:51:23] [PASSED] HDMI-B [10:51:23] ===== [PASSED] drm_test_connector_hdmi_init_type_valid ===== [10:51:23] ======== drm_test_connector_hdmi_init_type_invalid ======== [10:51:23] [PASSED] Unknown [10:51:23] [PASSED] VGA [10:51:23] [PASSED] DVI-I [10:51:23] [PASSED] DVI-D [10:51:23] [PASSED] DVI-A [10:51:23] [PASSED] Composite [10:51:23] [PASSED] SVIDEO [10:51:23] [PASSED] LVDS [10:51:23] [PASSED] Component [10:51:23] [PASSED] DIN [10:51:23] [PASSED] DP [10:51:23] [PASSED] TV [10:51:23] [PASSED] eDP [10:51:23] [PASSED] Virtual [10:51:23] [PASSED] DSI [10:51:23] [PASSED] DPI [10:51:23] [PASSED] Writeback [10:51:23] [PASSED] SPI [10:51:23] [PASSED] USB [10:51:23] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ==== [10:51:23] ============ [PASSED] drmm_connector_hdmi_init ============= [10:51:23] ============= drmm_connector_init (3 subtests) ============= [10:51:23] [PASSED] drm_test_drmm_connector_init [10:51:23] [PASSED] drm_test_drmm_connector_init_null_ddc [10:51:23] ========= drm_test_drmm_connector_init_type_valid ========= [10:51:23] [PASSED] Unknown [10:51:23] [PASSED] VGA [10:51:23] [PASSED] DVI-I [10:51:23] [PASSED] DVI-D [10:51:23] [PASSED] DVI-A [10:51:23] [PASSED] Composite [10:51:23] [PASSED] SVIDEO [10:51:23] [PASSED] LVDS [10:51:23] [PASSED] Component [10:51:23] [PASSED] DIN [10:51:23] [PASSED] DP [10:51:23] [PASSED] HDMI-A [10:51:23] [PASSED] HDMI-B [10:51:23] [PASSED] TV [10:51:23] [PASSED] eDP [10:51:23] [PASSED] Virtual [10:51:23] [PASSED] DSI [10:51:23] [PASSED] DPI [10:51:23] [PASSED] Writeback [10:51:23] [PASSED] SPI [10:51:23] [PASSED] USB [10:51:23] ===== [PASSED] drm_test_drmm_connector_init_type_valid ===== [10:51:23] =============== [PASSED] drmm_connector_init =============== [10:51:23] ========= drm_connector_dynamic_init (6 subtests) ========== [10:51:23] [PASSED] drm_test_drm_connector_dynamic_init [10:51:23] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc [10:51:23] [PASSED] drm_test_drm_connector_dynamic_init_not_added [10:51:23] [PASSED] drm_test_drm_connector_dynamic_init_properties [10:51:23] ===== drm_test_drm_connector_dynamic_init_type_valid ====== [10:51:23] [PASSED] Unknown [10:51:23] [PASSED] VGA [10:51:23] [PASSED] DVI-I [10:51:23] [PASSED] DVI-D [10:51:23] [PASSED] DVI-A [10:51:23] [PASSED] Composite [10:51:23] [PASSED] SVIDEO [10:51:23] [PASSED] LVDS [10:51:23] [PASSED] Component [10:51:23] [PASSED] DIN [10:51:23] [PASSED] DP [10:51:23] [PASSED] HDMI-A [10:51:23] [PASSED] HDMI-B [10:51:23] [PASSED] TV [10:51:23] [PASSED] eDP [10:51:23] [PASSED] Virtual [10:51:23] [PASSED] DSI [10:51:23] [PASSED] DPI [10:51:23] [PASSED] Writeback [10:51:23] [PASSED] SPI [10:51:23] [PASSED] USB [10:51:23] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid == [10:51:23] ======== drm_test_drm_connector_dynamic_init_name ========= [10:51:23] [PASSED] Unknown [10:51:23] [PASSED] VGA [10:51:23] [PASSED] DVI-I [10:51:23] [PASSED] DVI-D [10:51:23] [PASSED] DVI-A [10:51:23] [PASSED] Composite [10:51:23] [PASSED] SVIDEO [10:51:23] [PASSED] LVDS [10:51:23] [PASSED] Component [10:51:23] [PASSED] DIN [10:51:23] [PASSED] DP [10:51:23] [PASSED] HDMI-A [10:51:23] [PASSED] HDMI-B [10:51:23] [PASSED] TV [10:51:23] [PASSED] eDP [10:51:23] [PASSED] Virtual [10:51:23] [PASSED] DSI [10:51:23] [PASSED] DPI [10:51:23] [PASSED] Writeback [10:51:23] [PASSED] SPI [10:51:23] [PASSED] USB [10:51:23] ==== [PASSED] drm_test_drm_connector_dynamic_init_name ===== [10:51:23] =========== [PASSED] drm_connector_dynamic_init ============ [10:51:23] ==== drm_connector_dynamic_register_early (4 subtests) ===== [10:51:23] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list [10:51:23] [PASSED] drm_test_drm_connector_dynamic_register_early_defer [10:51:23] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init [10:51:23] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object [10:51:23] ====== [PASSED] drm_connector_dynamic_register_early ======= [10:51:23] ======= drm_connector_dynamic_register (7 subtests) ======== [10:51:23] [PASSED] drm_test_drm_connector_dynamic_register_on_list [10:51:23] [PASSED] drm_test_drm_connector_dynamic_register_no_defer [10:51:23] [PASSED] drm_test_drm_connector_dynamic_register_no_init [10:51:23] [PASSED] drm_test_drm_connector_dynamic_register_mode_object [10:51:23] [PASSED] drm_test_drm_connector_dynamic_register_sysfs [10:51:23] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name [10:51:23] [PASSED] drm_test_drm_connector_dynamic_register_debugfs [10:51:23] ========= [PASSED] drm_connector_dynamic_register ========== [10:51:23] = drm_connector_attach_broadcast_rgb_property (2 subtests) = [10:51:23] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property [10:51:23] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector [10:51:23] === [PASSED] drm_connector_attach_broadcast_rgb_property === [10:51:23] ========== drm_get_tv_mode_from_name (2 subtests) ========== [10:51:23] ========== drm_test_get_tv_mode_from_name_valid =========== [10:51:23] [PASSED] NTSC [10:51:23] [PASSED] NTSC-443 [10:51:23] [PASSED] NTSC-J [10:51:23] [PASSED] PAL [10:51:23] [PASSED] PAL-M [10:51:23] [PASSED] PAL-N [10:51:23] [PASSED] SECAM [10:51:23] [PASSED] Mono [10:51:23] ====== [PASSED] drm_test_get_tv_mode_from_name_valid ======= [10:51:23] [PASSED] drm_test_get_tv_mode_from_name_truncated [10:51:23] ============ [PASSED] drm_get_tv_mode_from_name ============ [10:51:23] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) = [10:51:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb [10:51:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc [10:51:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1 [10:51:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc [10:51:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1 [10:51:23] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double [10:51:23] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid = [10:51:23] [PASSED] VIC 96 [10:51:23] [PASSED] VIC 97 [10:51:23] [PASSED] VIC 101 [10:51:23] [PASSED] VIC 102 [10:51:23] [PASSED] VIC 106 [10:51:23] [PASSED] VIC 107 [10:51:23] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid === [10:51:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc [10:51:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc [10:51:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc [10:51:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc [10:51:23] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc [10:51:23] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ==== [10:51:23] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) == [10:51:23] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ==== [10:51:23] [PASSED] Automatic [10:51:23] [PASSED] Full [10:51:23] [PASSED] Limited 16:235 [10:51:23] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name === [10:51:23] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid [10:51:23] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ==== [10:51:23] == drm_hdmi_connector_get_output_format_name (2 subtests) == [10:51:23] === drm_test_drm_hdmi_connector_get_output_format_name ==== [10:51:23] [PASSED] RGB [10:51:23] [PASSED] YUV 4:2:0 [10:51:23] [PASSED] YUV 4:2:2 [10:51:23] [PASSED] YUV 4:4:4 [10:51:23] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name === [10:51:23] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid [10:51:23] ==== [PASSED] drm_hdmi_connector_get_output_format_name ==== [10:51:23] ============= drm_damage_helper (21 subtests) ============== [10:51:23] [PASSED] drm_test_damage_iter_no_damage [10:51:23] [PASSED] drm_test_damage_iter_no_damage_fractional_src [10:51:23] [PASSED] drm_test_damage_iter_no_damage_src_moved [10:51:23] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved [10:51:23] [PASSED] drm_test_damage_iter_no_damage_not_visible [10:51:23] [PASSED] drm_test_damage_iter_no_damage_no_crtc [10:51:23] [PASSED] drm_test_damage_iter_no_damage_no_fb [10:51:23] [PASSED] drm_test_damage_iter_simple_damage [10:51:23] [PASSED] drm_test_damage_iter_single_damage [10:51:23] [PASSED] drm_test_damage_iter_single_damage_intersect_src [10:51:23] [PASSED] drm_test_damage_iter_single_damage_outside_src [10:51:23] [PASSED] drm_test_damage_iter_single_damage_fractional_src [10:51:23] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src [10:51:23] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src [10:51:23] [PASSED] drm_test_damage_iter_single_damage_src_moved [10:51:23] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved [10:51:23] [PASSED] drm_test_damage_iter_damage [10:51:23] [PASSED] drm_test_damage_iter_damage_one_intersect [10:51:23] [PASSED] drm_test_damage_iter_damage_one_outside [10:51:23] [PASSED] drm_test_damage_iter_damage_src_moved [10:51:23] [PASSED] drm_test_damage_iter_damage_not_visible [10:51:23] ================ [PASSED] drm_damage_helper ================ [10:51:23] ============== drm_dp_mst_helper (3 subtests) ============== [10:51:23] ============== drm_test_dp_mst_calc_pbn_mode ============== [10:51:23] [PASSED] Clock 154000 BPP 30 DSC disabled [10:51:23] [PASSED] Clock 234000 BPP 30 DSC disabled [10:51:23] [PASSED] Clock 297000 BPP 24 DSC disabled [10:51:23] [PASSED] Clock 332880 BPP 24 DSC enabled [10:51:23] [PASSED] Clock 324540 BPP 24 DSC enabled [10:51:23] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ========== [10:51:23] ============== drm_test_dp_mst_calc_pbn_div =============== [10:51:23] [PASSED] Link rate 2000000 lane count 4 [10:51:23] [PASSED] Link rate 2000000 lane count 2 [10:51:23] [PASSED] Link rate 2000000 lane count 1 [10:51:23] [PASSED] Link rate 1350000 lane count 4 [10:51:23] [PASSED] Link rate 1350000 lane count 2 [10:51:23] [PASSED] Link rate 1350000 lane count 1 [10:51:23] [PASSED] Link rate 1000000 lane count 4 [10:51:23] [PASSED] Link rate 1000000 lane count 2 [10:51:23] [PASSED] Link rate 1000000 lane count 1 [10:51:23] [PASSED] Link rate 810000 lane count 4 [10:51:23] [PASSED] Link rate 810000 lane count 2 [10:51:23] [PASSED] Link rate 810000 lane count 1 [10:51:23] [PASSED] Link rate 540000 lane count 4 [10:51:23] [PASSED] Link rate 540000 lane count 2 [10:51:23] [PASSED] Link rate 540000 lane count 1 [10:51:23] [PASSED] Link rate 270000 lane count 4 [10:51:23] [PASSED] Link rate 270000 lane count 2 [10:51:23] [PASSED] Link rate 270000 lane count 1 [10:51:23] [PASSED] Link rate 162000 lane count 4 [10:51:23] [PASSED] Link rate 162000 lane count 2 [10:51:23] [PASSED] Link rate 162000 lane count 1 [10:51:23] ========== [PASSED] drm_test_dp_mst_calc_pbn_div =========== [10:51:23] ========= drm_test_dp_mst_sideband_msg_req_decode ========= [10:51:23] [PASSED] DP_ENUM_PATH_RESOURCES with port number [10:51:23] [PASSED] DP_POWER_UP_PHY with port number [10:51:23] [PASSED] DP_POWER_DOWN_PHY with port number [10:51:23] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks [10:51:23] [PASSED] DP_ALLOCATE_PAYLOAD with port number [10:51:23] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI [10:51:23] [PASSED] DP_ALLOCATE_PAYLOAD with PBN [10:51:23] [PASSED] DP_QUERY_PAYLOAD with port number [10:51:23] [PASSED] DP_QUERY_PAYLOAD with VCPI [10:51:23] [PASSED] DP_REMOTE_DPCD_READ with port number [10:51:23] [PASSED] DP_REMOTE_DPCD_READ with DPCD address [10:51:23] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes [10:51:23] [PASSED] DP_REMOTE_DPCD_WRITE with port number [10:51:23] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address [10:51:23] [PASSED] DP_REMOTE_DPCD_WRITE with data array [10:51:23] [PASSED] DP_REMOTE_I2C_READ with port number [10:51:23] [PASSED] DP_REMOTE_I2C_READ with I2C device ID [10:51:23] [PASSED] DP_REMOTE_I2C_READ with transactions array [10:51:23] [PASSED] DP_REMOTE_I2C_WRITE with port number [10:51:23] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID [10:51:23] [PASSED] DP_REMOTE_I2C_WRITE with data array [10:51:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID [10:51:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID [10:51:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event [10:51:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event [10:51:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior [10:51:23] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior [10:51:23] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode ===== [10:51:23] ================ [PASSED] drm_dp_mst_helper ================ [10:51:23] ================== drm_exec (7 subtests) =================== [10:51:23] [PASSED] sanitycheck [10:51:23] [PASSED] test_lock [10:51:23] [PASSED] test_lock_unlock [10:51:23] [PASSED] test_duplicates [10:51:23] [PASSED] test_prepare [10:51:23] [PASSED] test_prepare_array [10:51:23] [PASSED] test_multiple_loops [10:51:23] ==================== [PASSED] drm_exec ===================== [10:51:23] =========== drm_format_helper_test (17 subtests) =========== [10:51:23] ============== drm_test_fb_xrgb8888_to_gray8 ============== [10:51:23] [PASSED] single_pixel_source_buffer [10:51:23] [PASSED] single_pixel_clip_rectangle [10:51:23] [PASSED] well_known_colors [10:51:23] [PASSED] destination_pitch [10:51:23] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ========== [10:51:23] ============= drm_test_fb_xrgb8888_to_rgb332 ============== [10:51:23] [PASSED] single_pixel_source_buffer [10:51:23] [PASSED] single_pixel_clip_rectangle [10:51:23] [PASSED] well_known_colors [10:51:23] [PASSED] destination_pitch [10:51:23] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ========== [10:51:23] ============= drm_test_fb_xrgb8888_to_rgb565 ============== [10:51:23] [PASSED] single_pixel_source_buffer [10:51:23] [PASSED] single_pixel_clip_rectangle [10:51:23] [PASSED] well_known_colors [10:51:23] [PASSED] destination_pitch [10:51:23] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ========== [10:51:23] ============ drm_test_fb_xrgb8888_to_xrgb1555 ============= [10:51:23] [PASSED] single_pixel_source_buffer [10:51:23] [PASSED] single_pixel_clip_rectangle [10:51:23] [PASSED] well_known_colors [10:51:23] [PASSED] destination_pitch [10:51:23] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 ========= [10:51:23] ============ drm_test_fb_xrgb8888_to_argb1555 ============= [10:51:23] [PASSED] single_pixel_source_buffer [10:51:23] [PASSED] single_pixel_clip_rectangle [10:51:23] [PASSED] well_known_colors [10:51:23] [PASSED] destination_pitch [10:51:23] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 ========= [10:51:23] ============ drm_test_fb_xrgb8888_to_rgba5551 ============= [10:51:23] [PASSED] single_pixel_source_buffer [10:51:23] [PASSED] single_pixel_clip_rectangle [10:51:23] [PASSED] well_known_colors [10:51:23] [PASSED] destination_pitch [10:51:23] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 ========= [10:51:23] ============= drm_test_fb_xrgb8888_to_rgb888 ============== [10:51:23] [PASSED] single_pixel_source_buffer [10:51:23] [PASSED] single_pixel_clip_rectangle [10:51:23] [PASSED] well_known_colors [10:51:23] [PASSED] destination_pitch [10:51:23] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ========== [10:51:23] ============= drm_test_fb_xrgb8888_to_bgr888 ============== [10:51:23] [PASSED] single_pixel_source_buffer [10:51:23] [PASSED] single_pixel_clip_rectangle [10:51:23] [PASSED] well_known_colors [10:51:23] [PASSED] destination_pitch [10:51:23] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ========== [10:51:23] ============ drm_test_fb_xrgb8888_to_argb8888 ============= [10:51:23] [PASSED] single_pixel_source_buffer [10:51:23] [PASSED] single_pixel_clip_rectangle [10:51:23] [PASSED] well_known_colors [10:51:23] [PASSED] destination_pitch [10:51:23] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 ========= [10:51:23] =========== drm_test_fb_xrgb8888_to_xrgb2101010 =========== [10:51:23] [PASSED] single_pixel_source_buffer [10:51:23] [PASSED] single_pixel_clip_rectangle [10:51:23] [PASSED] well_known_colors [10:51:23] [PASSED] destination_pitch [10:51:23] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 ======= [10:51:23] =========== drm_test_fb_xrgb8888_to_argb2101010 =========== [10:51:23] [PASSED] single_pixel_source_buffer [10:51:23] [PASSED] single_pixel_clip_rectangle [10:51:23] [PASSED] well_known_colors [10:51:23] [PASSED] destination_pitch [10:51:23] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 ======= [10:51:23] ============== drm_test_fb_xrgb8888_to_mono =============== [10:51:23] [PASSED] single_pixel_source_buffer [10:51:23] [PASSED] single_pixel_clip_rectangle [10:51:23] [PASSED] well_known_colors [10:51:23] [PASSED] destination_pitch [10:51:23] ========== [PASSED] drm_test_fb_xrgb8888_to_mono =========== [10:51:23] ==================== drm_test_fb_swab ===================== [10:51:23] [PASSED] single_pixel_source_buffer [10:51:23] [PASSED] single_pixel_clip_rectangle [10:51:23] [PASSED] well_known_colors [10:51:23] [PASSED] destination_pitch [10:51:23] ================ [PASSED] drm_test_fb_swab ================= [10:51:23] ============ drm_test_fb_xrgb8888_to_xbgr8888 ============= [10:51:23] [PASSED] single_pixel_source_buffer [10:51:23] [PASSED] single_pixel_clip_rectangle [10:51:23] [PASSED] well_known_colors [10:51:23] [PASSED] destination_pitch [10:51:23] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 ========= [10:51:23] ============ drm_test_fb_xrgb8888_to_abgr8888 ============= [10:51:23] [PASSED] single_pixel_source_buffer [10:51:23] [PASSED] single_pixel_clip_rectangle [10:51:23] [PASSED] well_known_colors [10:51:23] [PASSED] destination_pitch [10:51:23] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 ========= [10:51:23] ================= drm_test_fb_clip_offset ================= [10:51:23] [PASSED] pass through [10:51:23] [PASSED] horizontal offset [10:51:23] [PASSED] vertical offset [10:51:23] [PASSED] horizontal and vertical offset [10:51:23] [PASSED] horizontal offset (custom pitch) [10:51:23] [PASSED] vertical offset (custom pitch) [10:51:23] [PASSED] horizontal and vertical offset (custom pitch) [10:51:23] ============= [PASSED] drm_test_fb_clip_offset ============= [10:51:23] =================== drm_test_fb_memcpy ==================== [10:51:23] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258) [10:51:23] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258) [10:51:23] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559) [10:51:23] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258) [10:51:23] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258) [10:51:23] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559) [10:51:23] [PASSED] well_known_colors: XB24 little-endian (0x34324258) [10:51:23] [PASSED] well_known_colors: XRA8 little-endian (0x38415258) [10:51:23] [PASSED] well_known_colors: YU24 little-endian (0x34325559) [10:51:23] [PASSED] destination_pitch: XB24 little-endian (0x34324258) [10:51:23] [PASSED] destination_pitch: XRA8 little-endian (0x38415258) [10:51:23] [PASSED] destination_pitch: YU24 little-endian (0x34325559) [10:51:23] =============== [PASSED] drm_test_fb_memcpy ================ [10:51:23] ============= [PASSED] drm_format_helper_test ============== [10:51:23] ================= drm_format (18 subtests) ================= [10:51:23] [PASSED] drm_test_format_block_width_invalid [10:51:23] [PASSED] drm_test_format_block_width_one_plane [10:51:23] [PASSED] drm_test_format_block_width_two_plane [10:51:23] [PASSED] drm_test_format_block_width_three_plane [10:51:23] [PASSED] drm_test_format_block_width_tiled [10:51:23] [PASSED] drm_test_format_block_height_invalid [10:51:23] [PASSED] drm_test_format_block_height_one_plane [10:51:23] [PASSED] drm_test_format_block_height_two_plane [10:51:23] [PASSED] drm_test_format_block_height_three_plane [10:51:23] [PASSED] drm_test_format_block_height_tiled [10:51:23] [PASSED] drm_test_format_min_pitch_invalid [10:51:23] [PASSED] drm_test_format_min_pitch_one_plane_8bpp [10:51:23] [PASSED] drm_test_format_min_pitch_one_plane_16bpp [10:51:23] [PASSED] drm_test_format_min_pitch_one_plane_24bpp [10:51:23] [PASSED] drm_test_format_min_pitch_one_plane_32bpp [10:51:23] [PASSED] drm_test_format_min_pitch_two_plane [10:51:23] [PASSED] drm_test_format_min_pitch_three_plane_8bpp [10:51:23] [PASSED] drm_test_format_min_pitch_tiled [10:51:23] =================== [PASSED] drm_format ==================== [10:51:23] ============== drm_framebuffer (10 subtests) =============== [10:51:23] ========== drm_test_framebuffer_check_src_coords ========== [10:51:23] [PASSED] Success: source fits into fb [10:51:23] [PASSED] Fail: overflowing fb with x-axis coordinate [10:51:23] [PASSED] Fail: overflowing fb with y-axis coordinate [10:51:23] [PASSED] Fail: overflowing fb with source width [10:51:23] [PASSED] Fail: overflowing fb with source height [10:51:23] ====== [PASSED] drm_test_framebuffer_check_src_coords ====== [10:51:23] [PASSED] drm_test_framebuffer_cleanup [10:51:23] =============== drm_test_framebuffer_create =============== [10:51:23] [PASSED] ABGR8888 normal sizes [10:51:23] [PASSED] ABGR8888 max sizes [10:51:23] [PASSED] ABGR8888 pitch greater than min required [10:51:23] [PASSED] ABGR8888 pitch less than min required [10:51:23] [PASSED] ABGR8888 Invalid width [10:51:23] [PASSED] ABGR8888 Invalid buffer handle [10:51:23] [PASSED] No pixel format [10:51:23] [PASSED] ABGR8888 Width 0 [10:51:23] [PASSED] ABGR8888 Height 0 [10:51:23] [PASSED] ABGR8888 Out of bound height * pitch combination [10:51:23] [PASSED] ABGR8888 Large buffer offset [10:51:23] [PASSED] ABGR8888 Buffer offset for inexistent plane [10:51:23] [PASSED] ABGR8888 Invalid flag [10:51:23] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers [10:51:23] [PASSED] ABGR8888 Valid buffer modifier [10:51:23] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE) [10:51:23] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS [10:51:23] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS [10:51:23] [PASSED] NV12 Normal sizes [10:51:23] [PASSED] NV12 Max sizes [10:51:23] [PASSED] NV12 Invalid pitch [10:51:23] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag [10:51:23] [PASSED] NV12 different modifier per-plane [10:51:23] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE [10:51:23] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS [10:51:23] [PASSED] NV12 Modifier for inexistent plane [10:51:23] [PASSED] NV12 Handle for inexistent plane [10:51:23] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS [10:51:23] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier [10:51:23] [PASSED] YVU420 Normal sizes [10:51:23] [PASSED] YVU420 Max sizes [10:51:23] [PASSED] YVU420 Invalid pitch [10:51:23] [PASSED] YVU420 Different pitches [10:51:23] [PASSED] YVU420 Different buffer offsets/pitches [10:51:23] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS [10:51:23] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS [10:51:23] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS [10:51:23] [PASSED] YVU420 Valid modifier [10:51:23] [PASSED] YVU420 Different modifiers per plane [10:51:23] [PASSED] YVU420 Modifier for inexistent plane [10:51:23] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR) [10:51:23] [PASSED] X0L2 Normal sizes [10:51:23] [PASSED] X0L2 Max sizes [10:51:23] [PASSED] X0L2 Invalid pitch [10:51:23] [PASSED] X0L2 Pitch greater than minimum required [10:51:23] [PASSED] X0L2 Handle for inexistent plane [10:51:23] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set [10:51:23] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set [10:51:23] [PASSED] X0L2 Valid modifier [10:51:23] [PASSED] X0L2 Modifier for inexistent plane [10:51:23] =========== [PASSED] drm_test_framebuffer_create =========== [10:51:23] [PASSED] drm_test_framebuffer_free [10:51:23] [PASSED] drm_test_framebuffer_init [10:51:23] [PASSED] drm_test_framebuffer_init_bad_format [10:51:23] [PASSED] drm_test_framebuffer_init_dev_mismatch [10:51:23] [PASSED] drm_test_framebuffer_lookup [10:51:23] [PASSED] drm_test_framebuffer_lookup_inexistent [10:51:23] [PASSED] drm_test_framebuffer_modifiers_not_supported [10:51:23] ================= [PASSED] drm_framebuffer ================= [10:51:23] ================ drm_gem_shmem (8 subtests) ================ [10:51:23] [PASSED] drm_gem_shmem_test_obj_create [10:51:23] [PASSED] drm_gem_shmem_test_obj_create_private [10:51:23] [PASSED] drm_gem_shmem_test_pin_pages [10:51:23] [PASSED] drm_gem_shmem_test_vmap [10:51:23] [PASSED] drm_gem_shmem_test_get_pages_sgt [10:51:23] [PASSED] drm_gem_shmem_test_get_sg_table [10:51:23] [PASSED] drm_gem_shmem_test_madvise [10:51:23] [PASSED] drm_gem_shmem_test_purge [10:51:23] ================== [PASSED] drm_gem_shmem ================== [10:51:23] === drm_atomic_helper_connector_hdmi_check (27 subtests) === [10:51:23] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode [10:51:23] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1 [10:51:23] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode [10:51:23] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1 [10:51:23] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode [10:51:23] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1 [10:51:23] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 ======= [10:51:23] [PASSED] Automatic [10:51:23] [PASSED] Full [10:51:23] [PASSED] Limited 16:235 [10:51:23] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 === [10:51:23] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed [10:51:23] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed [10:51:23] [PASSED] drm_test_check_disable_connector [10:51:23] [PASSED] drm_test_check_hdmi_funcs_reject_rate [10:51:23] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb [10:51:23] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420 [10:51:23] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422 [10:51:23] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420 [10:51:23] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420 [10:51:23] [PASSED] drm_test_check_output_bpc_crtc_mode_changed [10:51:23] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed [10:51:23] [PASSED] drm_test_check_output_bpc_dvi [10:51:23] [PASSED] drm_test_check_output_bpc_format_vic_1 [10:51:23] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only [10:51:23] [PASSED] drm_test_check_output_bpc_format_display_rgb_only [10:51:23] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only [10:51:23] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only [10:51:23] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc [10:51:23] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc [10:51:23] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc [10:51:23] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ====== [10:51:23] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ==== [10:51:23] [PASSED] drm_test_check_broadcast_rgb_value [10:51:23] [PASSED] drm_test_check_bpc_8_value [10:51:23] [PASSED] drm_test_check_bpc_10_value [10:51:23] [PASSED] drm_test_check_bpc_12_value [10:51:23] [PASSED] drm_test_check_format_value [10:51:23] [PASSED] drm_test_check_tmds_char_value [10:51:23] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ====== [10:51:23] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) = [10:51:23] [PASSED] drm_test_check_mode_valid [10:51:23] [PASSED] drm_test_check_mode_valid_reject [10:51:23] [PASSED] drm_test_check_mode_valid_reject_rate [10:51:23] [PASSED] drm_test_check_mode_valid_reject_max_clock [10:51:23] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid === [10:51:23] ================= drm_managed (2 subtests) ================= [10:51:23] [PASSED] drm_test_managed_release_action [10:51:23] [PASSED] drm_test_managed_run_action [10:51:23] =================== [PASSED] drm_managed =================== [10:51:23] =================== drm_mm (6 subtests) ==================== [10:51:23] [PASSED] drm_test_mm_init [10:51:23] [PASSED] drm_test_mm_debug [10:51:23] [PASSED] drm_test_mm_align32 [10:51:23] [PASSED] drm_test_mm_align64 [10:51:23] [PASSED] drm_test_mm_lowest [10:51:23] [PASSED] drm_test_mm_highest [10:51:23] ===================== [PASSED] drm_mm ====================== [10:51:23] ============= drm_modes_analog_tv (5 subtests) ============= [10:51:23] [PASSED] drm_test_modes_analog_tv_mono_576i [10:51:23] [PASSED] drm_test_modes_analog_tv_ntsc_480i [10:51:23] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined [10:51:23] [PASSED] drm_test_modes_analog_tv_pal_576i [10:51:23] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined [10:51:23] =============== [PASSED] drm_modes_analog_tv =============== [10:51:23] ============== drm_plane_helper (2 subtests) =============== [10:51:23] =============== drm_test_check_plane_state ================ [10:51:23] [PASSED] clipping_simple [10:51:23] [PASSED] clipping_rotate_reflect [10:51:23] [PASSED] positioning_simple [10:51:23] [PASSED] upscaling [10:51:23] [PASSED] downscaling [10:51:23] [PASSED] rounding1 [10:51:23] [PASSED] rounding2 [10:51:23] [PASSED] rounding3 [10:51:23] [PASSED] rounding4 [10:51:23] =========== [PASSED] drm_test_check_plane_state ============ [10:51:23] =========== drm_test_check_invalid_plane_state ============ [10:51:23] [PASSED] positioning_invalid [10:51:23] [PASSED] upscaling_invalid [10:51:23] [PASSED] downscaling_invalid [10:51:23] ======= [PASSED] drm_test_check_invalid_plane_state ======== [10:51:23] ================ [PASSED] drm_plane_helper ================= [10:51:23] ====== drm_connector_helper_tv_get_modes (1 subtest) ======= [10:51:23] ====== drm_test_connector_helper_tv_get_modes_check ======= [10:51:23] [PASSED] None [10:51:23] [PASSED] PAL [10:51:23] [PASSED] NTSC [10:51:23] [PASSED] Both, NTSC Default [10:51:23] [PASSED] Both, PAL Default [10:51:23] [PASSED] Both, NTSC Default, with PAL on command-line [10:51:23] [PASSED] Both, PAL Default, with NTSC on command-line [10:51:23] == [PASSED] drm_test_connector_helper_tv_get_modes_check === [10:51:23] ======== [PASSED] drm_connector_helper_tv_get_modes ======== [10:51:23] ================== drm_rect (9 subtests) =================== [10:51:23] [PASSED] drm_test_rect_clip_scaled_div_by_zero [10:51:23] [PASSED] drm_test_rect_clip_scaled_not_clipped [10:51:23] [PASSED] drm_test_rect_clip_scaled_clipped [10:51:23] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned [10:51:23] ================= drm_test_rect_intersect ================= [10:51:23] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0 [10:51:23] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1 [10:51:23] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0 [10:51:23] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1 [10:51:23] [PASSED] right x left: 2x1+0+0 x 3x1+1+0 [10:51:23] [PASSED] left x right: 3x1+1+0 x 2x1+0+0 [10:51:23] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1 [10:51:23] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0 [10:51:23] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1 [10:51:23] [PASSED] touching side: 1x1+0+0 x 1x1+1+0 [10:51:23] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0 [10:51:23] [PASSED] inside another: 2x2+0+0 x 1x1+1+1 [10:51:23] [PASSED] far away: 1x1+0+0 x 1x1+3+6 [10:51:23] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10 [10:51:23] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10 [10:51:23] ============= [PASSED] drm_test_rect_intersect ============= [10:51:23] ================ drm_test_rect_calc_hscale ================ [10:51:23] [PASSED] normal use [10:51:23] [PASSED] out of max range [10:51:23] [PASSED] out of min range [10:51:23] [PASSED] zero dst [10:51:23] [PASSED] negative src [10:51:23] [PASSED] negative dst [10:51:23] ============ [PASSED] drm_test_rect_calc_hscale ============ [10:51:23] ================ drm_test_rect_calc_vscale ================ [10:51:23] [PASSED] normal use [10:51:23] [PASSED] out of max range [10:51:23] [PASSED] out of min range [10:51:23] [PASSED] zero dst [10:51:23] [PASSED] negative src [10:51:23] [PASSED] negative dst [10:51:23] ============ [PASSED] drm_test_rect_calc_vscale ============ [10:51:23] ================== drm_test_rect_rotate =================== [10:51:23] [PASSED] reflect-x [10:51:23] [PASSED] reflect-y [10:51:23] [PASSED] rotate-0 [10:51:23] [PASSED] rotate-90 [10:51:23] [PASSED] rotate-180 [10:51:23] [PASSED] rotate-270 stty: 'standard input': Inappropriate ioctl for device [10:51:23] ============== [PASSED] drm_test_rect_rotate =============== [10:51:23] ================ drm_test_rect_rotate_inv ================= [10:51:23] [PASSED] reflect-x [10:51:23] [PASSED] reflect-y [10:51:23] [PASSED] rotate-0 [10:51:23] [PASSED] rotate-90 [10:51:23] [PASSED] rotate-180 [10:51:23] [PASSED] rotate-270 [10:51:23] ============ [PASSED] drm_test_rect_rotate_inv ============= [10:51:23] ==================== [PASSED] drm_rect ===================== [10:51:23] ============ drm_sysfb_modeset_test (1 subtest) ============ [10:51:23] ============ drm_test_sysfb_build_fourcc_list ============= [10:51:23] [PASSED] no native formats [10:51:23] [PASSED] XRGB8888 as native format [10:51:23] [PASSED] remove duplicates [10:51:23] [PASSED] convert alpha formats [10:51:23] [PASSED] random formats [10:51:23] ======== [PASSED] drm_test_sysfb_build_fourcc_list ========= [10:51:23] ============= [PASSED] drm_sysfb_modeset_test ============== [10:51:23] ============================================================ [10:51:23] Testing complete. Ran 616 tests: passed: 616 [10:51:23] Elapsed time: 23.515s total, 1.653s configuring, 21.695s building, 0.150s running + /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig [10:51:23] Configuring KUnit Kernel ... Regenerating .config ... Populating config with: $ make ARCH=um O=.kunit olddefconfig [10:51:25] Building KUnit Kernel ... Populating config with: $ make ARCH=um O=.kunit olddefconfig Building with: $ make all compile_commands.json scripts_gdb ARCH=um O=.kunit --jobs=48 [10:51:33] Starting KUnit Kernel (1/1)... [10:51:33] ============================================================ Running tests with: $ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt [10:51:33] ================= ttm_device (5 subtests) ================== [10:51:33] [PASSED] ttm_device_init_basic [10:51:33] [PASSED] ttm_device_init_multiple [10:51:33] [PASSED] ttm_device_fini_basic [10:51:33] [PASSED] ttm_device_init_no_vma_man [10:51:33] ================== ttm_device_init_pools ================== [10:51:33] [PASSED] No DMA allocations, no DMA32 required [10:51:33] [PASSED] DMA allocations, DMA32 required [10:51:33] [PASSED] No DMA allocations, DMA32 required [10:51:33] [PASSED] DMA allocations, no DMA32 required [10:51:33] ============== [PASSED] ttm_device_init_pools ============== [10:51:33] =================== [PASSED] ttm_device ==================== [10:51:33] ================== ttm_pool (8 subtests) =================== [10:51:33] ================== ttm_pool_alloc_basic =================== [10:51:33] [PASSED] One page [10:51:33] [PASSED] More than one page [10:51:33] [PASSED] Above the allocation limit [10:51:33] [PASSED] One page, with coherent DMA mappings enabled [10:51:33] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [10:51:33] ============== [PASSED] ttm_pool_alloc_basic =============== [10:51:33] ============== ttm_pool_alloc_basic_dma_addr ============== [10:51:33] [PASSED] One page [10:51:33] [PASSED] More than one page [10:51:33] [PASSED] Above the allocation limit [10:51:33] [PASSED] One page, with coherent DMA mappings enabled [10:51:33] [PASSED] Above the allocation limit, with coherent DMA mappings enabled [10:51:33] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ========== [10:51:33] [PASSED] ttm_pool_alloc_order_caching_match [10:51:33] [PASSED] ttm_pool_alloc_caching_mismatch [10:51:33] [PASSED] ttm_pool_alloc_order_mismatch [10:51:33] [PASSED] ttm_pool_free_dma_alloc [10:51:33] [PASSED] ttm_pool_free_no_dma_alloc [10:51:33] [PASSED] ttm_pool_fini_basic [10:51:33] ==================== [PASSED] ttm_pool ===================== [10:51:33] ================ ttm_resource (8 subtests) ================= [10:51:33] ================= ttm_resource_init_basic ================= [10:51:33] [PASSED] Init resource in TTM_PL_SYSTEM [10:51:33] [PASSED] Init resource in TTM_PL_VRAM [10:51:33] [PASSED] Init resource in a private placement [10:51:33] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags [10:51:33] ============= [PASSED] ttm_resource_init_basic ============= [10:51:33] [PASSED] ttm_resource_init_pinned [10:51:33] [PASSED] ttm_resource_fini_basic [10:51:33] [PASSED] ttm_resource_manager_init_basic [10:51:33] [PASSED] ttm_resource_manager_usage_basic [10:51:33] [PASSED] ttm_resource_manager_set_used_basic [10:51:33] [PASSED] ttm_sys_man_alloc_basic [10:51:33] [PASSED] ttm_sys_man_free_basic [10:51:33] ================== [PASSED] ttm_resource =================== [10:51:33] =================== ttm_tt (15 subtests) =================== [10:51:33] ==================== ttm_tt_init_basic ==================== [10:51:33] [PASSED] Page-aligned size [10:51:33] [PASSED] Extra pages requested [10:51:33] ================ [PASSED] ttm_tt_init_basic ================ [10:51:33] [PASSED] ttm_tt_init_misaligned [10:51:33] [PASSED] ttm_tt_fini_basic [10:51:33] [PASSED] ttm_tt_fini_sg [10:51:33] [PASSED] ttm_tt_fini_shmem [10:51:33] [PASSED] ttm_tt_create_basic [10:51:33] [PASSED] ttm_tt_create_invalid_bo_type [10:51:33] [PASSED] ttm_tt_create_ttm_exists [10:51:33] [PASSED] ttm_tt_create_failed [10:51:33] [PASSED] ttm_tt_destroy_basic [10:51:33] [PASSED] ttm_tt_populate_null_ttm [10:51:33] [PASSED] ttm_tt_populate_populated_ttm [10:51:33] [PASSED] ttm_tt_unpopulate_basic [10:51:33] [PASSED] ttm_tt_unpopulate_empty_ttm [10:51:33] [PASSED] ttm_tt_swapin_basic [10:51:33] ===================== [PASSED] ttm_tt ====================== [10:51:33] =================== ttm_bo (14 subtests) =================== [10:51:33] =========== ttm_bo_reserve_optimistic_no_ticket =========== [10:51:33] [PASSED] Cannot be interrupted and sleeps [10:51:33] [PASSED] Cannot be interrupted, locks straight away [10:51:33] [PASSED] Can be interrupted, sleeps [10:51:33] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket ======= [10:51:33] [PASSED] ttm_bo_reserve_locked_no_sleep [10:51:33] [PASSED] ttm_bo_reserve_no_wait_ticket [10:51:33] [PASSED] ttm_bo_reserve_double_resv [10:51:33] [PASSED] ttm_bo_reserve_interrupted [10:51:33] [PASSED] ttm_bo_reserve_deadlock [10:51:33] [PASSED] ttm_bo_unreserve_basic [10:51:33] [PASSED] ttm_bo_unreserve_pinned [10:51:33] [PASSED] ttm_bo_unreserve_bulk [10:51:33] [PASSED] ttm_bo_put_basic [10:51:33] [PASSED] ttm_bo_put_shared_resv [10:51:33] [PASSED] ttm_bo_pin_basic [10:51:33] [PASSED] ttm_bo_pin_unpin_resource [10:51:33] [PASSED] ttm_bo_multiple_pin_one_unpin [10:51:33] ===================== [PASSED] ttm_bo ====================== [10:51:33] ============== ttm_bo_validate (21 subtests) =============== [10:51:33] ============== ttm_bo_init_reserved_sys_man =============== [10:51:33] [PASSED] Buffer object for userspace [10:51:33] [PASSED] Kernel buffer object [10:51:33] [PASSED] Shared buffer object [10:51:33] ========== [PASSED] ttm_bo_init_reserved_sys_man =========== [10:51:33] ============== ttm_bo_init_reserved_mock_man ============== [10:51:33] [PASSED] Buffer object for userspace [10:51:33] [PASSED] Kernel buffer object [10:51:33] [PASSED] Shared buffer object [10:51:33] ========== [PASSED] ttm_bo_init_reserved_mock_man ========== [10:51:33] [PASSED] ttm_bo_init_reserved_resv [10:51:33] ================== ttm_bo_validate_basic ================== [10:51:33] [PASSED] Buffer object for userspace [10:51:33] [PASSED] Kernel buffer object [10:51:33] [PASSED] Shared buffer object [10:51:33] ============== [PASSED] ttm_bo_validate_basic ============== [10:51:33] [PASSED] ttm_bo_validate_invalid_placement [10:51:33] ============= ttm_bo_validate_same_placement ============== [10:51:33] [PASSED] System manager [10:51:33] [PASSED] VRAM manager [10:51:33] ========= [PASSED] ttm_bo_validate_same_placement ========== [10:51:33] [PASSED] ttm_bo_validate_failed_alloc [10:51:33] [PASSED] ttm_bo_validate_pinned [10:51:33] [PASSED] ttm_bo_validate_busy_placement [10:51:33] ================ ttm_bo_validate_multihop ================= [10:51:33] [PASSED] Buffer object for userspace [10:51:33] [PASSED] Kernel buffer object [10:51:33] [PASSED] Shared buffer object [10:51:33] ============ [PASSED] ttm_bo_validate_multihop ============= [10:51:33] ========== ttm_bo_validate_no_placement_signaled ========== [10:51:33] [PASSED] Buffer object in system domain, no page vector [10:51:33] [PASSED] Buffer object in system domain with an existing page vector [10:51:33] ====== [PASSED] ttm_bo_validate_no_placement_signaled ====== [10:51:33] ======== ttm_bo_validate_no_placement_not_signaled ======== [10:51:33] [PASSED] Buffer object for userspace [10:51:33] [PASSED] Kernel buffer object [10:51:33] [PASSED] Shared buffer object [10:51:33] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ==== [10:51:33] [PASSED] ttm_bo_validate_move_fence_signaled [10:51:33] ========= ttm_bo_validate_move_fence_not_signaled ========= [10:51:33] [PASSED] Waits for GPU [10:51:33] [PASSED] Tries to lock straight away [10:51:33] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled ===== [10:51:33] [PASSED] ttm_bo_validate_happy_evict [10:51:33] [PASSED] ttm_bo_validate_all_pinned_evict [10:51:33] [PASSED] ttm_bo_validate_allowed_only_evict [10:51:33] [PASSED] ttm_bo_validate_deleted_evict [10:51:33] [PASSED] ttm_bo_validate_busy_domain_evict [10:51:33] [PASSED] ttm_bo_validate_evict_gutting [10:51:33] [PASSED] ttm_bo_validate_recrusive_evict stty: 'standard input': Inappropriate ioctl for device [10:51:33] ================= [PASSED] ttm_bo_validate ================= [10:51:33] ============================================================ [10:51:33] Testing complete. Ran 101 tests: passed: 101 [10:51:33] Elapsed time: 9.560s total, 1.671s configuring, 7.674s building, 0.186s running + cleanup ++ stat -c %u:%g /kernel + chown -R 1003:1003 /kernel ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ Xe.CI.BAT: success for Some more xe_migrate_access_memory fixes (rev2) 2025-07-31 9:38 [PATCH v2 0/3] Some more xe_migrate_access_memory fixes Matthew Auld ` (4 preceding siblings ...) 2025-07-31 10:51 ` ✓ CI.KUnit: success " Patchwork @ 2025-07-31 11:53 ` Patchwork 2025-07-31 13:01 ` ✗ Xe.CI.Full: failure " Patchwork 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2025-07-31 11:53 UTC (permalink / raw) To: Matthew Auld; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 1001 bytes --] == Series Details == Series: Some more xe_migrate_access_memory fixes (rev2) URL : https://patchwork.freedesktop.org/series/152297/ State : success == Summary == CI Bug Log - changes from xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8_BAT -> xe-pw-152297v2_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 7) ------------------------------ Missing (1): bat-adlp-vm Changes ------- No changes found Build changes ------------- * IGT: IGT_8479 -> IGT_8481 * Linux: xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8 -> xe-pw-152297v2 IGT_8479: 5fea7ca6493415ce108231b0ff29f02d293f9aa6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8481: 8481 xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8: 7f74ca5c75dd28bc57d5ea1be165919bc70609d8 xe-pw-152297v2: 152297v2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/index.html [-- Attachment #2: Type: text/html, Size: 1563 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.Full: failure for Some more xe_migrate_access_memory fixes (rev2) 2025-07-31 9:38 [PATCH v2 0/3] Some more xe_migrate_access_memory fixes Matthew Auld ` (5 preceding siblings ...) 2025-07-31 11:53 ` ✓ Xe.CI.BAT: " Patchwork @ 2025-07-31 13:01 ` Patchwork 6 siblings, 0 replies; 9+ messages in thread From: Patchwork @ 2025-07-31 13:01 UTC (permalink / raw) To: Matthew Auld; +Cc: intel-xe [-- Attachment #1: Type: text/plain, Size: 107812 bytes --] == Series Details == Series: Some more xe_migrate_access_memory fixes (rev2) URL : https://patchwork.freedesktop.org/series/152297/ State : failure == Summary == CI Bug Log - changes from xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8_FULL -> xe-pw-152297v2_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with xe-pw-152297v2_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in xe-pw-152297v2_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in xe-pw-152297v2_FULL: ### IGT changes ### #### Possible regressions #### * igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early: - shard-adlp: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-adlp-8/igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-9/igt@xe_fault_injection@inject-fault-probe-function-xe_mmio_probe_early.html * igt@xe_module_load@unload: - shard-dg2-set2: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-dg2-433/igt@xe_module_load@unload.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-434/igt@xe_module_load@unload.html Known issues ------------ Here are the changes found in xe-pw-152297v2_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_getversion@basic: - shard-bmg: [PASS][5] -> [FAIL][6] ([Intel XE#4672]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-1/igt@core_getversion@basic.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@core_getversion@basic.html * igt@core_hotunplug@hotunbind-rebind: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#4963]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@core_hotunplug@hotunbind-rebind.html * igt@core_setmaster@master-drop-set-shared-fd: - shard-bmg: [PASS][8] -> [SKIP][9] ([Intel XE#5715]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-6/igt@core_setmaster@master-drop-set-shared-fd.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@core_setmaster@master-drop-set-shared-fd.html * igt@fbdev@pan: - shard-bmg: [PASS][10] -> [SKIP][11] ([Intel XE#2134]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-1/igt@fbdev@pan.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@fbdev@pan.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-dg2-set2: [PASS][12] -> [INCOMPLETE][13] ([Intel XE#4912]) +1 other test incomplete [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-dg2-433/igt@kms_async_flips@async-flip-suspend-resume.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-466/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-adlp: NOTRUN -> [SKIP][14] ([Intel XE#316]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-8/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-adlp: [PASS][15] -> [DMESG-FAIL][16] ([Intel XE#4543]) +9 other tests dmesg-fail [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-adlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-adlp: NOTRUN -> [DMESG-FAIL][17] ([Intel XE#4543]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +5 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-8/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-adlp: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +4 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-4/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-adlp: NOTRUN -> [SKIP][22] ([Intel XE#2191]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-1/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@linear-tiling-3-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#367]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-2/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@linear-tiling-4-displays-2560x1440p: - shard-adlp: NOTRUN -> [SKIP][24] ([Intel XE#367]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-1/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#367]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-463/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1512]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-3/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#367]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-7/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2887]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-3/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][30] -> [SKIP][31] ([Intel XE#4947]) +23 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#3432]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#3432]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-2/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2887]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-3/igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#787]) +125 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1: - shard-adlp: NOTRUN -> [SKIP][36] ([Intel XE#787]) +20 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-4/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-adlp: NOTRUN -> [SKIP][37] ([Intel XE#2907]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][38] -> [INCOMPLETE][39] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4: - shard-dg2-set2: [PASS][40] -> [DMESG-WARN][41] ([Intel XE#1727] / [Intel XE#3113]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6: - shard-dg2-set2: [PASS][42] -> [INCOMPLETE][43] ([Intel XE#3124]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs: - shard-adlp: NOTRUN -> [SKIP][44] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-3/igt@kms_ccs@random-ccs-data-y-tiled-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#455] / [Intel XE#787]) +20 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-dp-2.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-adlp: NOTRUN -> [SKIP][46] ([Intel XE#373]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-3/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2252]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-3/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#373]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#373]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-5/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][50] ([Intel XE#1178]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-1/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][51] ([Intel XE#1178]) +1 other test fail [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-435/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2320]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-adlp: NOTRUN -> [SKIP][53] ([Intel XE#455]) +6 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-6/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-128x42: - shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#1424]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-5/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#309]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-adlp: NOTRUN -> [SKIP][56] ([Intel XE#309]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#2291]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#323]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#323]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-adlp: NOTRUN -> [SKIP][61] ([Intel XE#323]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2286]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#4494] / [i915#3804]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-466/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-adlp: NOTRUN -> [SKIP][64] ([Intel XE#310]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-8/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-dg2-set2: [PASS][65] -> [FAIL][66] ([Intel XE#301]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-dg2-432/igt@kms_flip@2x-flip-vs-expired-vblank.html [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][67] ([Intel XE#301]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-suspend: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1421]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-1/igt@kms_flip@2x-flip-vs-suspend.html - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2316]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-bmg: [PASS][70] -> [SKIP][71] ([Intel XE#2316]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-1/igt@kms_flip@2x-nonexisting-fb-interruptible.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [PASS][72] -> [FAIL][73] ([Intel XE#301]) +1 other test fail [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1: - shard-adlp: [PASS][74] -> [DMESG-WARN][75] ([Intel XE#4543]) +18 other tests dmesg-warn [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-adlp-6/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1.html * igt@kms_flip@flip-vs-panning-interruptible: - shard-adlp: [PASS][76] -> [DMESG-WARN][77] ([Intel XE#4543] / [Intel XE#5208]) +2 other tests dmesg-warn [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-adlp-1/igt@kms_flip@flip-vs-panning-interruptible.html [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-9/igt@kms_flip@flip-vs-panning-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-adlp: [PASS][78] -> [DMESG-WARN][79] ([Intel XE#2953] / [Intel XE#4173]) +1 other test dmesg-warn [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-adlp-1/igt@kms_flip@flip-vs-suspend-interruptible.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-9/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-dg2-set2: [PASS][80] -> [INCOMPLETE][81] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-466/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling: - shard-lnl: NOTRUN -> [FAIL][82] ([Intel XE#4683]) +1 other test fail [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-3/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2293] / [Intel XE#2380]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1401] / [Intel XE#1745]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1401]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#455]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-463/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2293]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-adlp: NOTRUN -> [SKIP][88] ([Intel XE#656]) +19 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-4/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2312]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2311]) +6 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@drrs-shrfb-scaledprimary: - shard-adlp: NOTRUN -> [SKIP][91] ([Intel XE#651]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-1/igt@kms_frontbuffer_tracking@drrs-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#5390]) +2 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#651]) +2 other tests skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#651]) +3 other tests skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-rte: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#656]) +6 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#653]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-render: - shard-adlp: NOTRUN -> [SKIP][97] ([Intel XE#653]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2313]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-adlp: NOTRUN -> [SKIP][99] ([Intel XE#2925]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_lease@lease-invalid-plane: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#4950]) +8 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_lease@lease-invalid-plane.html * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][101] ([Intel XE#616]) +2 other tests fail [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-433/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html * igt@kms_plane_cursor@viewport: - shard-dg2-set2: [PASS][102] -> [FAIL][103] ([Intel XE#616]) +1 other test fail [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-dg2-464/igt@kms_plane_cursor@viewport.html [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-434/igt@kms_plane_cursor@viewport.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#2763]) +13 other tests skip [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#2763]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a.html * igt@kms_pm_dc@dc6-dpms: - shard-lnl: [PASS][106] -> [FAIL][107] ([Intel XE#718]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-adlp: NOTRUN -> [SKIP][108] ([Intel XE#734]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-1/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@basic-pci-d3-state: - shard-bmg: [PASS][109] -> [SKIP][110] ([Intel XE#4962]) +2 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-4/igt@kms_pm_rpm@basic-pci-d3-state.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_pm_rpm@basic-pci-d3-state.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#4962]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_properties@connector-properties-legacy: - shard-bmg: [PASS][112] -> [SKIP][113] ([Intel XE#4950]) +98 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-7/igt@kms_properties@connector-properties-legacy.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_properties@connector-properties-legacy.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#4608]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-adlp: NOTRUN -> [SKIP][115] ([Intel XE#1489]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-2/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-adlp: NOTRUN -> [SKIP][116] ([Intel XE#1122] / [Intel XE#5580]) [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-9/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-blt: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#4947]) +5 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_psr@fbc-pr-cursor-blt.html * igt@kms_psr@pr-no-drrs: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1406]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-1/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@psr2-primary-blt: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@kms_psr@psr2-primary-blt.html - shard-adlp: NOTRUN -> [SKIP][120] ([Intel XE#2850] / [Intel XE#929]) +4 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-4/igt@kms_psr@psr2-primary-blt.html - shard-dg2-set2: NOTRUN -> [SKIP][121] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-466/igt@kms_psr@psr2-primary-blt.html * igt@kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2234]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-3/igt@kms_psr@psr2-primary-render.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-adlp: NOTRUN -> [SKIP][123] ([Intel XE#3414]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-8/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_tv_load_detect@load-detect: - shard-adlp: NOTRUN -> [SKIP][124] ([Intel XE#330]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-2/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-adlp: [PASS][125] -> [ABORT][126] ([Intel XE#1727] / [Intel XE#4847]) +1 other test abort [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-adlp-8/igt@kms_vblank@ts-continuation-dpms-suspend.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-9/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@xe_ccs@suspend-resume: - shard-adlp: NOTRUN -> [SKIP][127] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-1/igt@xe_ccs@suspend-resume.html * igt@xe_copy_basic@mem-set-linear-0x3fff: - shard-adlp: NOTRUN -> [SKIP][128] ([Intel XE#1126]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-8/igt@xe_copy_basic@mem-set-linear-0x3fff.html - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#1126]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-436/igt@xe_copy_basic@mem-set-linear-0x3fff.html * igt@xe_eu_stall@blocking-re-enable: - shard-adlp: NOTRUN -> [SKIP][130] ([Intel XE#5626]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-8/igt@xe_eu_stall@blocking-re-enable.html * igt@xe_eu_stall@non-blocking-re-enable: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#5626]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-464/igt@xe_eu_stall@non-blocking-re-enable.html * igt@xe_eudebug@basic-vm-access-parameters-userptr: - shard-adlp: NOTRUN -> [SKIP][132] ([Intel XE#4837] / [Intel XE#5565]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-6/igt@xe_eudebug@basic-vm-access-parameters-userptr.html - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#4837]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@xe_eudebug@basic-vm-access-parameters-userptr.html - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#4837]) [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-432/igt@xe_eudebug@basic-vm-access-parameters-userptr.html - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#4837]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-7/igt@xe_eudebug@basic-vm-access-parameters-userptr.html * igt@xe_evict@evict-beng-small: - shard-adlp: NOTRUN -> [SKIP][136] ([Intel XE#261] / [Intel XE#5564] / [Intel XE#688]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-8/igt@xe_evict@evict-beng-small.html * igt@xe_evict@evict-large-external-cm: - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#688]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-5/igt@xe_evict@evict-large-external-cm.html * igt@xe_evict@evict-large-multi-vm: - shard-adlp: NOTRUN -> [SKIP][138] ([Intel XE#261] / [Intel XE#5564]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-4/igt@xe_evict@evict-large-multi-vm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null: - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2322]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind: - shard-adlp: NOTRUN -> [SKIP][140] ([Intel XE#1392] / [Intel XE#5575]) +4 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-2/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html * igt@xe_exec_basic@multigpu-no-exec-null-defer-bind: - shard-dg2-set2: [PASS][141] -> [SKIP][142] ([Intel XE#1392]) +6 other tests skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-dg2-463/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html * igt@xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#1392]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-4/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html * igt@xe_exec_fault_mode@many-userptr: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#288]) +4 other tests skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-436/igt@xe_exec_fault_mode@many-userptr.html * igt@xe_exec_fault_mode@many-userptr-rebind-prefetch: - shard-adlp: NOTRUN -> [SKIP][145] ([Intel XE#288] / [Intel XE#5561]) +10 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-1/igt@xe_exec_fault_mode@many-userptr-rebind-prefetch.html * igt@xe_exec_reset@cm-cat-error: - shard-adlp: NOTRUN -> [DMESG-FAIL][146] ([Intel XE#3868]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-9/igt@xe_exec_reset@cm-cat-error.html * igt@xe_exec_system_allocator@many-large-malloc-nomemset: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#4915]) +36 other tests skip [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-432/igt@xe_exec_system_allocator@many-large-malloc-nomemset.html * igt@xe_exec_system_allocator@once-mmap-remap-ro-dontunmap: - shard-adlp: NOTRUN -> [SKIP][148] ([Intel XE#4915] / [Intel XE#5560]) +95 other tests skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-1/igt@xe_exec_system_allocator@once-mmap-remap-ro-dontunmap.html * igt@xe_exec_system_allocator@threads-many-large-mmap-new-huge-nomemset: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#4943]) +4 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@xe_exec_system_allocator@threads-many-large-mmap-new-huge-nomemset.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-free-huge: - shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#4943]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-free-huge.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset: - shard-lnl: NOTRUN -> [FAIL][151] ([Intel XE#5018]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-7/igt@xe_exec_system_allocator@threads-shared-vm-many-large-new-bo-map-nomemset.html * igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-shared: - shard-bmg: NOTRUN -> [SKIP][152] ([Intel XE#4945]) +24 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-shared.html * igt@xe_module_load@many-reload: - shard-adlp: [PASS][153] -> [DMESG-WARN][154] ([Intel XE#5244]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-adlp-8/igt@xe_module_load@many-reload.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-6/igt@xe_module_load@many-reload.html * igt@xe_module_load@reload-no-display: - shard-bmg: [PASS][155] -> [FAIL][156] ([Intel XE#5679]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-8/igt@xe_module_load@reload-no-display.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@xe_module_load@reload-no-display.html * igt@xe_oa@mmio-triggered-reports: - shard-adlp: NOTRUN -> [SKIP][157] ([Intel XE#3573]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-9/igt@xe_oa@mmio-triggered-reports.html - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#3573]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-434/igt@xe_oa@mmio-triggered-reports.html * igt@xe_pm@d3cold-mmap-system: - shard-adlp: NOTRUN -> [SKIP][159] ([Intel XE#2284] / [Intel XE#366]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-2/igt@xe_pm@d3cold-mmap-system.html - shard-dg2-set2: NOTRUN -> [SKIP][160] ([Intel XE#2284] / [Intel XE#366]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-435/igt@xe_pm@d3cold-mmap-system.html - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#2284] / [Intel XE#366]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-8/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pm@d3cold-mocs: - shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#2284]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@xe_pm@d3cold-mocs.html - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#2284]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-8/igt@xe_pm@d3cold-mocs.html * igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq: - shard-adlp: NOTRUN -> [SKIP][164] ([Intel XE#4733] / [Intel XE#5594]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-6/igt@xe_pxp@pxp-stale-bo-bind-post-termination-irq.html * igt@xe_pxp@pxp-termination-key-update-post-termination-irq: - shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#4733]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-7/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#4733]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-433/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html * igt@xe_query@multigpu-query-pxp-status: - shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#944]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-5/igt@xe_query@multigpu-query-pxp-status.html - shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#944]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-4/igt@xe_query@multigpu-query-pxp-status.html * igt@xe_sriov_auto_provisioning@selfconfig-basic: - shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#4130]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-8/igt@xe_sriov_auto_provisioning@selfconfig-basic.html - shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#4130]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-432/igt@xe_sriov_auto_provisioning@selfconfig-basic.html - shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#4130]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-5/igt@xe_sriov_auto_provisioning@selfconfig-basic.html * igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout: - shard-bmg: [PASS][172] -> [SKIP][173] ([Intel XE#4945]) +427 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-3/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@xe_sysfs_preempt_timeout@preempt_timeout_us-timeout.html #### Possible fixes #### * igt@core_hotunplug@hotreplug: - shard-bmg: [SKIP][174] ([Intel XE#4963]) -> [PASS][175] +2 other tests pass [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@core_hotunplug@hotreplug.html [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-3/igt@core_hotunplug@hotreplug.html * igt@core_setmaster@master-drop-set-root: - shard-bmg: [FAIL][176] ([Intel XE#4672]) -> [PASS][177] [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@core_setmaster@master-drop-set-root.html [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-7/igt@core_setmaster@master-drop-set-root.html * igt@fbdev@nullptr: - shard-bmg: [SKIP][178] ([Intel XE#2134]) -> [PASS][179] [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@fbdev@nullptr.html [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-4/igt@fbdev@nullptr.html * igt@intel_hwmon@hwmon-write: - shard-bmg: [SKIP][180] ([Intel XE#5177]) -> [PASS][181] +1 other test pass [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@intel_hwmon@hwmon-write.html [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-7/igt@intel_hwmon@hwmon-write.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [SKIP][182] ([Intel XE#4947]) -> [PASS][183] +26 other tests pass [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy: - shard-bmg: [SKIP][184] ([Intel XE#2291]) -> [PASS][185] [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-bmg: [SKIP][186] ([Intel XE#2316]) -> [PASS][187] +3 other tests pass [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [FAIL][188] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][189] [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@flip-vs-suspend@b-hdmi-a1: - shard-adlp: [DMESG-WARN][190] ([Intel XE#4543]) -> [PASS][191] +14 other tests pass [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-adlp-4/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-2/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt: - shard-adlp: [DMESG-FAIL][192] ([Intel XE#4543]) -> [PASS][193] +10 other tests pass [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-8/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_hdr@invalid-metadata-sizes: - shard-bmg: [SKIP][194] ([Intel XE#1503]) -> [PASS][195] [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-6/igt@kms_hdr@invalid-metadata-sizes.html [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-3/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_plane_multiple@2x-tiling-none: - shard-bmg: [SKIP][196] ([Intel XE#4596]) -> [PASS][197] [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-none.html [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_pm_rpm@universal-planes-dpms: - shard-bmg: [SKIP][198] ([Intel XE#4962]) -> [PASS][199] +1 other test pass [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_pm_rpm@universal-planes-dpms.html [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-4/igt@kms_pm_rpm@universal-planes-dpms.html * igt@kms_vblank@ts-continuation-suspend: - shard-bmg: [SKIP][200] ([Intel XE#4950]) -> [PASS][201] +88 other tests pass [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_vblank@ts-continuation-suspend.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-7/igt@kms_vblank@ts-continuation-suspend.html * igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap: - shard-dg2-set2: [SKIP][202] ([Intel XE#1392]) -> [PASS][203] +6 other tests pass [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-466/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html * igt@xe_exec_system_allocator@threads-many-stride-free-nomemset: - shard-bmg: [SKIP][204] ([Intel XE#4945]) -> [PASS][205] +433 other tests pass [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@xe_exec_system_allocator@threads-many-stride-free-nomemset.html [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@xe_exec_system_allocator@threads-many-stride-free-nomemset.html #### Warnings #### * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-bmg: [SKIP][206] ([Intel XE#2233]) -> [SKIP][207] ([Intel XE#4950]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: [SKIP][208] ([Intel XE#4950]) -> [SKIP][209] ([Intel XE#2370]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-bmg: [SKIP][210] ([Intel XE#2327]) -> [SKIP][211] ([Intel XE#4947]) +7 other tests skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-8/igt@kms_big_fb@linear-64bpp-rotate-90.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-bmg: [SKIP][212] ([Intel XE#4947]) -> [SKIP][213] ([Intel XE#2327]) +1 other test skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb: - shard-bmg: [SKIP][214] ([Intel XE#2328]) -> [SKIP][215] ([Intel XE#4947]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb.html [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-bmg: [SKIP][216] ([Intel XE#4947]) -> [SKIP][217] ([Intel XE#610]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-1/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [SKIP][218] ([Intel XE#1124]) -> [SKIP][219] ([Intel XE#4947]) +11 other tests skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: [SKIP][220] ([Intel XE#610]) -> [SKIP][221] ([Intel XE#4947]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-bmg: [SKIP][222] ([Intel XE#4947]) -> [SKIP][223] ([Intel XE#1124]) +9 other tests skip [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-bmg: [SKIP][224] ([Intel XE#4950]) -> [SKIP][225] ([Intel XE#2314] / [Intel XE#2894]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-4/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-bmg: [SKIP][226] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][227] ([Intel XE#4950]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-3/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_bw@linear-tiling-1-displays-2160x1440p: - shard-bmg: [SKIP][228] ([Intel XE#367]) -> [SKIP][229] ([Intel XE#4950]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-4/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][230] ([Intel XE#4950]) -> [SKIP][231] ([Intel XE#367]) +2 other tests skip [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-4/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: [SKIP][232] ([Intel XE#2887]) -> [SKIP][233] ([Intel XE#4947]) +18 other tests skip [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-4/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-bmg: [SKIP][234] ([Intel XE#4947]) -> [SKIP][235] ([Intel XE#2652] / [Intel XE#787]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-bmg: [SKIP][236] ([Intel XE#4947]) -> [SKIP][237] ([Intel XE#3432]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-bmg: [SKIP][238] ([Intel XE#3432]) -> [SKIP][239] ([Intel XE#4947]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: [SKIP][240] ([Intel XE#4947]) -> [SKIP][241] ([Intel XE#2887]) +17 other tests skip [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-bmg: [SKIP][242] ([Intel XE#2652] / [Intel XE#787]) -> [SKIP][243] ([Intel XE#4947]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_chamelium_color@gamma: - shard-bmg: [SKIP][244] ([Intel XE#4950]) -> [SKIP][245] ([Intel XE#2325]) [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_chamelium_color@gamma.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-4/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: [SKIP][246] ([Intel XE#2252]) -> [SKIP][247] ([Intel XE#4950]) +10 other tests skip [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-4/igt@kms_chamelium_hpd@common-hpd-after-suspend.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-bmg: [SKIP][248] ([Intel XE#4950]) -> [SKIP][249] ([Intel XE#2252]) +9 other tests skip [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_content_protection@lic-type-0: - shard-bmg: [SKIP][250] ([Intel XE#4950]) -> [FAIL][251] ([Intel XE#1178]) [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_content_protection@lic-type-0.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-1/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-bmg: [SKIP][252] ([Intel XE#2341]) -> [SKIP][253] ([Intel XE#4950]) [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-2/igt@kms_content_protection@lic-type-1.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_content_protection@lic-type-1.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: [SKIP][254] ([Intel XE#2320]) -> [SKIP][255] ([Intel XE#4950]) +6 other tests skip [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-128x42.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: [SKIP][256] ([Intel XE#4950]) -> [SKIP][257] ([Intel XE#2320]) +5 other tests skip [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_cursor_crc@cursor-random-32x32.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-bmg: [SKIP][258] ([Intel XE#4950]) -> [SKIP][259] ([Intel XE#2291]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-bmg: [SKIP][260] ([Intel XE#2286]) -> [SKIP][261] ([Intel XE#4950]) [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: [SKIP][262] ([Intel XE#4947]) -> [SKIP][263] ([Intel XE#1508]) [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dp_link_training@uhbr-mst: - shard-bmg: [SKIP][264] ([Intel XE#4354]) -> [SKIP][265] ([Intel XE#4947]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-8/igt@kms_dp_link_training@uhbr-mst.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dsc@dsc-fractional-bpp: - shard-bmg: [SKIP][266] ([Intel XE#4947]) -> [SKIP][267] ([Intel XE#2244]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_dsc@dsc-fractional-bpp.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-3/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-formats: - shard-bmg: [SKIP][268] ([Intel XE#2244]) -> [SKIP][269] ([Intel XE#4947]) [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-3/igt@kms_dsc@dsc-with-formats.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_dsc@dsc-with-formats.html * igt@kms_feature_discovery@chamelium: - shard-bmg: [SKIP][270] ([Intel XE#2372]) -> [SKIP][271] ([Intel XE#4950]) [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-3/igt@kms_feature_discovery@chamelium.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@psr2: - shard-bmg: [SKIP][272] ([Intel XE#4950]) -> [SKIP][273] ([Intel XE#2374]) [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_feature_discovery@psr2.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-4/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-bmg: [SKIP][274] ([Intel XE#4950]) -> [SKIP][275] ([Intel XE#2316]) [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_flip@2x-blocking-wf_vblank.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank: - shard-lnl: [FAIL][276] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][277] ([Intel XE#301]) [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-bmg: [SKIP][278] ([Intel XE#2293] / [Intel XE#2380]) -> [SKIP][279] ([Intel XE#4947]) +3 other tests skip [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-bmg: [SKIP][280] ([Intel XE#4947]) -> [SKIP][281] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt: - shard-bmg: [SKIP][282] ([Intel XE#2311]) -> [SKIP][283] ([Intel XE#4947]) +30 other tests skip [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][284] ([Intel XE#4947]) -> [SKIP][285] ([Intel XE#2312]) +8 other tests skip [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][286] ([Intel XE#2312]) -> [SKIP][287] ([Intel XE#4947]) +4 other tests skip [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][288] ([Intel XE#2312]) -> [SKIP][289] ([Intel XE#2311]) +5 other tests skip [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt: - shard-bmg: [SKIP][290] ([Intel XE#4947]) -> [SKIP][291] ([Intel XE#2311]) +27 other tests skip [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][292] ([Intel XE#5390]) -> [SKIP][293] ([Intel XE#4947]) +11 other tests skip [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][294] ([Intel XE#4947]) -> [SKIP][295] ([Intel XE#5390]) +15 other tests skip [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt: - shard-bmg: [SKIP][296] ([Intel XE#2312]) -> [SKIP][297] ([Intel XE#5390]) [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][298] ([Intel XE#5390]) -> [SKIP][299] ([Intel XE#2312]) +3 other tests skip [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-bmg: [SKIP][300] ([Intel XE#2352]) -> [SKIP][301] ([Intel XE#4947]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-tiling-y.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][302] ([Intel XE#2311]) -> [SKIP][303] ([Intel XE#2312]) +6 other tests skip [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][304] ([Intel XE#2313]) -> [SKIP][305] ([Intel XE#2312]) +6 other tests skip [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: - shard-bmg: [SKIP][306] ([Intel XE#4947]) -> [SKIP][307] ([Intel XE#2313]) +25 other tests skip [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][308] ([Intel XE#2312]) -> [SKIP][309] ([Intel XE#2313]) +5 other tests skip [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary: - shard-bmg: [SKIP][310] ([Intel XE#2313]) -> [SKIP][311] ([Intel XE#4947]) +30 other tests skip [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][312] ([Intel XE#4950]) -> [SKIP][313] ([Intel XE#3544]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: [SKIP][314] ([Intel XE#2927]) -> [SKIP][315] ([Intel XE#4947]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-2/igt@kms_joiner@basic-ultra-joiner.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-bmg: [SKIP][316] ([Intel XE#4947]) -> [SKIP][317] ([Intel XE#2934]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-bmg: [SKIP][318] ([Intel XE#4090]) -> [SKIP][319] ([Intel XE#4947]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-bmg: [SKIP][320] ([Intel XE#2486]) -> [SKIP][321] ([Intel XE#4950]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-8/igt@kms_panel_fitting@atomic-fastset.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_lowres@tiling-y: - shard-bmg: [SKIP][322] ([Intel XE#2393]) -> [SKIP][323] ([Intel XE#4950]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-8/igt@kms_plane_lowres@tiling-y.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-y: - shard-bmg: [SKIP][324] ([Intel XE#4950]) -> [SKIP][325] ([Intel XE#5020]) [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_plane_multiple@tiling-y.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-bmg: [SKIP][326] ([Intel XE#4950]) -> [SKIP][327] ([Intel XE#2763]) [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_plane_scaling@planes-downscale-factor-0-5.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-8/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_pm_backlight@basic-brightness: - shard-bmg: [SKIP][328] ([Intel XE#870]) -> [SKIP][329] ([Intel XE#4947]) [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-3/igt@kms_pm_backlight@basic-brightness.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade-with-dpms: - shard-bmg: [SKIP][330] ([Intel XE#4947]) -> [SKIP][331] ([Intel XE#870]) [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_pm_backlight@fade-with-dpms.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-1/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@deep-pkgc: - shard-bmg: [SKIP][332] ([Intel XE#4947]) -> [SKIP][333] ([Intel XE#2505]) [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_pm_dc@deep-pkgc.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-4/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-bmg: [SKIP][334] ([Intel XE#4962]) -> [SKIP][335] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_pm_rpm@modeset-lpsp-stress.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-4/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-bmg: [SKIP][336] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][337] ([Intel XE#4962]) [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-1/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf: - shard-bmg: [SKIP][338] ([Intel XE#1489]) -> [SKIP][339] ([Intel XE#4947]) +6 other tests skip [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-2/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-bmg: [SKIP][340] ([Intel XE#4947]) -> [SKIP][341] ([Intel XE#1489]) +8 other tests skip [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-3/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-bmg: [SKIP][342] ([Intel XE#4947]) -> [SKIP][343] ([Intel XE#2387]) +1 other test skip [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_psr2_su@page_flip-xrgb8888.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-4/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-psr-primary-render: - shard-bmg: [SKIP][344] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][345] ([Intel XE#4947]) +12 other tests skip [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-6/igt@kms_psr@fbc-psr-primary-render.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_psr@fbc-psr-primary-render.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-bmg: [SKIP][346] ([Intel XE#4947]) -> [SKIP][347] ([Intel XE#2234] / [Intel XE#2850]) +9 other tests skip [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_psr@fbc-psr2-primary-blt.html [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-7/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: [SKIP][348] ([Intel XE#4950]) -> [SKIP][349] ([Intel XE#2330]) [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: [SKIP][350] ([Intel XE#3414] / [Intel XE#3904]) -> [SKIP][351] ([Intel XE#4950]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-bmg: [SKIP][352] ([Intel XE#4950]) -> [SKIP][353] ([Intel XE#3414] / [Intel XE#3904]) [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_rotation_crc@sprite-rotation-90.html [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-8/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][354] ([Intel XE#4950]) -> [FAIL][355] ([Intel XE#1729]) [354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html [355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: [SKIP][356] ([Intel XE#362]) -> [FAIL][357] ([Intel XE#1729]) [356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html [357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tv_load_detect@load-detect: - shard-bmg: [SKIP][358] ([Intel XE#4950]) -> [SKIP][359] ([Intel XE#2450]) [358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_tv_load_detect@load-detect.html [359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-3/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@max-min: - shard-bmg: [SKIP][360] ([Intel XE#4950]) -> [SKIP][361] ([Intel XE#1499]) +2 other tests skip [360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@kms_vrr@max-min.html [361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-3/igt@kms_vrr@max-min.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-bmg: [SKIP][362] ([Intel XE#1499]) -> [SKIP][363] ([Intel XE#4950]) +1 other test skip [362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-6/igt@kms_vrr@seamless-rr-switch-drrs.html [363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-bmg: [SKIP][364] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][365] ([Intel XE#4950]) [364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html * igt@xe_create@multigpu-create-massive-size: - shard-bmg: [SKIP][366] ([Intel XE#4945]) -> [SKIP][367] ([Intel XE#2504]) [366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@xe_create@multigpu-create-massive-size.html [367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-4/igt@xe_create@multigpu-create-massive-size.html * igt@xe_eudebug@basic-vm-bind-metadata-discovery: - shard-bmg: [SKIP][368] ([Intel XE#4945]) -> [SKIP][369] ([Intel XE#4837]) +9 other tests skip [368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html [369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html * igt@xe_eudebug_online@stopped-thread: - shard-bmg: [SKIP][370] ([Intel XE#4837]) -> [SKIP][371] ([Intel XE#4945]) +13 other tests skip [370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-3/igt@xe_eudebug_online@stopped-thread.html [371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@xe_eudebug_online@stopped-thread.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap: - shard-bmg: [SKIP][372] ([Intel XE#2322]) -> [SKIP][373] ([Intel XE#4945]) +11 other tests skip [372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-2/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html [373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-bmg: [SKIP][374] ([Intel XE#4945]) -> [SKIP][375] ([Intel XE#2322]) +7 other tests skip [374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html [375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge: - shard-bmg: [SKIP][376] ([Intel XE#4945]) -> [SKIP][377] ([Intel XE#4943]) +19 other tests skip [376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge.html [377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge.html * igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-new-huge: - shard-bmg: [SKIP][378] ([Intel XE#4943]) -> [SKIP][379] ([Intel XE#4945]) +27 other tests skip [378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-8/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-new-huge.html [379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-mmap-new-huge.html * igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv: - shard-adlp: [ABORT][380] ([Intel XE#4917] / [Intel XE#5530]) -> [ABORT][381] ([Intel XE#4917]) [380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-adlp-1/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html [381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-1/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html * igt@xe_live_ktest@xe_eudebug: - shard-adlp: [SKIP][382] ([Intel XE#455]) -> [SKIP][383] ([Intel XE#455] / [Intel XE#5712]) [382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-adlp-4/igt@xe_live_ktest@xe_eudebug.html [383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-adlp-9/igt@xe_live_ktest@xe_eudebug.html * igt@xe_mmap@small-bar: - shard-bmg: [SKIP][384] ([Intel XE#586]) -> [SKIP][385] ([Intel XE#4945]) [384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-4/igt@xe_mmap@small-bar.html [385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@xe_mmap@small-bar.html * igt@xe_oa@oa-tlb-invalidate: - shard-bmg: [SKIP][386] ([Intel XE#2248]) -> [SKIP][387] ([Intel XE#4945]) [386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-3/igt@xe_oa@oa-tlb-invalidate.html [387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_pat@pat-index-xehpc: - shard-bmg: [SKIP][388] ([Intel XE#4945]) -> [SKIP][389] ([Intel XE#1420]) [388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@xe_pat@pat-index-xehpc.html [389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-6/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - shard-bmg: [SKIP][390] ([Intel XE#4945]) -> [SKIP][391] ([Intel XE#2245]) [390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@xe_pat@pat-index-xelp.html [391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-3/igt@xe_pat@pat-index-xelp.html * igt@xe_peer2peer@write: - shard-dg2-set2: [FAIL][392] ([Intel XE#1173]) -> [SKIP][393] ([Intel XE#1061]) [392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-dg2-463/igt@xe_peer2peer@write.html [393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-dg2-432/igt@xe_peer2peer@write.html * igt@xe_pm@d3hot-i2c: - shard-bmg: [SKIP][394] ([Intel XE#5695]) -> [SKIP][395] ([Intel XE#4945]) [394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-3/igt@xe_pm@d3hot-i2c.html [395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@xe_pm@d3hot-i2c.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-bmg: [SKIP][396] ([Intel XE#2284]) -> [SKIP][397] ([Intel XE#4945]) +1 other test skip [396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-4/igt@xe_pm@s4-d3cold-basic-exec.html [397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@xe_pm@s4-d3cold-basic-exec.html * igt@xe_pmu@fn-engine-activity-load: - shard-bmg: [SKIP][398] ([Intel XE#4945]) -> [SKIP][399] ([Intel XE#4650]) [398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@xe_pmu@fn-engine-activity-load.html [399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-1/igt@xe_pmu@fn-engine-activity-load.html * igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy: - shard-bmg: [SKIP][400] ([Intel XE#4945]) -> [SKIP][401] ([Intel XE#4733]) [400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy.html [401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-1/igt@xe_pxp@pxp-src-to-pxp-dest-rendercopy.html * igt@xe_pxp@pxp-stale-bo-exec-post-rpm: - shard-bmg: [SKIP][402] ([Intel XE#4733]) -> [SKIP][403] ([Intel XE#4945]) +1 other test skip [402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-2/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html [403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html * igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz: - shard-bmg: [SKIP][404] ([Intel XE#4945]) -> [SKIP][405] ([Intel XE#944]) +1 other test skip [404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-5/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html [405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-2/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html * igt@xe_sriov_flr@flr-each-isolation: - shard-bmg: [SKIP][406] ([Intel XE#3342]) -> [SKIP][407] ([Intel XE#4945]) [406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-4/igt@xe_sriov_flr@flr-each-isolation.html [407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_sriov_scheduling@nonpreempt-engine-resets: - shard-bmg: [SKIP][408] ([Intel XE#4351]) -> [SKIP][409] ([Intel XE#4945]) [408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8/shard-bmg-6/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html [409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/shard-bmg-5/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#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#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [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#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3868]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3868 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173 [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4494 [Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650 [Intel XE#4672]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4672 [Intel XE#4683]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4683 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4847]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4847 [Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488 [Intel XE#4912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4912 [Intel XE#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915 [Intel XE#4917]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4917 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#4945]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4945 [Intel XE#4947]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4947 [Intel XE#4950]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4950 [Intel XE#4962]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4962 [Intel XE#4963]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4963 [Intel XE#5018]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5018 [Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020 [Intel XE#5177]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5177 [Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208 [Intel XE#5244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5244 [Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390 [Intel XE#5530]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5530 [Intel XE#5560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5560 [Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561 [Intel XE#5564]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5564 [Intel XE#5565]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5565 [Intel XE#5575]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5575 [Intel XE#5580]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5580 [Intel XE#5594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5594 [Intel XE#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607 [Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626 [Intel XE#5679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5679 [Intel XE#5695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5695 [Intel XE#5712]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5712 [Intel XE#5715]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5715 [Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#734]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/734 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8479 -> IGT_8481 * Linux: xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8 -> xe-pw-152297v2 IGT_8479: 5fea7ca6493415ce108231b0ff29f02d293f9aa6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8481: 8481 xe-3491-7f74ca5c75dd28bc57d5ea1be165919bc70609d8: 7f74ca5c75dd28bc57d5ea1be165919bc70609d8 xe-pw-152297v2: 152297v2 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-152297v2/index.html [-- Attachment #2: Type: text/html, Size: 131287 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-07-31 14:28 UTC | newest] Thread overview: 9+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-07-31 9:38 [PATCH v2 0/3] Some more xe_migrate_access_memory fixes Matthew Auld 2025-07-31 9:38 ` [PATCH v2 1/3] drm/xe/migrate: prevent infinite recursion Matthew Auld 2025-07-31 14:28 ` Summers, Stuart 2025-07-31 9:38 ` [PATCH v2 2/3] drm/xe/migrate: don't overflow max copy size Matthew Auld 2025-07-31 9:38 ` [PATCH v2 3/3] drm/xe/migrate: prevent potential UAF Matthew Auld 2025-07-31 10:50 ` ✗ CI.checkpatch: warning for Some more xe_migrate_access_memory fixes (rev2) Patchwork 2025-07-31 10:51 ` ✓ CI.KUnit: success " Patchwork 2025-07-31 11:53 ` ✓ Xe.CI.BAT: " Patchwork 2025-07-31 13:01 ` ✗ Xe.CI.Full: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox