* Re: [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction
2025-08-28 15:42 [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction Thomas Hellström
@ 2025-08-28 15:59 ` Matthew Auld
2025-08-28 16:06 ` Thomas Hellström
2025-08-28 18:06 ` ✓ CI.KUnit: success for " Patchwork
` (3 subsequent siblings)
4 siblings, 1 reply; 11+ messages in thread
From: Matthew Auld @ 2025-08-28 15:59 UTC (permalink / raw)
To: Thomas Hellström, intel-xe; +Cc: Matthew Brost, stable
On 28/08/2025 16:42, Thomas Hellström wrote:
> VRAM+TT bos that are evicted from VRAM to TT may remain in
> TT also after a revalidation following eviction or suspend.
>
> This manifests itself as applications becoming sluggish
> after buffer objects get evicted or after a resume from
> suspend or hibernation.
>
> If the bo supports placement in both VRAM and TT, and
> we are on DGFX, mark the TT placement as fallback. This means
> that it is tried only after VRAM + eviction.
>
> This flaw has probably been present since the xe module was
> upstreamed but use a Fixes: commit below where backporting is
> likely to be simple. For earlier versions we need to open-
> code the fallback algorithm in the driver.
>
> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5995
> Fixes: a78a8da51b36 ("drm/ttm: replace busy placement with flags v6")
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Matthew Auld <matthew.auld@intel.com>
> Cc: <stable@vger.kernel.org> # v6.9+
> Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> ---
> drivers/gpu/drm/xe/xe_bo.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c
> index 4faf15d5fa6d..64dea4e478bd 100644
> --- a/drivers/gpu/drm/xe/xe_bo.c
> +++ b/drivers/gpu/drm/xe/xe_bo.c
> @@ -188,6 +188,8 @@ static void try_add_system(struct xe_device *xe, struct xe_bo *bo,
>
> bo->placements[*c] = (struct ttm_place) {
> .mem_type = XE_PL_TT,
> + .flags = (IS_DGFX(xe) && (bo_flags & XE_BO_FLAG_VRAM_MASK)) ?
I suppose we could drop the dgfx check here?
Either way,
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
> + TTM_PL_FLAG_FALLBACK : 0,
> };
> *c += 1;
> }
^ permalink raw reply [flat|nested] 11+ messages in thread* Re: [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction
2025-08-28 15:59 ` Matthew Auld
@ 2025-08-28 16:06 ` Thomas Hellström
2025-08-28 16:27 ` Matthew Auld
0 siblings, 1 reply; 11+ messages in thread
From: Thomas Hellström @ 2025-08-28 16:06 UTC (permalink / raw)
To: Matthew Auld, intel-xe; +Cc: Matthew Brost, stable
Hi,
On Thu, 2025-08-28 at 16:59 +0100, Matthew Auld wrote:
> On 28/08/2025 16:42, Thomas Hellström wrote:
> > VRAM+TT bos that are evicted from VRAM to TT may remain in
> > TT also after a revalidation following eviction or suspend.
> >
> > This manifests itself as applications becoming sluggish
> > after buffer objects get evicted or after a resume from
> > suspend or hibernation.
> >
> > If the bo supports placement in both VRAM and TT, and
> > we are on DGFX, mark the TT placement as fallback. This means
> > that it is tried only after VRAM + eviction.
> >
> > This flaw has probably been present since the xe module was
> > upstreamed but use a Fixes: commit below where backporting is
> > likely to be simple. For earlier versions we need to open-
> > code the fallback algorithm in the driver.
> >
> > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5995
> > Fixes: a78a8da51b36 ("drm/ttm: replace busy placement with flags
> > v6")
> > Cc: Matthew Brost <matthew.brost@intel.com>
> > Cc: Matthew Auld <matthew.auld@intel.com>
> > Cc: <stable@vger.kernel.org> # v6.9+
> > Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> > ---
> > drivers/gpu/drm/xe/xe_bo.c | 2 ++
> > 1 file changed, 2 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_bo.c
> > b/drivers/gpu/drm/xe/xe_bo.c
> > index 4faf15d5fa6d..64dea4e478bd 100644
> > --- a/drivers/gpu/drm/xe/xe_bo.c
> > +++ b/drivers/gpu/drm/xe/xe_bo.c
> > @@ -188,6 +188,8 @@ static void try_add_system(struct xe_device
> > *xe, struct xe_bo *bo,
> >
> > bo->placements[*c] = (struct ttm_place) {
> > .mem_type = XE_PL_TT,
> > + .flags = (IS_DGFX(xe) && (bo_flags &
> > XE_BO_FLAG_VRAM_MASK)) ?
>
> I suppose we could drop the dgfx check here?
Thanks for reviewing. From a quick look it looks like the VRAM_MASK
bits can be set also on IGFX? And if so, then it's not ideal to mark
the primary placement as FALLBACK. But I might have missed a rejection
somewhere.
/Thomas
>
> Either way,
> Reviewed-by: Matthew Auld <matthew.auld@intel.com>
>
> > + TTM_PL_FLAG_FALLBACK : 0,
> > };
> > *c += 1;
> > }
>
^ permalink raw reply [flat|nested] 11+ messages in thread* Re: [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction
2025-08-28 16:06 ` Thomas Hellström
@ 2025-08-28 16:27 ` Matthew Auld
2025-08-28 18:06 ` Thomas Hellström
0 siblings, 1 reply; 11+ messages in thread
From: Matthew Auld @ 2025-08-28 16:27 UTC (permalink / raw)
To: Thomas Hellström, intel-xe; +Cc: Matthew Brost, stable
On 28/08/2025 17:06, Thomas Hellström wrote:
> Hi,
>
> On Thu, 2025-08-28 at 16:59 +0100, Matthew Auld wrote:
>> On 28/08/2025 16:42, Thomas Hellström wrote:
>>> VRAM+TT bos that are evicted from VRAM to TT may remain in
>>> TT also after a revalidation following eviction or suspend.
>>>
>>> This manifests itself as applications becoming sluggish
>>> after buffer objects get evicted or after a resume from
>>> suspend or hibernation.
>>>
>>> If the bo supports placement in both VRAM and TT, and
>>> we are on DGFX, mark the TT placement as fallback. This means
>>> that it is tried only after VRAM + eviction.
>>>
>>> This flaw has probably been present since the xe module was
>>> upstreamed but use a Fixes: commit below where backporting is
>>> likely to be simple. For earlier versions we need to open-
>>> code the fallback algorithm in the driver.
>>>
>>> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5995
>>> Fixes: a78a8da51b36 ("drm/ttm: replace busy placement with flags
>>> v6")
>>> Cc: Matthew Brost <matthew.brost@intel.com>
>>> Cc: Matthew Auld <matthew.auld@intel.com>
>>> Cc: <stable@vger.kernel.org> # v6.9+
>>> Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
>>> ---
>>> drivers/gpu/drm/xe/xe_bo.c | 2 ++
>>> 1 file changed, 2 insertions(+)
>>>
>>> diff --git a/drivers/gpu/drm/xe/xe_bo.c
>>> b/drivers/gpu/drm/xe/xe_bo.c
>>> index 4faf15d5fa6d..64dea4e478bd 100644
>>> --- a/drivers/gpu/drm/xe/xe_bo.c
>>> +++ b/drivers/gpu/drm/xe/xe_bo.c
>>> @@ -188,6 +188,8 @@ static void try_add_system(struct xe_device
>>> *xe, struct xe_bo *bo,
>>>
>>> bo->placements[*c] = (struct ttm_place) {
>>> .mem_type = XE_PL_TT,
>>> + .flags = (IS_DGFX(xe) && (bo_flags &
>>> XE_BO_FLAG_VRAM_MASK)) ?
>>
>> I suppose we could drop the dgfx check here?
>
> Thanks for reviewing. From a quick look it looks like the VRAM_MASK
> bits can be set also on IGFX? And if so, then it's not ideal to mark
> the primary placement as FALLBACK. But I might have missed a rejection
> somewhere.
I was sweating bullets for a second there, but it looks like it gets
rejected in the ioctl with:
if (XE_IOCTL_DBG(xe, (args->placement & ~xe->info.mem_region_mask)
return -EINVAL;
The flags get converted from the args->placement, and VRAM should never
appear in the mem_region_mask on igpu. If we allowed it I think it would
crash in add_vram() since the vram manager does not exist so
ttm_manager_type() would be NULL, AFAICT.
>
> /Thomas
>
>
>>
>> Either way,
>> Reviewed-by: Matthew Auld <matthew.auld@intel.com>
>>
>>> + TTM_PL_FLAG_FALLBACK : 0,
>>> };
>>> *c += 1;
>>> }
>>
>
^ permalink raw reply [flat|nested] 11+ messages in thread* Re: [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction
2025-08-28 16:27 ` Matthew Auld
@ 2025-08-28 18:06 ` Thomas Hellström
0 siblings, 0 replies; 11+ messages in thread
From: Thomas Hellström @ 2025-08-28 18:06 UTC (permalink / raw)
To: Matthew Auld, intel-xe; +Cc: Matthew Brost, stable
On Thu, 2025-08-28 at 17:27 +0100, Matthew Auld wrote:
> On 28/08/2025 17:06, Thomas Hellström wrote:
> > Hi,
> >
> > On Thu, 2025-08-28 at 16:59 +0100, Matthew Auld wrote:
> > > On 28/08/2025 16:42, Thomas Hellström wrote:
> > > > VRAM+TT bos that are evicted from VRAM to TT may remain in
> > > > TT also after a revalidation following eviction or suspend.
> > > >
> > > > This manifests itself as applications becoming sluggish
> > > > after buffer objects get evicted or after a resume from
> > > > suspend or hibernation.
> > > >
> > > > If the bo supports placement in both VRAM and TT, and
> > > > we are on DGFX, mark the TT placement as fallback. This means
> > > > that it is tried only after VRAM + eviction.
> > > >
> > > > This flaw has probably been present since the xe module was
> > > > upstreamed but use a Fixes: commit below where backporting is
> > > > likely to be simple. For earlier versions we need to open-
> > > > code the fallback algorithm in the driver.
> > > >
> > > > Closes:
> > > > https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5995
> > > > Fixes: a78a8da51b36 ("drm/ttm: replace busy placement with
> > > > flags
> > > > v6")
> > > > Cc: Matthew Brost <matthew.brost@intel.com>
> > > > Cc: Matthew Auld <matthew.auld@intel.com>
> > > > Cc: <stable@vger.kernel.org> # v6.9+
> > > > Signed-off-by: Thomas Hellström
> > > > <thomas.hellstrom@linux.intel.com>
> > > > ---
> > > > drivers/gpu/drm/xe/xe_bo.c | 2 ++
> > > > 1 file changed, 2 insertions(+)
> > > >
> > > > diff --git a/drivers/gpu/drm/xe/xe_bo.c
> > > > b/drivers/gpu/drm/xe/xe_bo.c
> > > > index 4faf15d5fa6d..64dea4e478bd 100644
> > > > --- a/drivers/gpu/drm/xe/xe_bo.c
> > > > +++ b/drivers/gpu/drm/xe/xe_bo.c
> > > > @@ -188,6 +188,8 @@ static void try_add_system(struct xe_device
> > > > *xe, struct xe_bo *bo,
> > > >
> > > > bo->placements[*c] = (struct ttm_place) {
> > > > .mem_type = XE_PL_TT,
> > > > + .flags = (IS_DGFX(xe) && (bo_flags &
> > > > XE_BO_FLAG_VRAM_MASK)) ?
> > >
> > > I suppose we could drop the dgfx check here?
> >
> > Thanks for reviewing. From a quick look it looks like the VRAM_MASK
> > bits can be set also on IGFX? And if so, then it's not ideal to
> > mark
> > the primary placement as FALLBACK. But I might have missed a
> > rejection
> > somewhere.
>
> I was sweating bullets for a second there, but it looks like it gets
> rejected in the ioctl with:
>
> if (XE_IOCTL_DBG(xe, (args->placement & ~xe->info.mem_region_mask)
> return -EINVAL;
>
> The flags get converted from the args->placement, and VRAM should
> never
> appear in the mem_region_mask on igpu. If we allowed it I think it
> would
> crash in add_vram() since the vram manager does not exist so
> ttm_manager_type() would be NULL, AFAICT.
Thanks. Right, I'll spin a v2 and drop the IS_DGFX() test.
/Thomas
>
> >
> > /Thomas
> >
> >
> > >
> > > Either way,
> > > Reviewed-by: Matthew Auld <matthew.auld@intel.com>
> > >
> > > > + TTM_PL_FLAG_FALLBACK : 0,
> > > > };
> > > > *c += 1;
> > > > }
> > >
> >
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ CI.KUnit: success for drm/xe: Attempt to bring bos back to VRAM after eviction
2025-08-28 15:42 [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction Thomas Hellström
2025-08-28 15:59 ` Matthew Auld
@ 2025-08-28 18:06 ` Patchwork
2025-08-28 19:12 ` ✗ Xe.CI.BAT: failure " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-08-28 18:06 UTC (permalink / raw)
To: Thomas Hellström; +Cc: intel-xe
== Series Details ==
Series: drm/xe: Attempt to bring bos back to VRAM after eviction
URL : https://patchwork.freedesktop.org/series/153648/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[18:05:10] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:05:14] 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
[18:05:43] Starting KUnit Kernel (1/1)...
[18:05:43] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:05:43] ================== guc_buf (11 subtests) ===================
[18:05:43] [PASSED] test_smallest
[18:05:43] [PASSED] test_largest
[18:05:43] [PASSED] test_granular
[18:05:43] [PASSED] test_unique
[18:05:43] [PASSED] test_overlap
[18:05:43] [PASSED] test_reusable
[18:05:43] [PASSED] test_too_big
[18:05:43] [PASSED] test_flush
[18:05:43] [PASSED] test_lookup
[18:05:43] [PASSED] test_data
[18:05:43] [PASSED] test_class
[18:05:43] ===================== [PASSED] guc_buf =====================
[18:05:43] =================== guc_dbm (7 subtests) ===================
[18:05:43] [PASSED] test_empty
[18:05:43] [PASSED] test_default
[18:05:43] ======================== test_size ========================
[18:05:43] [PASSED] 4
[18:05:43] [PASSED] 8
[18:05:43] [PASSED] 32
[18:05:43] [PASSED] 256
[18:05:43] ==================== [PASSED] test_size ====================
[18:05:43] ======================= test_reuse ========================
[18:05:43] [PASSED] 4
[18:05:43] [PASSED] 8
[18:05:43] [PASSED] 32
[18:05:43] [PASSED] 256
[18:05:43] =================== [PASSED] test_reuse ====================
[18:05:43] =================== test_range_overlap ====================
[18:05:43] [PASSED] 4
[18:05:43] [PASSED] 8
[18:05:43] [PASSED] 32
[18:05:43] [PASSED] 256
[18:05:43] =============== [PASSED] test_range_overlap ================
[18:05:43] =================== test_range_compact ====================
[18:05:43] [PASSED] 4
[18:05:43] [PASSED] 8
[18:05:43] [PASSED] 32
[18:05:43] [PASSED] 256
[18:05:43] =============== [PASSED] test_range_compact ================
[18:05:43] ==================== test_range_spare =====================
[18:05:43] [PASSED] 4
[18:05:43] [PASSED] 8
[18:05:43] [PASSED] 32
[18:05:43] [PASSED] 256
[18:05:43] ================ [PASSED] test_range_spare =================
[18:05:43] ===================== [PASSED] guc_dbm =====================
[18:05:43] =================== guc_idm (6 subtests) ===================
[18:05:43] [PASSED] bad_init
[18:05:43] [PASSED] no_init
[18:05:43] [PASSED] init_fini
[18:05:43] [PASSED] check_used
[18:05:43] [PASSED] check_quota
[18:05:43] [PASSED] check_all
[18:05:43] ===================== [PASSED] guc_idm =====================
[18:05:43] ================== no_relay (3 subtests) ===================
[18:05:43] [PASSED] xe_drops_guc2pf_if_not_ready
[18:05:43] [PASSED] xe_drops_guc2vf_if_not_ready
[18:05:43] [PASSED] xe_rejects_send_if_not_ready
[18:05:43] ==================== [PASSED] no_relay =====================
[18:05:43] ================== pf_relay (14 subtests) ==================
[18:05:43] [PASSED] pf_rejects_guc2pf_too_short
[18:05:43] [PASSED] pf_rejects_guc2pf_too_long
[18:05:43] [PASSED] pf_rejects_guc2pf_no_payload
[18:05:43] [PASSED] pf_fails_no_payload
[18:05:43] [PASSED] pf_fails_bad_origin
[18:05:43] [PASSED] pf_fails_bad_type
[18:05:43] [PASSED] pf_txn_reports_error
[18:05:43] [PASSED] pf_txn_sends_pf2guc
[18:05:43] [PASSED] pf_sends_pf2guc
[18:05:43] [SKIPPED] pf_loopback_nop
[18:05:43] [SKIPPED] pf_loopback_echo
[18:05:43] [SKIPPED] pf_loopback_fail
[18:05:43] [SKIPPED] pf_loopback_busy
[18:05:43] [SKIPPED] pf_loopback_retry
[18:05:43] ==================== [PASSED] pf_relay =====================
[18:05:43] ================== vf_relay (3 subtests) ===================
[18:05:43] [PASSED] vf_rejects_guc2vf_too_short
[18:05:43] [PASSED] vf_rejects_guc2vf_too_long
[18:05:43] [PASSED] vf_rejects_guc2vf_no_payload
[18:05:43] ==================== [PASSED] vf_relay =====================
[18:05:43] ===================== lmtt (1 subtest) =====================
[18:05:43] ======================== test_ops =========================
[18:05:43] [PASSED] 2-level
[18:05:43] [PASSED] multi-level
[18:05:43] ==================== [PASSED] test_ops =====================
[18:05:43] ====================== [PASSED] lmtt =======================
[18:05:43] ================= pf_service (11 subtests) =================
[18:05:43] [PASSED] pf_negotiate_any
[18:05:43] [PASSED] pf_negotiate_base_match
[18:05:43] [PASSED] pf_negotiate_base_newer
[18:05:43] [PASSED] pf_negotiate_base_next
[18:05:43] [SKIPPED] pf_negotiate_base_older
[18:05:43] [PASSED] pf_negotiate_base_prev
[18:05:43] [PASSED] pf_negotiate_latest_match
[18:05:43] [PASSED] pf_negotiate_latest_newer
[18:05:43] [PASSED] pf_negotiate_latest_next
[18:05:43] [SKIPPED] pf_negotiate_latest_older
[18:05:43] [SKIPPED] pf_negotiate_latest_prev
[18:05:43] =================== [PASSED] pf_service ====================
[18:05:43] =================== xe_mocs (2 subtests) ===================
[18:05:43] ================ xe_live_mocs_kernel_kunit ================
[18:05:43] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[18:05:43] ================ xe_live_mocs_reset_kunit =================
[18:05:43] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[18:05:43] ==================== [SKIPPED] xe_mocs =====================
[18:05:43] ================= xe_migrate (2 subtests) ==================
[18:05:43] ================= xe_migrate_sanity_kunit =================
[18:05:43] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[18:05:43] ================== xe_validate_ccs_kunit ==================
[18:05:43] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[18:05:43] =================== [SKIPPED] xe_migrate ===================
[18:05:43] ================== xe_dma_buf (1 subtest) ==================
[18:05:43] ==================== xe_dma_buf_kunit =====================
[18:05:43] ================ [SKIPPED] xe_dma_buf_kunit ================
[18:05:43] =================== [SKIPPED] xe_dma_buf ===================
[18:05:43] ================= xe_bo_shrink (1 subtest) =================
[18:05:43] =================== xe_bo_shrink_kunit ====================
[18:05:43] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[18:05:43] ================== [SKIPPED] xe_bo_shrink ==================
[18:05:43] ==================== xe_bo (2 subtests) ====================
[18:05:43] ================== xe_ccs_migrate_kunit ===================
[18:05:43] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[18:05:43] ==================== xe_bo_evict_kunit ====================
[18:05:43] =============== [SKIPPED] xe_bo_evict_kunit ================
[18:05:43] ===================== [SKIPPED] xe_bo ======================
[18:05:43] ==================== args (11 subtests) ====================
[18:05:43] [PASSED] count_args_test
[18:05:43] [PASSED] call_args_example
[18:05:43] [PASSED] call_args_test
[18:05:43] [PASSED] drop_first_arg_example
[18:05:43] [PASSED] drop_first_arg_test
[18:05:43] [PASSED] first_arg_example
[18:05:43] [PASSED] first_arg_test
[18:05:43] [PASSED] last_arg_example
[18:05:43] [PASSED] last_arg_test
[18:05:43] [PASSED] pick_arg_example
[18:05:43] [PASSED] sep_comma_example
[18:05:43] ====================== [PASSED] args =======================
[18:05:43] =================== xe_pci (3 subtests) ====================
[18:05:43] ==================== check_graphics_ip ====================
[18:05:43] [PASSED] 12.70 Xe_LPG
[18:05:43] [PASSED] 12.71 Xe_LPG
[18:05:43] [PASSED] 12.74 Xe_LPG+
[18:05:43] [PASSED] 20.01 Xe2_HPG
[18:05:43] [PASSED] 20.02 Xe2_HPG
[18:05:43] [PASSED] 20.04 Xe2_LPG
[18:05:43] [PASSED] 30.00 Xe3_LPG
[18:05:43] [PASSED] 30.01 Xe3_LPG
[18:05:43] [PASSED] 30.03 Xe3_LPG
[18:05:43] ================ [PASSED] check_graphics_ip ================
[18:05:43] ===================== check_media_ip ======================
[18:05:43] [PASSED] 13.00 Xe_LPM+
[18:05:43] [PASSED] 13.01 Xe2_HPM
[18:05:43] [PASSED] 20.00 Xe2_LPM
[18:05:43] [PASSED] 30.00 Xe3_LPM
[18:05:43] [PASSED] 30.02 Xe3_LPM
[18:05:43] ================= [PASSED] check_media_ip ==================
[18:05:43] ================= check_platform_gt_count =================
[18:05:43] [PASSED] 0x9A60 (TIGERLAKE)
[18:05:43] [PASSED] 0x9A68 (TIGERLAKE)
[18:05:43] [PASSED] 0x9A70 (TIGERLAKE)
[18:05:43] [PASSED] 0x9A40 (TIGERLAKE)
[18:05:43] [PASSED] 0x9A49 (TIGERLAKE)
[18:05:43] [PASSED] 0x9A59 (TIGERLAKE)
[18:05:43] [PASSED] 0x9A78 (TIGERLAKE)
[18:05:43] [PASSED] 0x9AC0 (TIGERLAKE)
[18:05:43] [PASSED] 0x9AC9 (TIGERLAKE)
[18:05:43] [PASSED] 0x9AD9 (TIGERLAKE)
[18:05:43] [PASSED] 0x9AF8 (TIGERLAKE)
[18:05:43] [PASSED] 0x4C80 (ROCKETLAKE)
[18:05:43] [PASSED] 0x4C8A (ROCKETLAKE)
[18:05:43] [PASSED] 0x4C8B (ROCKETLAKE)
[18:05:43] [PASSED] 0x4C8C (ROCKETLAKE)
[18:05:43] [PASSED] 0x4C90 (ROCKETLAKE)
[18:05:43] [PASSED] 0x4C9A (ROCKETLAKE)
[18:05:43] [PASSED] 0x4680 (ALDERLAKE_S)
[18:05:43] [PASSED] 0x4682 (ALDERLAKE_S)
[18:05:43] [PASSED] 0x4688 (ALDERLAKE_S)
[18:05:43] [PASSED] 0x468A (ALDERLAKE_S)
[18:05:43] [PASSED] 0x468B (ALDERLAKE_S)
[18:05:43] [PASSED] 0x4690 (ALDERLAKE_S)
[18:05:43] [PASSED] 0x4692 (ALDERLAKE_S)
[18:05:43] [PASSED] 0x4693 (ALDERLAKE_S)
[18:05:43] [PASSED] 0x46A0 (ALDERLAKE_P)
[18:05:43] [PASSED] 0x46A1 (ALDERLAKE_P)
[18:05:43] [PASSED] 0x46A2 (ALDERLAKE_P)
[18:05:43] [PASSED] 0x46A3 (ALDERLAKE_P)
[18:05:43] [PASSED] 0x46A6 (ALDERLAKE_P)
[18:05:43] [PASSED] 0x46A8 (ALDERLAKE_P)
[18:05:43] [PASSED] 0x46AA (ALDERLAKE_P)
[18:05:43] [PASSED] 0x462A (ALDERLAKE_P)
[18:05:43] [PASSED] 0x4626 (ALDERLAKE_P)
[18:05:43] [PASSED] 0x4628 (ALDERLAKE_P)
[18:05:43] [PASSED] 0x46B0 (ALDERLAKE_P)
[18:05:43] [PASSED] 0x46B1 (ALDERLAKE_P)
[18:05:43] [PASSED] 0x46B2 (ALDERLAKE_P)
[18:05:43] [PASSED] 0x46B3 (ALDERLAKE_P)
[18:05:43] [PASSED] 0x46C0 (ALDERLAKE_P)
[18:05:43] [PASSED] 0x46C1 (ALDERLAKE_P)
[18:05:43] [PASSED] 0x46C2 (ALDERLAKE_P)
[18:05:43] [PASSED] 0x46C3 (ALDERLAKE_P)
[18:05:43] [PASSED] 0x46D0 (ALDERLAKE_N)
[18:05:43] [PASSED] 0x46D1 (ALDERLAKE_N)
[18:05:43] [PASSED] 0x46D2 (ALDERLAKE_N)
[18:05:43] [PASSED] 0x46D3 (ALDERLAKE_N)
[18:05:43] [PASSED] 0x46D4 (ALDERLAKE_N)
[18:05:43] [PASSED] 0xA721 (ALDERLAKE_P)
[18:05:43] [PASSED] 0xA7A1 (ALDERLAKE_P)
[18:05:43] [PASSED] 0xA7A9 (ALDERLAKE_P)
[18:05:43] [PASSED] 0xA7AC (ALDERLAKE_P)
[18:05:43] [PASSED] 0xA7AD (ALDERLAKE_P)
[18:05:43] [PASSED] 0xA720 (ALDERLAKE_P)
[18:05:43] [PASSED] 0xA7A0 (ALDERLAKE_P)
[18:05:43] [PASSED] 0xA7A8 (ALDERLAKE_P)
[18:05:43] [PASSED] 0xA7AA (ALDERLAKE_P)
[18:05:43] [PASSED] 0xA7AB (ALDERLAKE_P)
[18:05:43] [PASSED] 0xA780 (ALDERLAKE_S)
[18:05:43] [PASSED] 0xA781 (ALDERLAKE_S)
[18:05:43] [PASSED] 0xA782 (ALDERLAKE_S)
[18:05:43] [PASSED] 0xA783 (ALDERLAKE_S)
[18:05:43] [PASSED] 0xA788 (ALDERLAKE_S)
[18:05:43] [PASSED] 0xA789 (ALDERLAKE_S)
[18:05:43] [PASSED] 0xA78A (ALDERLAKE_S)
[18:05:43] [PASSED] 0xA78B (ALDERLAKE_S)
[18:05:43] [PASSED] 0x4905 (DG1)
[18:05:43] [PASSED] 0x4906 (DG1)
[18:05:43] [PASSED] 0x4907 (DG1)
[18:05:43] [PASSED] 0x4908 (DG1)
[18:05:43] [PASSED] 0x4909 (DG1)
[18:05:43] [PASSED] 0x56C0 (DG2)
[18:05:43] [PASSED] 0x56C2 (DG2)
[18:05:43] [PASSED] 0x56C1 (DG2)
[18:05:43] [PASSED] 0x7D51 (METEORLAKE)
[18:05:43] [PASSED] 0x7DD1 (METEORLAKE)
[18:05:43] [PASSED] 0x7D41 (METEORLAKE)
[18:05:43] [PASSED] 0x7D67 (METEORLAKE)
[18:05:43] [PASSED] 0xB640 (METEORLAKE)
[18:05:43] [PASSED] 0x56A0 (DG2)
[18:05:43] [PASSED] 0x56A1 (DG2)
[18:05:43] [PASSED] 0x56A2 (DG2)
[18:05:43] [PASSED] 0x56BE (DG2)
[18:05:43] [PASSED] 0x56BF (DG2)
[18:05:43] [PASSED] 0x5690 (DG2)
[18:05:43] [PASSED] 0x5691 (DG2)
[18:05:43] [PASSED] 0x5692 (DG2)
[18:05:43] [PASSED] 0x56A5 (DG2)
[18:05:43] [PASSED] 0x56A6 (DG2)
[18:05:43] [PASSED] 0x56B0 (DG2)
[18:05:43] [PASSED] 0x56B1 (DG2)
[18:05:43] [PASSED] 0x56BA (DG2)
[18:05:43] [PASSED] 0x56BB (DG2)
[18:05:43] [PASSED] 0x56BC (DG2)
[18:05:43] [PASSED] 0x56BD (DG2)
[18:05:43] [PASSED] 0x5693 (DG2)
[18:05:43] [PASSED] 0x5694 (DG2)
[18:05:43] [PASSED] 0x5695 (DG2)
[18:05:43] [PASSED] 0x56A3 (DG2)
[18:05:43] [PASSED] 0x56A4 (DG2)
[18:05:43] [PASSED] 0x56B2 (DG2)
[18:05:43] [PASSED] 0x56B3 (DG2)
[18:05:43] [PASSED] 0x5696 (DG2)
[18:05:43] [PASSED] 0x5697 (DG2)
[18:05:43] [PASSED] 0xB69 (PVC)
[18:05:43] [PASSED] 0xB6E (PVC)
[18:05:43] [PASSED] 0xBD4 (PVC)
[18:05:43] [PASSED] 0xBD5 (PVC)
[18:05:43] [PASSED] 0xBD6 (PVC)
[18:05:43] [PASSED] 0xBD7 (PVC)
[18:05:43] [PASSED] 0xBD8 (PVC)
[18:05:43] [PASSED] 0xBD9 (PVC)
[18:05:43] [PASSED] 0xBDA (PVC)
[18:05:43] [PASSED] 0xBDB (PVC)
[18:05:43] [PASSED] 0xBE0 (PVC)
[18:05:43] [PASSED] 0xBE1 (PVC)
[18:05:43] [PASSED] 0xBE5 (PVC)
[18:05:43] [PASSED] 0x7D40 (METEORLAKE)
[18:05:43] [PASSED] 0x7D45 (METEORLAKE)
[18:05:43] [PASSED] 0x7D55 (METEORLAKE)
[18:05:43] [PASSED] 0x7D60 (METEORLAKE)
[18:05:43] [PASSED] 0x7DD5 (METEORLAKE)
[18:05:43] [PASSED] 0x6420 (LUNARLAKE)
[18:05:43] [PASSED] 0x64A0 (LUNARLAKE)
[18:05:43] [PASSED] 0x64B0 (LUNARLAKE)
[18:05:43] [PASSED] 0xE202 (BATTLEMAGE)
[18:05:43] [PASSED] 0xE209 (BATTLEMAGE)
[18:05:43] [PASSED] 0xE20B (BATTLEMAGE)
[18:05:43] [PASSED] 0xE20C (BATTLEMAGE)
[18:05:43] [PASSED] 0xE20D (BATTLEMAGE)
[18:05:43] [PASSED] 0xE210 (BATTLEMAGE)
[18:05:43] [PASSED] 0xE211 (BATTLEMAGE)
[18:05:43] [PASSED] 0xE212 (BATTLEMAGE)
[18:05:43] [PASSED] 0xE216 (BATTLEMAGE)
[18:05:43] [PASSED] 0xE220 (BATTLEMAGE)
[18:05:43] [PASSED] 0xE221 (BATTLEMAGE)
[18:05:43] [PASSED] 0xE222 (BATTLEMAGE)
[18:05:43] [PASSED] 0xE223 (BATTLEMAGE)
[18:05:43] [PASSED] 0xB080 (PANTHERLAKE)
[18:05:43] [PASSED] 0xB081 (PANTHERLAKE)
[18:05:43] [PASSED] 0xB082 (PANTHERLAKE)
[18:05:43] [PASSED] 0xB083 (PANTHERLAKE)
[18:05:43] [PASSED] 0xB084 (PANTHERLAKE)
[18:05:43] [PASSED] 0xB085 (PANTHERLAKE)
[18:05:43] [PASSED] 0xB086 (PANTHERLAKE)
[18:05:43] [PASSED] 0xB087 (PANTHERLAKE)
[18:05:43] [PASSED] 0xB08F (PANTHERLAKE)
[18:05:43] [PASSED] 0xB090 (PANTHERLAKE)
[18:05:43] [PASSED] 0xB0A0 (PANTHERLAKE)
[18:05:43] [PASSED] 0xB0B0 (PANTHERLAKE)
[18:05:43] [PASSED] 0xFD80 (PANTHERLAKE)
[18:05:43] [PASSED] 0xFD81 (PANTHERLAKE)
[18:05:43] ============= [PASSED] check_platform_gt_count =============
[18:05:43] ===================== [PASSED] xe_pci ======================
[18:05:43] =================== xe_rtp (2 subtests) ====================
[18:05:43] =============== xe_rtp_process_to_sr_tests ================
[18:05:43] [PASSED] coalesce-same-reg
[18:05:43] [PASSED] no-match-no-add
[18:05:43] [PASSED] match-or
[18:05:43] [PASSED] match-or-xfail
[18:05:43] [PASSED] no-match-no-add-multiple-rules
[18:05:43] [PASSED] two-regs-two-entries
[18:05:43] [PASSED] clr-one-set-other
[18:05:43] [PASSED] set-field
[18:05:43] [PASSED] conflict-duplicate
[18:05:43] [PASSED] conflict-not-disjoint
[18:05:43] [PASSED] conflict-reg-type
[18:05:43] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[18:05:43] ================== xe_rtp_process_tests ===================
[18:05:43] [PASSED] active1
[18:05:43] [PASSED] active2
[18:05:43] [PASSED] active-inactive
[18:05:43] [PASSED] inactive-active
[18:05:43] [PASSED] inactive-1st_or_active-inactive
[18:05:43] [PASSED] inactive-2nd_or_active-inactive
[18:05:43] [PASSED] inactive-last_or_active-inactive
[18:05:43] [PASSED] inactive-no_or_active-inactive
[18:05:43] ============== [PASSED] xe_rtp_process_tests ===============
[18:05:43] ===================== [PASSED] xe_rtp ======================
[18:05:43] ==================== xe_wa (1 subtest) =====================
[18:05:43] ======================== xe_wa_gt =========================
[18:05:43] [PASSED] TIGERLAKE (B0)
[18:05:43] [PASSED] DG1 (A0)
[18:05:43] [PASSED] DG1 (B0)
[18:05:43] [PASSED] ALDERLAKE_S (A0)
[18:05:43] [PASSED] ALDERLAKE_S (B0)
[18:05:43] [PASSED] ALDERLAKE_S (C0)
[18:05:43] [PASSED] ALDERLAKE_S (D0)
[18:05:43] [PASSED] ALDERLAKE_P (A0)
[18:05:43] [PASSED] ALDERLAKE_P (B0)
[18:05:43] [PASSED] ALDERLAKE_P (C0)
[18:05:43] [PASSED] ALDERLAKE_S_RPLS (D0)
[18:05:43] [PASSED] ALDERLAKE_P_RPLU (E0)
[18:05:43] [PASSED] DG2_G10 (C0)
[18:05:43] [PASSED] DG2_G11 (B1)
[18:05:43] [PASSED] DG2_G12 (A1)
[18:05:43] [PASSED] METEORLAKE (g:A0, m:A0)
[18:05:43] [PASSED] METEORLAKE (g:A0, m:A0)
[18:05:43] [PASSED] METEORLAKE (g:A0, m:A0)
[18:05:43] [PASSED] LUNARLAKE (g:A0, m:A0)
[18:05:43] [PASSED] LUNARLAKE (g:B0, m:A0)
stty: 'standard input': Inappropriate ioctl for device
[18:05:43] [PASSED] BATTLEMAGE (g:A0, m:A1)
[18:05:43] [PASSED] PANTHERLAKE (g:A0, m:A0)
[18:05:43] ==================== [PASSED] xe_wa_gt =====================
[18:05:43] ====================== [PASSED] xe_wa ======================
[18:05:43] ============================================================
[18:05:43] Testing complete. Ran 298 tests: passed: 282, skipped: 16
[18:05:43] Elapsed time: 33.358s total, 4.232s configuring, 28.760s building, 0.332s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[18:05:43] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:05:45] 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
[18:06:08] Starting KUnit Kernel (1/1)...
[18:06:08] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:06:08] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[18:06:08] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[18:06:08] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[18:06:08] =========== drm_validate_clone_mode (2 subtests) ===========
[18:06:08] ============== drm_test_check_in_clone_mode ===============
[18:06:08] [PASSED] in_clone_mode
[18:06:08] [PASSED] not_in_clone_mode
[18:06:08] ========== [PASSED] drm_test_check_in_clone_mode ===========
[18:06:08] =============== drm_test_check_valid_clones ===============
[18:06:08] [PASSED] not_in_clone_mode
[18:06:08] [PASSED] valid_clone
[18:06:08] [PASSED] invalid_clone
[18:06:08] =========== [PASSED] drm_test_check_valid_clones ===========
[18:06:08] ============= [PASSED] drm_validate_clone_mode =============
[18:06:08] ============= drm_validate_modeset (1 subtest) =============
[18:06:08] [PASSED] drm_test_check_connector_changed_modeset
[18:06:08] ============== [PASSED] drm_validate_modeset ===============
[18:06:08] ====== drm_test_bridge_get_current_state (2 subtests) ======
[18:06:08] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[18:06:08] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[18:06:08] ======== [PASSED] drm_test_bridge_get_current_state ========
[18:06:08] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[18:06:08] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[18:06:08] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[18:06:08] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[18:06:08] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[18:06:08] ============== drm_bridge_alloc (2 subtests) ===============
[18:06:08] [PASSED] drm_test_drm_bridge_alloc_basic
[18:06:08] [PASSED] drm_test_drm_bridge_alloc_get_put
[18:06:08] ================ [PASSED] drm_bridge_alloc =================
[18:06:08] ================== drm_buddy (7 subtests) ==================
[18:06:08] [PASSED] drm_test_buddy_alloc_limit
[18:06:08] [PASSED] drm_test_buddy_alloc_optimistic
[18:06:08] [PASSED] drm_test_buddy_alloc_pessimistic
[18:06:08] [PASSED] drm_test_buddy_alloc_pathological
[18:06:08] [PASSED] drm_test_buddy_alloc_contiguous
[18:06:08] [PASSED] drm_test_buddy_alloc_clear
[18:06:08] [PASSED] drm_test_buddy_alloc_range_bias
[18:06:08] ==================== [PASSED] drm_buddy ====================
[18:06:08] ============= drm_cmdline_parser (40 subtests) =============
[18:06:08] [PASSED] drm_test_cmdline_force_d_only
[18:06:08] [PASSED] drm_test_cmdline_force_D_only_dvi
[18:06:08] [PASSED] drm_test_cmdline_force_D_only_hdmi
[18:06:08] [PASSED] drm_test_cmdline_force_D_only_not_digital
[18:06:08] [PASSED] drm_test_cmdline_force_e_only
[18:06:08] [PASSED] drm_test_cmdline_res
[18:06:08] [PASSED] drm_test_cmdline_res_vesa
[18:06:08] [PASSED] drm_test_cmdline_res_vesa_rblank
[18:06:08] [PASSED] drm_test_cmdline_res_rblank
[18:06:08] [PASSED] drm_test_cmdline_res_bpp
[18:06:08] [PASSED] drm_test_cmdline_res_refresh
[18:06:08] [PASSED] drm_test_cmdline_res_bpp_refresh
[18:06:08] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[18:06:08] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[18:06:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[18:06:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[18:06:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[18:06:08] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[18:06:08] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[18:06:08] [PASSED] drm_test_cmdline_res_margins_force_on
[18:06:08] [PASSED] drm_test_cmdline_res_vesa_margins
[18:06:08] [PASSED] drm_test_cmdline_name
[18:06:08] [PASSED] drm_test_cmdline_name_bpp
[18:06:08] [PASSED] drm_test_cmdline_name_option
[18:06:08] [PASSED] drm_test_cmdline_name_bpp_option
[18:06:08] [PASSED] drm_test_cmdline_rotate_0
[18:06:08] [PASSED] drm_test_cmdline_rotate_90
[18:06:08] [PASSED] drm_test_cmdline_rotate_180
[18:06:08] [PASSED] drm_test_cmdline_rotate_270
[18:06:08] [PASSED] drm_test_cmdline_hmirror
[18:06:08] [PASSED] drm_test_cmdline_vmirror
[18:06:08] [PASSED] drm_test_cmdline_margin_options
[18:06:08] [PASSED] drm_test_cmdline_multiple_options
[18:06:08] [PASSED] drm_test_cmdline_bpp_extra_and_option
[18:06:08] [PASSED] drm_test_cmdline_extra_and_option
[18:06:08] [PASSED] drm_test_cmdline_freestanding_options
[18:06:08] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[18:06:08] [PASSED] drm_test_cmdline_panel_orientation
[18:06:08] ================ drm_test_cmdline_invalid =================
[18:06:08] [PASSED] margin_only
[18:06:08] [PASSED] interlace_only
[18:06:08] [PASSED] res_missing_x
[18:06:08] [PASSED] res_missing_y
[18:06:08] [PASSED] res_bad_y
[18:06:08] [PASSED] res_missing_y_bpp
[18:06:08] [PASSED] res_bad_bpp
[18:06:08] [PASSED] res_bad_refresh
[18:06:08] [PASSED] res_bpp_refresh_force_on_off
[18:06:08] [PASSED] res_invalid_mode
[18:06:08] [PASSED] res_bpp_wrong_place_mode
[18:06:08] [PASSED] name_bpp_refresh
[18:06:08] [PASSED] name_refresh
[18:06:08] [PASSED] name_refresh_wrong_mode
[18:06:08] [PASSED] name_refresh_invalid_mode
[18:06:08] [PASSED] rotate_multiple
[18:06:08] [PASSED] rotate_invalid_val
[18:06:08] [PASSED] rotate_truncated
[18:06:08] [PASSED] invalid_option
[18:06:08] [PASSED] invalid_tv_option
[18:06:08] [PASSED] truncated_tv_option
[18:06:08] ============ [PASSED] drm_test_cmdline_invalid =============
[18:06:08] =============== drm_test_cmdline_tv_options ===============
[18:06:08] [PASSED] NTSC
[18:06:08] [PASSED] NTSC_443
[18:06:08] [PASSED] NTSC_J
[18:06:08] [PASSED] PAL
[18:06:08] [PASSED] PAL_M
[18:06:08] [PASSED] PAL_N
[18:06:08] [PASSED] SECAM
[18:06:08] [PASSED] MONO_525
[18:06:08] [PASSED] MONO_625
[18:06:08] =========== [PASSED] drm_test_cmdline_tv_options ===========
[18:06:08] =============== [PASSED] drm_cmdline_parser ================
[18:06:08] ========== drmm_connector_hdmi_init (20 subtests) ==========
[18:06:08] [PASSED] drm_test_connector_hdmi_init_valid
[18:06:08] [PASSED] drm_test_connector_hdmi_init_bpc_8
[18:06:08] [PASSED] drm_test_connector_hdmi_init_bpc_10
[18:06:08] [PASSED] drm_test_connector_hdmi_init_bpc_12
[18:06:08] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[18:06:08] [PASSED] drm_test_connector_hdmi_init_bpc_null
[18:06:08] [PASSED] drm_test_connector_hdmi_init_formats_empty
[18:06:08] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[18:06:08] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[18:06:08] [PASSED] supported_formats=0x9 yuv420_allowed=1
[18:06:08] [PASSED] supported_formats=0x9 yuv420_allowed=0
[18:06:08] [PASSED] supported_formats=0x3 yuv420_allowed=1
[18:06:08] [PASSED] supported_formats=0x3 yuv420_allowed=0
[18:06:08] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[18:06:08] [PASSED] drm_test_connector_hdmi_init_null_ddc
[18:06:08] [PASSED] drm_test_connector_hdmi_init_null_product
[18:06:08] [PASSED] drm_test_connector_hdmi_init_null_vendor
[18:06:08] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[18:06:08] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[18:06:08] [PASSED] drm_test_connector_hdmi_init_product_valid
[18:06:08] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[18:06:08] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[18:06:08] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[18:06:08] ========= drm_test_connector_hdmi_init_type_valid =========
[18:06:08] [PASSED] HDMI-A
[18:06:08] [PASSED] HDMI-B
[18:06:08] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[18:06:08] ======== drm_test_connector_hdmi_init_type_invalid ========
[18:06:08] [PASSED] Unknown
[18:06:08] [PASSED] VGA
[18:06:08] [PASSED] DVI-I
[18:06:08] [PASSED] DVI-D
[18:06:08] [PASSED] DVI-A
[18:06:08] [PASSED] Composite
[18:06:08] [PASSED] SVIDEO
[18:06:08] [PASSED] LVDS
[18:06:08] [PASSED] Component
[18:06:08] [PASSED] DIN
[18:06:08] [PASSED] DP
[18:06:08] [PASSED] TV
[18:06:08] [PASSED] eDP
[18:06:08] [PASSED] Virtual
[18:06:08] [PASSED] DSI
[18:06:08] [PASSED] DPI
[18:06:08] [PASSED] Writeback
[18:06:08] [PASSED] SPI
[18:06:08] [PASSED] USB
[18:06:08] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[18:06:08] ============ [PASSED] drmm_connector_hdmi_init =============
[18:06:08] ============= drmm_connector_init (3 subtests) =============
[18:06:08] [PASSED] drm_test_drmm_connector_init
[18:06:08] [PASSED] drm_test_drmm_connector_init_null_ddc
[18:06:08] ========= drm_test_drmm_connector_init_type_valid =========
[18:06:08] [PASSED] Unknown
[18:06:08] [PASSED] VGA
[18:06:08] [PASSED] DVI-I
[18:06:08] [PASSED] DVI-D
[18:06:08] [PASSED] DVI-A
[18:06:08] [PASSED] Composite
[18:06:08] [PASSED] SVIDEO
[18:06:08] [PASSED] LVDS
[18:06:08] [PASSED] Component
[18:06:08] [PASSED] DIN
[18:06:08] [PASSED] DP
[18:06:08] [PASSED] HDMI-A
[18:06:08] [PASSED] HDMI-B
[18:06:08] [PASSED] TV
[18:06:08] [PASSED] eDP
[18:06:08] [PASSED] Virtual
[18:06:08] [PASSED] DSI
[18:06:08] [PASSED] DPI
[18:06:08] [PASSED] Writeback
[18:06:08] [PASSED] SPI
[18:06:08] [PASSED] USB
[18:06:08] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[18:06:08] =============== [PASSED] drmm_connector_init ===============
[18:06:08] ========= drm_connector_dynamic_init (6 subtests) ==========
[18:06:08] [PASSED] drm_test_drm_connector_dynamic_init
[18:06:08] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[18:06:08] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[18:06:08] [PASSED] drm_test_drm_connector_dynamic_init_properties
[18:06:08] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[18:06:08] [PASSED] Unknown
[18:06:08] [PASSED] VGA
[18:06:08] [PASSED] DVI-I
[18:06:08] [PASSED] DVI-D
[18:06:08] [PASSED] DVI-A
[18:06:08] [PASSED] Composite
[18:06:08] [PASSED] SVIDEO
[18:06:08] [PASSED] LVDS
[18:06:08] [PASSED] Component
[18:06:08] [PASSED] DIN
[18:06:08] [PASSED] DP
[18:06:08] [PASSED] HDMI-A
[18:06:08] [PASSED] HDMI-B
[18:06:08] [PASSED] TV
[18:06:08] [PASSED] eDP
[18:06:08] [PASSED] Virtual
[18:06:08] [PASSED] DSI
[18:06:08] [PASSED] DPI
[18:06:08] [PASSED] Writeback
[18:06:08] [PASSED] SPI
[18:06:08] [PASSED] USB
[18:06:08] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[18:06:08] ======== drm_test_drm_connector_dynamic_init_name =========
[18:06:08] [PASSED] Unknown
[18:06:08] [PASSED] VGA
[18:06:08] [PASSED] DVI-I
[18:06:08] [PASSED] DVI-D
[18:06:08] [PASSED] DVI-A
[18:06:08] [PASSED] Composite
[18:06:08] [PASSED] SVIDEO
[18:06:08] [PASSED] LVDS
[18:06:08] [PASSED] Component
[18:06:08] [PASSED] DIN
[18:06:08] [PASSED] DP
[18:06:08] [PASSED] HDMI-A
[18:06:08] [PASSED] HDMI-B
[18:06:08] [PASSED] TV
[18:06:08] [PASSED] eDP
[18:06:08] [PASSED] Virtual
[18:06:08] [PASSED] DSI
[18:06:08] [PASSED] DPI
[18:06:08] [PASSED] Writeback
[18:06:08] [PASSED] SPI
[18:06:08] [PASSED] USB
[18:06:08] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[18:06:08] =========== [PASSED] drm_connector_dynamic_init ============
[18:06:08] ==== drm_connector_dynamic_register_early (4 subtests) =====
[18:06:08] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[18:06:08] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[18:06:08] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[18:06:08] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[18:06:08] ====== [PASSED] drm_connector_dynamic_register_early =======
[18:06:08] ======= drm_connector_dynamic_register (7 subtests) ========
[18:06:08] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[18:06:08] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[18:06:08] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[18:06:08] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[18:06:08] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[18:06:08] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[18:06:08] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[18:06:08] ========= [PASSED] drm_connector_dynamic_register ==========
[18:06:08] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[18:06:08] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[18:06:08] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[18:06:08] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[18:06:08] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[18:06:08] ========== drm_test_get_tv_mode_from_name_valid ===========
[18:06:08] [PASSED] NTSC
[18:06:08] [PASSED] NTSC-443
[18:06:08] [PASSED] NTSC-J
[18:06:08] [PASSED] PAL
[18:06:08] [PASSED] PAL-M
[18:06:08] [PASSED] PAL-N
[18:06:08] [PASSED] SECAM
[18:06:08] [PASSED] Mono
[18:06:08] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[18:06:08] [PASSED] drm_test_get_tv_mode_from_name_truncated
[18:06:08] ============ [PASSED] drm_get_tv_mode_from_name ============
[18:06:08] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[18:06:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[18:06:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[18:06:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[18:06:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[18:06:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[18:06:08] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[18:06:08] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[18:06:08] [PASSED] VIC 96
[18:06:08] [PASSED] VIC 97
[18:06:08] [PASSED] VIC 101
[18:06:08] [PASSED] VIC 102
[18:06:08] [PASSED] VIC 106
[18:06:08] [PASSED] VIC 107
[18:06:08] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[18:06:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[18:06:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[18:06:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[18:06:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[18:06:08] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[18:06:08] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[18:06:08] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[18:06:08] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[18:06:08] [PASSED] Automatic
[18:06:08] [PASSED] Full
[18:06:08] [PASSED] Limited 16:235
[18:06:08] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[18:06:08] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[18:06:08] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[18:06:08] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[18:06:08] === drm_test_drm_hdmi_connector_get_output_format_name ====
[18:06:08] [PASSED] RGB
[18:06:08] [PASSED] YUV 4:2:0
[18:06:08] [PASSED] YUV 4:2:2
[18:06:08] [PASSED] YUV 4:4:4
[18:06:08] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[18:06:08] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[18:06:08] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[18:06:08] ============= drm_damage_helper (21 subtests) ==============
[18:06:08] [PASSED] drm_test_damage_iter_no_damage
[18:06:08] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[18:06:08] [PASSED] drm_test_damage_iter_no_damage_src_moved
[18:06:08] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[18:06:08] [PASSED] drm_test_damage_iter_no_damage_not_visible
[18:06:08] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[18:06:08] [PASSED] drm_test_damage_iter_no_damage_no_fb
[18:06:08] [PASSED] drm_test_damage_iter_simple_damage
[18:06:08] [PASSED] drm_test_damage_iter_single_damage
[18:06:08] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[18:06:08] [PASSED] drm_test_damage_iter_single_damage_outside_src
[18:06:08] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[18:06:08] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[18:06:08] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[18:06:08] [PASSED] drm_test_damage_iter_single_damage_src_moved
[18:06:08] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[18:06:08] [PASSED] drm_test_damage_iter_damage
[18:06:08] [PASSED] drm_test_damage_iter_damage_one_intersect
[18:06:08] [PASSED] drm_test_damage_iter_damage_one_outside
[18:06:08] [PASSED] drm_test_damage_iter_damage_src_moved
[18:06:08] [PASSED] drm_test_damage_iter_damage_not_visible
[18:06:08] ================ [PASSED] drm_damage_helper ================
[18:06:08] ============== drm_dp_mst_helper (3 subtests) ==============
[18:06:08] ============== drm_test_dp_mst_calc_pbn_mode ==============
[18:06:08] [PASSED] Clock 154000 BPP 30 DSC disabled
[18:06:08] [PASSED] Clock 234000 BPP 30 DSC disabled
[18:06:08] [PASSED] Clock 297000 BPP 24 DSC disabled
[18:06:08] [PASSED] Clock 332880 BPP 24 DSC enabled
[18:06:08] [PASSED] Clock 324540 BPP 24 DSC enabled
[18:06:08] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[18:06:08] ============== drm_test_dp_mst_calc_pbn_div ===============
[18:06:08] [PASSED] Link rate 2000000 lane count 4
[18:06:08] [PASSED] Link rate 2000000 lane count 2
[18:06:08] [PASSED] Link rate 2000000 lane count 1
[18:06:08] [PASSED] Link rate 1350000 lane count 4
[18:06:08] [PASSED] Link rate 1350000 lane count 2
[18:06:08] [PASSED] Link rate 1350000 lane count 1
[18:06:08] [PASSED] Link rate 1000000 lane count 4
[18:06:08] [PASSED] Link rate 1000000 lane count 2
[18:06:08] [PASSED] Link rate 1000000 lane count 1
[18:06:08] [PASSED] Link rate 810000 lane count 4
[18:06:08] [PASSED] Link rate 810000 lane count 2
[18:06:08] [PASSED] Link rate 810000 lane count 1
[18:06:08] [PASSED] Link rate 540000 lane count 4
[18:06:08] [PASSED] Link rate 540000 lane count 2
[18:06:08] [PASSED] Link rate 540000 lane count 1
[18:06:08] [PASSED] Link rate 270000 lane count 4
[18:06:08] [PASSED] Link rate 270000 lane count 2
[18:06:08] [PASSED] Link rate 270000 lane count 1
[18:06:08] [PASSED] Link rate 162000 lane count 4
[18:06:08] [PASSED] Link rate 162000 lane count 2
[18:06:08] [PASSED] Link rate 162000 lane count 1
[18:06:08] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[18:06:08] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[18:06:08] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[18:06:08] [PASSED] DP_POWER_UP_PHY with port number
[18:06:08] [PASSED] DP_POWER_DOWN_PHY with port number
[18:06:08] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[18:06:08] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[18:06:08] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[18:06:08] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[18:06:08] [PASSED] DP_QUERY_PAYLOAD with port number
[18:06:08] [PASSED] DP_QUERY_PAYLOAD with VCPI
[18:06:08] [PASSED] DP_REMOTE_DPCD_READ with port number
[18:06:08] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[18:06:08] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[18:06:08] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[18:06:08] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[18:06:08] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[18:06:08] [PASSED] DP_REMOTE_I2C_READ with port number
[18:06:08] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[18:06:08] [PASSED] DP_REMOTE_I2C_READ with transactions array
[18:06:08] [PASSED] DP_REMOTE_I2C_WRITE with port number
[18:06:08] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[18:06:08] [PASSED] DP_REMOTE_I2C_WRITE with data array
[18:06:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[18:06:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[18:06:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[18:06:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[18:06:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[18:06:08] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[18:06:08] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[18:06:08] ================ [PASSED] drm_dp_mst_helper ================
[18:06:08] ================== drm_exec (7 subtests) ===================
[18:06:08] [PASSED] sanitycheck
[18:06:08] [PASSED] test_lock
[18:06:08] [PASSED] test_lock_unlock
[18:06:08] [PASSED] test_duplicates
[18:06:08] [PASSED] test_prepare
[18:06:08] [PASSED] test_prepare_array
[18:06:08] [PASSED] test_multiple_loops
[18:06:08] ==================== [PASSED] drm_exec =====================
[18:06:08] =========== drm_format_helper_test (17 subtests) ===========
[18:06:08] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[18:06:08] [PASSED] single_pixel_source_buffer
[18:06:08] [PASSED] single_pixel_clip_rectangle
[18:06:08] [PASSED] well_known_colors
[18:06:08] [PASSED] destination_pitch
[18:06:08] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[18:06:08] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[18:06:08] [PASSED] single_pixel_source_buffer
[18:06:08] [PASSED] single_pixel_clip_rectangle
[18:06:08] [PASSED] well_known_colors
[18:06:08] [PASSED] destination_pitch
[18:06:08] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[18:06:08] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[18:06:08] [PASSED] single_pixel_source_buffer
[18:06:08] [PASSED] single_pixel_clip_rectangle
[18:06:08] [PASSED] well_known_colors
[18:06:08] [PASSED] destination_pitch
[18:06:08] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[18:06:08] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[18:06:08] [PASSED] single_pixel_source_buffer
[18:06:08] [PASSED] single_pixel_clip_rectangle
[18:06:08] [PASSED] well_known_colors
[18:06:08] [PASSED] destination_pitch
[18:06:08] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[18:06:08] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[18:06:08] [PASSED] single_pixel_source_buffer
[18:06:08] [PASSED] single_pixel_clip_rectangle
[18:06:08] [PASSED] well_known_colors
[18:06:08] [PASSED] destination_pitch
[18:06:08] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[18:06:08] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[18:06:08] [PASSED] single_pixel_source_buffer
[18:06:08] [PASSED] single_pixel_clip_rectangle
[18:06:08] [PASSED] well_known_colors
[18:06:08] [PASSED] destination_pitch
[18:06:08] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[18:06:08] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[18:06:08] [PASSED] single_pixel_source_buffer
[18:06:08] [PASSED] single_pixel_clip_rectangle
[18:06:08] [PASSED] well_known_colors
[18:06:08] [PASSED] destination_pitch
[18:06:08] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[18:06:08] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[18:06:08] [PASSED] single_pixel_source_buffer
[18:06:08] [PASSED] single_pixel_clip_rectangle
[18:06:08] [PASSED] well_known_colors
[18:06:08] [PASSED] destination_pitch
[18:06:08] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[18:06:08] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[18:06:08] [PASSED] single_pixel_source_buffer
[18:06:08] [PASSED] single_pixel_clip_rectangle
[18:06:08] [PASSED] well_known_colors
[18:06:08] [PASSED] destination_pitch
[18:06:08] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[18:06:08] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[18:06:08] [PASSED] single_pixel_source_buffer
[18:06:08] [PASSED] single_pixel_clip_rectangle
[18:06:08] [PASSED] well_known_colors
[18:06:08] [PASSED] destination_pitch
[18:06:08] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[18:06:08] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[18:06:08] [PASSED] single_pixel_source_buffer
[18:06:08] [PASSED] single_pixel_clip_rectangle
[18:06:08] [PASSED] well_known_colors
[18:06:08] [PASSED] destination_pitch
[18:06:08] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[18:06:08] ============== drm_test_fb_xrgb8888_to_mono ===============
[18:06:08] [PASSED] single_pixel_source_buffer
[18:06:08] [PASSED] single_pixel_clip_rectangle
[18:06:08] [PASSED] well_known_colors
[18:06:08] [PASSED] destination_pitch
[18:06:08] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[18:06:08] ==================== drm_test_fb_swab =====================
[18:06:08] [PASSED] single_pixel_source_buffer
[18:06:08] [PASSED] single_pixel_clip_rectangle
[18:06:08] [PASSED] well_known_colors
[18:06:08] [PASSED] destination_pitch
[18:06:08] ================ [PASSED] drm_test_fb_swab =================
[18:06:08] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[18:06:08] [PASSED] single_pixel_source_buffer
[18:06:08] [PASSED] single_pixel_clip_rectangle
[18:06:08] [PASSED] well_known_colors
[18:06:08] [PASSED] destination_pitch
[18:06:08] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[18:06:08] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[18:06:08] [PASSED] single_pixel_source_buffer
[18:06:08] [PASSED] single_pixel_clip_rectangle
[18:06:08] [PASSED] well_known_colors
[18:06:08] [PASSED] destination_pitch
[18:06:08] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[18:06:08] ================= drm_test_fb_clip_offset =================
[18:06:08] [PASSED] pass through
[18:06:08] [PASSED] horizontal offset
[18:06:08] [PASSED] vertical offset
[18:06:08] [PASSED] horizontal and vertical offset
[18:06:08] [PASSED] horizontal offset (custom pitch)
[18:06:08] [PASSED] vertical offset (custom pitch)
[18:06:08] [PASSED] horizontal and vertical offset (custom pitch)
[18:06:08] ============= [PASSED] drm_test_fb_clip_offset =============
[18:06:08] =================== drm_test_fb_memcpy ====================
[18:06:08] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[18:06:08] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[18:06:08] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[18:06:08] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[18:06:08] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[18:06:08] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[18:06:08] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[18:06:08] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[18:06:08] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[18:06:08] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[18:06:08] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[18:06:08] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[18:06:08] =============== [PASSED] drm_test_fb_memcpy ================
[18:06:08] ============= [PASSED] drm_format_helper_test ==============
[18:06:08] ================= drm_format (18 subtests) =================
[18:06:08] [PASSED] drm_test_format_block_width_invalid
[18:06:08] [PASSED] drm_test_format_block_width_one_plane
[18:06:08] [PASSED] drm_test_format_block_width_two_plane
[18:06:08] [PASSED] drm_test_format_block_width_three_plane
[18:06:08] [PASSED] drm_test_format_block_width_tiled
[18:06:08] [PASSED] drm_test_format_block_height_invalid
[18:06:08] [PASSED] drm_test_format_block_height_one_plane
[18:06:08] [PASSED] drm_test_format_block_height_two_plane
[18:06:08] [PASSED] drm_test_format_block_height_three_plane
[18:06:08] [PASSED] drm_test_format_block_height_tiled
[18:06:08] [PASSED] drm_test_format_min_pitch_invalid
[18:06:08] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[18:06:08] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[18:06:08] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[18:06:08] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[18:06:08] [PASSED] drm_test_format_min_pitch_two_plane
[18:06:08] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[18:06:08] [PASSED] drm_test_format_min_pitch_tiled
[18:06:08] =================== [PASSED] drm_format ====================
[18:06:08] ============== drm_framebuffer (10 subtests) ===============
[18:06:08] ========== drm_test_framebuffer_check_src_coords ==========
[18:06:08] [PASSED] Success: source fits into fb
[18:06:08] [PASSED] Fail: overflowing fb with x-axis coordinate
[18:06:08] [PASSED] Fail: overflowing fb with y-axis coordinate
[18:06:08] [PASSED] Fail: overflowing fb with source width
[18:06:08] [PASSED] Fail: overflowing fb with source height
[18:06:08] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[18:06:08] [PASSED] drm_test_framebuffer_cleanup
[18:06:08] =============== drm_test_framebuffer_create ===============
[18:06:08] [PASSED] ABGR8888 normal sizes
[18:06:08] [PASSED] ABGR8888 max sizes
[18:06:08] [PASSED] ABGR8888 pitch greater than min required
[18:06:08] [PASSED] ABGR8888 pitch less than min required
[18:06:08] [PASSED] ABGR8888 Invalid width
[18:06:08] [PASSED] ABGR8888 Invalid buffer handle
[18:06:08] [PASSED] No pixel format
[18:06:08] [PASSED] ABGR8888 Width 0
[18:06:08] [PASSED] ABGR8888 Height 0
[18:06:08] [PASSED] ABGR8888 Out of bound height * pitch combination
[18:06:08] [PASSED] ABGR8888 Large buffer offset
[18:06:08] [PASSED] ABGR8888 Buffer offset for inexistent plane
[18:06:08] [PASSED] ABGR8888 Invalid flag
[18:06:08] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[18:06:08] [PASSED] ABGR8888 Valid buffer modifier
[18:06:08] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[18:06:08] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[18:06:08] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[18:06:08] [PASSED] NV12 Normal sizes
[18:06:08] [PASSED] NV12 Max sizes
[18:06:08] [PASSED] NV12 Invalid pitch
[18:06:08] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[18:06:08] [PASSED] NV12 different modifier per-plane
[18:06:08] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[18:06:08] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[18:06:08] [PASSED] NV12 Modifier for inexistent plane
[18:06:08] [PASSED] NV12 Handle for inexistent plane
[18:06:08] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[18:06:08] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[18:06:08] [PASSED] YVU420 Normal sizes
[18:06:08] [PASSED] YVU420 Max sizes
[18:06:08] [PASSED] YVU420 Invalid pitch
[18:06:08] [PASSED] YVU420 Different pitches
[18:06:08] [PASSED] YVU420 Different buffer offsets/pitches
[18:06:08] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[18:06:08] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[18:06:08] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[18:06:08] [PASSED] YVU420 Valid modifier
[18:06:08] [PASSED] YVU420 Different modifiers per plane
[18:06:08] [PASSED] YVU420 Modifier for inexistent plane
[18:06:08] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[18:06:08] [PASSED] X0L2 Normal sizes
[18:06:08] [PASSED] X0L2 Max sizes
[18:06:08] [PASSED] X0L2 Invalid pitch
[18:06:08] [PASSED] X0L2 Pitch greater than minimum required
[18:06:08] [PASSED] X0L2 Handle for inexistent plane
[18:06:08] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[18:06:08] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[18:06:08] [PASSED] X0L2 Valid modifier
[18:06:08] [PASSED] X0L2 Modifier for inexistent plane
[18:06:08] =========== [PASSED] drm_test_framebuffer_create ===========
[18:06:08] [PASSED] drm_test_framebuffer_free
[18:06:08] [PASSED] drm_test_framebuffer_init
[18:06:08] [PASSED] drm_test_framebuffer_init_bad_format
[18:06:08] [PASSED] drm_test_framebuffer_init_dev_mismatch
[18:06:08] [PASSED] drm_test_framebuffer_lookup
[18:06:08] [PASSED] drm_test_framebuffer_lookup_inexistent
[18:06:08] [PASSED] drm_test_framebuffer_modifiers_not_supported
[18:06:08] ================= [PASSED] drm_framebuffer =================
[18:06:08] ================ drm_gem_shmem (8 subtests) ================
[18:06:08] [PASSED] drm_gem_shmem_test_obj_create
[18:06:08] [PASSED] drm_gem_shmem_test_obj_create_private
[18:06:08] [PASSED] drm_gem_shmem_test_pin_pages
[18:06:08] [PASSED] drm_gem_shmem_test_vmap
[18:06:08] [PASSED] drm_gem_shmem_test_get_pages_sgt
[18:06:08] [PASSED] drm_gem_shmem_test_get_sg_table
[18:06:08] [PASSED] drm_gem_shmem_test_madvise
[18:06:08] [PASSED] drm_gem_shmem_test_purge
[18:06:08] ================== [PASSED] drm_gem_shmem ==================
[18:06:08] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[18:06:08] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[18:06:08] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[18:06:08] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[18:06:08] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[18:06:08] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[18:06:08] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[18:06:08] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[18:06:08] [PASSED] Automatic
[18:06:08] [PASSED] Full
[18:06:08] [PASSED] Limited 16:235
[18:06:08] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[18:06:08] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[18:06:08] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[18:06:08] [PASSED] drm_test_check_disable_connector
[18:06:08] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[18:06:08] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[18:06:08] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[18:06:08] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[18:06:08] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[18:06:08] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[18:06:08] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[18:06:08] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[18:06:08] [PASSED] drm_test_check_output_bpc_dvi
[18:06:08] [PASSED] drm_test_check_output_bpc_format_vic_1
[18:06:08] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[18:06:08] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[18:06:08] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[18:06:08] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[18:06:08] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[18:06:08] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[18:06:08] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[18:06:08] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[18:06:08] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[18:06:08] [PASSED] drm_test_check_broadcast_rgb_value
[18:06:08] [PASSED] drm_test_check_bpc_8_value
[18:06:08] [PASSED] drm_test_check_bpc_10_value
[18:06:08] [PASSED] drm_test_check_bpc_12_value
[18:06:08] [PASSED] drm_test_check_format_value
[18:06:08] [PASSED] drm_test_check_tmds_char_value
[18:06:08] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[18:06:08] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[18:06:08] [PASSED] drm_test_check_mode_valid
[18:06:08] [PASSED] drm_test_check_mode_valid_reject
[18:06:08] [PASSED] drm_test_check_mode_valid_reject_rate
[18:06:08] [PASSED] drm_test_check_mode_valid_reject_max_clock
[18:06:08] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[18:06:08] ================= drm_managed (2 subtests) =================
[18:06:08] [PASSED] drm_test_managed_release_action
[18:06:08] [PASSED] drm_test_managed_run_action
[18:06:08] =================== [PASSED] drm_managed ===================
[18:06:08] =================== drm_mm (6 subtests) ====================
[18:06:08] [PASSED] drm_test_mm_init
[18:06:08] [PASSED] drm_test_mm_debug
[18:06:08] [PASSED] drm_test_mm_align32
[18:06:08] [PASSED] drm_test_mm_align64
[18:06:08] [PASSED] drm_test_mm_lowest
[18:06:08] [PASSED] drm_test_mm_highest
[18:06:08] ===================== [PASSED] drm_mm ======================
[18:06:08] ============= drm_modes_analog_tv (5 subtests) =============
[18:06:08] [PASSED] drm_test_modes_analog_tv_mono_576i
[18:06:08] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[18:06:08] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[18:06:08] [PASSED] drm_test_modes_analog_tv_pal_576i
[18:06:08] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[18:06:08] =============== [PASSED] drm_modes_analog_tv ===============
[18:06:08] ============== drm_plane_helper (2 subtests) ===============
[18:06:08] =============== drm_test_check_plane_state ================
[18:06:08] [PASSED] clipping_simple
[18:06:08] [PASSED] clipping_rotate_reflect
[18:06:08] [PASSED] positioning_simple
[18:06:08] [PASSED] upscaling
[18:06:08] [PASSED] downscaling
[18:06:08] [PASSED] rounding1
[18:06:08] [PASSED] rounding2
[18:06:08] [PASSED] rounding3
[18:06:08] [PASSED] rounding4
[18:06:08] =========== [PASSED] drm_test_check_plane_state ============
[18:06:08] =========== drm_test_check_invalid_plane_state ============
[18:06:08] [PASSED] positioning_invalid
[18:06:08] [PASSED] upscaling_invalid
[18:06:08] [PASSED] downscaling_invalid
[18:06:08] ======= [PASSED] drm_test_check_invalid_plane_state ========
[18:06:08] ================ [PASSED] drm_plane_helper =================
[18:06:08] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[18:06:08] ====== drm_test_connector_helper_tv_get_modes_check =======
[18:06:08] [PASSED] None
[18:06:08] [PASSED] PAL
[18:06:08] [PASSED] NTSC
[18:06:08] [PASSED] Both, NTSC Default
[18:06:08] [PASSED] Both, PAL Default
[18:06:08] [PASSED] Both, NTSC Default, with PAL on command-line
[18:06:08] [PASSED] Both, PAL Default, with NTSC on command-line
[18:06:08] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[18:06:08] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[18:06:08] ================== drm_rect (9 subtests) ===================
[18:06:08] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[18:06:08] [PASSED] drm_test_rect_clip_scaled_not_clipped
[18:06:08] [PASSED] drm_test_rect_clip_scaled_clipped
[18:06:08] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[18:06:08] ================= drm_test_rect_intersect =================
[18:06:08] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[18:06:08] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[18:06:08] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[18:06:08] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[18:06:08] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[18:06:08] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[18:06:08] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[18:06:08] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[18:06:08] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[18:06:08] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[18:06:08] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[18:06:08] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[18:06:08] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[18:06:08] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[18:06:08] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[18:06:08] ============= [PASSED] drm_test_rect_intersect =============
[18:06:08] ================ drm_test_rect_calc_hscale ================
[18:06:08] [PASSED] normal use
[18:06:08] [PASSED] out of max range
[18:06:08] [PASSED] out of min range
[18:06:08] [PASSED] zero dst
[18:06:08] [PASSED] negative src
[18:06:08] [PASSED] negative dst
[18:06:08] ============ [PASSED] drm_test_rect_calc_hscale ============
[18:06:08] ================ drm_test_rect_calc_vscale ================
[18:06:08] [PASSED] normal use
[18:06:08] [PASSED] out of max range
[18:06:08] [PASSED] out of min range
[18:06:08] [PASSED] zero dst
[18:06:08] [PASSED] negative src
[18:06:08] [PASSED] negative dst
[18:06:08] ============ [PASSED] drm_test_rect_calc_vscale ============
[18:06:08] ================== drm_test_rect_rotate ===================
[18:06:08] [PASSED] reflect-x
[18:06:08] [PASSED] reflect-y
[18:06:08] [PASSED] rotate-0
[18:06:08] [PASSED] rotate-90
[18:06:08] [PASSED] rotate-180
[18:06:08] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[18:06:08] ============== [PASSED] drm_test_rect_rotate ===============
[18:06:08] ================ drm_test_rect_rotate_inv =================
[18:06:08] [PASSED] reflect-x
[18:06:08] [PASSED] reflect-y
[18:06:08] [PASSED] rotate-0
[18:06:08] [PASSED] rotate-90
[18:06:08] [PASSED] rotate-180
[18:06:08] [PASSED] rotate-270
[18:06:08] ============ [PASSED] drm_test_rect_rotate_inv =============
[18:06:08] ==================== [PASSED] drm_rect =====================
[18:06:08] ============ drm_sysfb_modeset_test (1 subtest) ============
[18:06:08] ============ drm_test_sysfb_build_fourcc_list =============
[18:06:08] [PASSED] no native formats
[18:06:08] [PASSED] XRGB8888 as native format
[18:06:08] [PASSED] remove duplicates
[18:06:08] [PASSED] convert alpha formats
[18:06:08] [PASSED] random formats
[18:06:08] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[18:06:08] ============= [PASSED] drm_sysfb_modeset_test ==============
[18:06:08] ============================================================
[18:06:08] Testing complete. Ran 616 tests: passed: 616
[18:06:08] Elapsed time: 24.832s total, 1.729s configuring, 22.885s building, 0.190s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[18:06:08] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[18:06:10] 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
[18:06:18] Starting KUnit Kernel (1/1)...
[18:06:18] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[18:06:18] ================= ttm_device (5 subtests) ==================
[18:06:18] [PASSED] ttm_device_init_basic
[18:06:18] [PASSED] ttm_device_init_multiple
[18:06:18] [PASSED] ttm_device_fini_basic
[18:06:18] [PASSED] ttm_device_init_no_vma_man
[18:06:18] ================== ttm_device_init_pools ==================
[18:06:18] [PASSED] No DMA allocations, no DMA32 required
[18:06:18] [PASSED] DMA allocations, DMA32 required
[18:06:18] [PASSED] No DMA allocations, DMA32 required
[18:06:18] [PASSED] DMA allocations, no DMA32 required
[18:06:18] ============== [PASSED] ttm_device_init_pools ==============
[18:06:18] =================== [PASSED] ttm_device ====================
[18:06:18] ================== ttm_pool (8 subtests) ===================
[18:06:18] ================== ttm_pool_alloc_basic ===================
[18:06:18] [PASSED] One page
[18:06:18] [PASSED] More than one page
[18:06:18] [PASSED] Above the allocation limit
[18:06:18] [PASSED] One page, with coherent DMA mappings enabled
[18:06:18] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[18:06:18] ============== [PASSED] ttm_pool_alloc_basic ===============
[18:06:18] ============== ttm_pool_alloc_basic_dma_addr ==============
[18:06:18] [PASSED] One page
[18:06:18] [PASSED] More than one page
[18:06:18] [PASSED] Above the allocation limit
[18:06:18] [PASSED] One page, with coherent DMA mappings enabled
[18:06:18] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[18:06:18] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[18:06:18] [PASSED] ttm_pool_alloc_order_caching_match
[18:06:18] [PASSED] ttm_pool_alloc_caching_mismatch
[18:06:18] [PASSED] ttm_pool_alloc_order_mismatch
[18:06:18] [PASSED] ttm_pool_free_dma_alloc
[18:06:18] [PASSED] ttm_pool_free_no_dma_alloc
[18:06:18] [PASSED] ttm_pool_fini_basic
[18:06:18] ==================== [PASSED] ttm_pool =====================
[18:06:18] ================ ttm_resource (8 subtests) =================
[18:06:18] ================= ttm_resource_init_basic =================
[18:06:18] [PASSED] Init resource in TTM_PL_SYSTEM
[18:06:18] [PASSED] Init resource in TTM_PL_VRAM
[18:06:18] [PASSED] Init resource in a private placement
[18:06:18] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[18:06:18] ============= [PASSED] ttm_resource_init_basic =============
[18:06:18] [PASSED] ttm_resource_init_pinned
[18:06:18] [PASSED] ttm_resource_fini_basic
[18:06:18] [PASSED] ttm_resource_manager_init_basic
[18:06:18] [PASSED] ttm_resource_manager_usage_basic
[18:06:18] [PASSED] ttm_resource_manager_set_used_basic
[18:06:18] [PASSED] ttm_sys_man_alloc_basic
[18:06:18] [PASSED] ttm_sys_man_free_basic
[18:06:18] ================== [PASSED] ttm_resource ===================
[18:06:18] =================== ttm_tt (15 subtests) ===================
[18:06:18] ==================== ttm_tt_init_basic ====================
[18:06:18] [PASSED] Page-aligned size
[18:06:18] [PASSED] Extra pages requested
[18:06:18] ================ [PASSED] ttm_tt_init_basic ================
[18:06:18] [PASSED] ttm_tt_init_misaligned
[18:06:18] [PASSED] ttm_tt_fini_basic
[18:06:18] [PASSED] ttm_tt_fini_sg
[18:06:18] [PASSED] ttm_tt_fini_shmem
[18:06:18] [PASSED] ttm_tt_create_basic
[18:06:18] [PASSED] ttm_tt_create_invalid_bo_type
[18:06:18] [PASSED] ttm_tt_create_ttm_exists
[18:06:18] [PASSED] ttm_tt_create_failed
[18:06:18] [PASSED] ttm_tt_destroy_basic
[18:06:18] [PASSED] ttm_tt_populate_null_ttm
[18:06:18] [PASSED] ttm_tt_populate_populated_ttm
[18:06:18] [PASSED] ttm_tt_unpopulate_basic
[18:06:18] [PASSED] ttm_tt_unpopulate_empty_ttm
[18:06:18] [PASSED] ttm_tt_swapin_basic
[18:06:18] ===================== [PASSED] ttm_tt ======================
[18:06:18] =================== ttm_bo (14 subtests) ===================
[18:06:18] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[18:06:18] [PASSED] Cannot be interrupted and sleeps
[18:06:18] [PASSED] Cannot be interrupted, locks straight away
[18:06:18] [PASSED] Can be interrupted, sleeps
[18:06:18] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[18:06:18] [PASSED] ttm_bo_reserve_locked_no_sleep
[18:06:18] [PASSED] ttm_bo_reserve_no_wait_ticket
[18:06:18] [PASSED] ttm_bo_reserve_double_resv
[18:06:18] [PASSED] ttm_bo_reserve_interrupted
[18:06:18] [PASSED] ttm_bo_reserve_deadlock
[18:06:18] [PASSED] ttm_bo_unreserve_basic
[18:06:18] [PASSED] ttm_bo_unreserve_pinned
[18:06:18] [PASSED] ttm_bo_unreserve_bulk
[18:06:18] [PASSED] ttm_bo_put_basic
[18:06:18] [PASSED] ttm_bo_put_shared_resv
[18:06:18] [PASSED] ttm_bo_pin_basic
[18:06:18] [PASSED] ttm_bo_pin_unpin_resource
[18:06:18] [PASSED] ttm_bo_multiple_pin_one_unpin
[18:06:18] ===================== [PASSED] ttm_bo ======================
[18:06:18] ============== ttm_bo_validate (21 subtests) ===============
[18:06:18] ============== ttm_bo_init_reserved_sys_man ===============
[18:06:18] [PASSED] Buffer object for userspace
[18:06:18] [PASSED] Kernel buffer object
[18:06:18] [PASSED] Shared buffer object
[18:06:18] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[18:06:18] ============== ttm_bo_init_reserved_mock_man ==============
[18:06:18] [PASSED] Buffer object for userspace
[18:06:18] [PASSED] Kernel buffer object
[18:06:18] [PASSED] Shared buffer object
[18:06:18] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[18:06:18] [PASSED] ttm_bo_init_reserved_resv
[18:06:18] ================== ttm_bo_validate_basic ==================
[18:06:18] [PASSED] Buffer object for userspace
[18:06:18] [PASSED] Kernel buffer object
[18:06:18] [PASSED] Shared buffer object
[18:06:18] ============== [PASSED] ttm_bo_validate_basic ==============
[18:06:18] [PASSED] ttm_bo_validate_invalid_placement
[18:06:18] ============= ttm_bo_validate_same_placement ==============
[18:06:18] [PASSED] System manager
[18:06:18] [PASSED] VRAM manager
[18:06:18] ========= [PASSED] ttm_bo_validate_same_placement ==========
[18:06:18] [PASSED] ttm_bo_validate_failed_alloc
[18:06:18] [PASSED] ttm_bo_validate_pinned
[18:06:18] [PASSED] ttm_bo_validate_busy_placement
[18:06:18] ================ ttm_bo_validate_multihop =================
[18:06:18] [PASSED] Buffer object for userspace
[18:06:18] [PASSED] Kernel buffer object
[18:06:18] [PASSED] Shared buffer object
[18:06:18] ============ [PASSED] ttm_bo_validate_multihop =============
[18:06:18] ========== ttm_bo_validate_no_placement_signaled ==========
[18:06:18] [PASSED] Buffer object in system domain, no page vector
[18:06:18] [PASSED] Buffer object in system domain with an existing page vector
[18:06:18] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[18:06:18] ======== ttm_bo_validate_no_placement_not_signaled ========
[18:06:18] [PASSED] Buffer object for userspace
[18:06:18] [PASSED] Kernel buffer object
[18:06:18] [PASSED] Shared buffer object
[18:06:18] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[18:06:18] [PASSED] ttm_bo_validate_move_fence_signaled
[18:06:18] ========= ttm_bo_validate_move_fence_not_signaled =========
[18:06:18] [PASSED] Waits for GPU
[18:06:18] [PASSED] Tries to lock straight away
[18:06:18] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[18:06:18] [PASSED] ttm_bo_validate_happy_evict
[18:06:18] [PASSED] ttm_bo_validate_all_pinned_evict
[18:06:18] [PASSED] ttm_bo_validate_allowed_only_evict
[18:06:18] [PASSED] ttm_bo_validate_deleted_evict
[18:06:18] [PASSED] ttm_bo_validate_busy_domain_evict
[18:06:18] [PASSED] ttm_bo_validate_evict_gutting
[18:06:18] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[18:06:18] ================= [PASSED] ttm_bo_validate =================
[18:06:18] ============================================================
[18:06:18] Testing complete. Ran 101 tests: passed: 101
[18:06:18] Elapsed time: 9.845s total, 1.738s configuring, 7.890s building, 0.181s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 11+ messages in thread* ✗ Xe.CI.BAT: failure for drm/xe: Attempt to bring bos back to VRAM after eviction
2025-08-28 15:42 [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction Thomas Hellström
2025-08-28 15:59 ` Matthew Auld
2025-08-28 18:06 ` ✓ CI.KUnit: success for " Patchwork
@ 2025-08-28 19:12 ` Patchwork
2025-08-29 1:06 ` ✗ Xe.CI.Full: " Patchwork
2025-08-29 7:42 ` [PATCH] " Maarten Lankhorst
4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-08-28 19:12 UTC (permalink / raw)
To: Thomas Hellström; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 4683 bytes --]
== Series Details ==
Series: drm/xe: Attempt to bring bos back to VRAM after eviction
URL : https://patchwork.freedesktop.org/series/153648/
State : failure
== Summary ==
CI Bug Log - changes from xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97_BAT -> xe-pw-153648v1_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-153648v1_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-153648v1_BAT, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (11 -> 11)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in xe-pw-153648v1_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@xe_live_ktest@xe_dma_buf:
- bat-dg2-oem2: [PASS][1] -> [FAIL][2] +1 other test fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/bat-dg2-oem2/igt@xe_live_ktest@xe_dma_buf.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/bat-dg2-oem2/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_live_ktest@xe_dma_buf@xe_dma_buf_kunit:
- bat-atsm-2: [PASS][3] -> [FAIL][4] +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/bat-atsm-2/igt@xe_live_ktest@xe_dma_buf@xe_dma_buf_kunit.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/bat-atsm-2/igt@xe_live_ktest@xe_dma_buf@xe_dma_buf_kunit.html
Known issues
------------
Here are the changes found in xe-pw-153648v1_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_live_ktest@xe_dma_buf:
- bat-bmg-2: [PASS][5] -> [FAIL][6] ([Intel XE#2909]) +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/bat-bmg-2/igt@xe_live_ktest@xe_dma_buf.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/bat-bmg-2/igt@xe_live_ktest@xe_dma_buf.html
- bat-bmg-1: [PASS][7] -> [FAIL][8] ([Intel XE#2909]) +1 other test fail
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/bat-bmg-1/igt@xe_live_ktest@xe_dma_buf.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/bat-bmg-1/igt@xe_live_ktest@xe_dma_buf.html
#### Possible fixes ####
* igt@kms_flip@basic-plain-flip@d-edp1:
- bat-adlp-7: [DMESG-WARN][9] ([Intel XE#4543]) -> [PASS][10] +1 other test pass
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/bat-adlp-7/igt@kms_flip@basic-plain-flip@d-edp1.html
* igt@xe_vm@bind-execqueues-independent:
- {bat-ptl-1}: [FAIL][11] ([Intel XE#5783]) -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/bat-ptl-1/igt@xe_vm@bind-execqueues-independent.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/bat-ptl-1/igt@xe_vm@bind-execqueues-independent.html
- {bat-ptl-vm}: [FAIL][13] ([Intel XE#5783]) -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/bat-ptl-vm/igt@xe_vm@bind-execqueues-independent.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/bat-ptl-vm/igt@xe_vm@bind-execqueues-independent.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#2909]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2909
[Intel XE#4543]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4543
[Intel XE#5783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5783
Build changes
-------------
* IGT: IGT_8512 -> IGT_8513
* Linux: xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97 -> xe-pw-153648v1
IGT_8512: 8512
IGT_8513: 6540636111c1c01271f55abcc18c775426d4a18f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97: a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97
xe-pw-153648v1: 153648v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/index.html
[-- Attachment #2: Type: text/html, Size: 5554 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread* ✗ Xe.CI.Full: failure for drm/xe: Attempt to bring bos back to VRAM after eviction
2025-08-28 15:42 [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction Thomas Hellström
` (2 preceding siblings ...)
2025-08-28 19:12 ` ✗ Xe.CI.BAT: failure " Patchwork
@ 2025-08-29 1:06 ` Patchwork
2025-08-29 7:42 ` [PATCH] " Maarten Lankhorst
4 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2025-08-29 1:06 UTC (permalink / raw)
To: Thomas Hellström; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 153812 bytes --]
== Series Details ==
Series: drm/xe: Attempt to bring bos back to VRAM after eviction
URL : https://patchwork.freedesktop.org/series/153648/
State : failure
== Summary ==
CI Bug Log - changes from xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97_FULL -> xe-pw-153648v1_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with xe-pw-153648v1_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in xe-pw-153648v1_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-153648v1_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [FAIL][1] +3 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
* igt@xe_exec_system_allocator@evict-malloc-mix-bo:
- shard-bmg: NOTRUN -> [INCOMPLETE][2]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-5/igt@xe_exec_system_allocator@evict-malloc-mix-bo.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-dg2-set2: [PASS][3] -> [FAIL][4] +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_live_ktest@xe_dma_buf.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-466/igt@xe_live_ktest@xe_dma_buf.html
#### Warnings ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [FAIL][5] ([Intel XE#911]) -> [FAIL][6] +3 other tests fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@xe_oa@mmio-triggered-reports-read:
- shard-adlp: [SKIP][7] ([Intel XE#5103]) -> [SKIP][8] +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-2/igt@xe_oa@mmio-triggered-reports-read.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-1/igt@xe_oa@mmio-triggered-reports-read.html
- shard-dg2-set2: [SKIP][9] ([Intel XE#5103]) -> [SKIP][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_oa@mmio-triggered-reports-read.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-466/igt@xe_oa@mmio-triggered-reports-read.html
Known issues
------------
Here are the changes found in xe-pw-153648v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_setmaster@master-drop-set-user:
- shard-dg2-set2: [PASS][11] -> [FAIL][12] ([Intel XE#4208])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@core_setmaster@master-drop-set-user.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@core_setmaster@master-drop-set-user.html
* igt@fbdev@eof:
- shard-dg2-set2: [PASS][13] -> [SKIP][14] ([Intel XE#2134]) +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@fbdev@eof.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@fbdev@eof.html
* igt@kms_addfb_basic@unused-pitches:
- shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#4208] / [i915#2575]) +17 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_addfb_basic@unused-pitches.html
* igt@kms_atomic_transition@plane-all-modeset-transition:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#3279])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-adlp: [PASS][17] -> [FAIL][18] ([Intel XE#3908]) +1 other test fail
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#316]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-463/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2327]) +1 other test skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#4208]) +116 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-adlp: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#3658])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-adlp: NOTRUN -> [DMESG-FAIL][24] ([Intel XE#4543])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-16bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +2 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-1/igt@kms_big_fb@y-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-adlp: NOTRUN -> [SKIP][26] ([Intel XE#316])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1467])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-7/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#1124]) +7 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#1124]) +4 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-464/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2328]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb.html
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#619]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-436/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#607])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p:
- shard-adlp: NOTRUN -> [SKIP][33] ([Intel XE#2191])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-8/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2314] / [Intel XE#2894])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-3/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
- shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#2191])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-4/igt@kms_bw@connected-linear-tiling-3-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#367])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-6/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-1:
- shard-adlp: NOTRUN -> [SKIP][37] ([Intel XE#787]) +14 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-6/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][38] ([Intel XE#2887]) +8 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-2/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html
* igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#787]) +188 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-432/igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-dp-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2887]) +16 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [INCOMPLETE][41] ([Intel XE#3862])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#3432])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#3432])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2652] / [Intel XE#787]) +13 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-a-dp-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-adlp: NOTRUN -> [SKIP][45] ([Intel XE#2907])
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#2907])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#2669]) +3 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs@pipe-a-edp-1.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#455] / [Intel XE#787]) +33 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][49] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [INCOMPLETE][50] ([Intel XE#2705] / [Intel XE#4212] / [Intel XE#4522])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs:
- shard-adlp: NOTRUN -> [SKIP][51] ([Intel XE#455] / [Intel XE#787]) +9 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-9/igt@kms_ccs@random-ccs-data-y-tiled-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2724]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-1/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#4416]) +3 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-435/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#2325]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-8/igt@kms_chamelium_color@ctm-green-to-red.html
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#306]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-466/igt@kms_chamelium_color@ctm-green-to-red.html
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#306])
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-8/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#373]) +5 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-432/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@vga-frame-dump:
- shard-adlp: NOTRUN -> [SKIP][58] ([Intel XE#373]) +2 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-2/igt@kms_chamelium_frames@vga-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2252]) +10 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-7/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#373]) +4 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-2/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_content_protection@lic-type-0@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][61] ([Intel XE#1178])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-4/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][62] ([Intel XE#1178]) +1 other test fail
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-464/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_content_protection@type1:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2341])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-2/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][64] ([Intel XE#1188])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-8/igt@kms_content_protection@uevent@pipe-a-dp-2.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][65] ([Intel XE#1188])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-466/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2320]) +2 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-8/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2321])
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-64x64:
- shard-dg2-set2: [PASS][68] -> [SKIP][69] ([Intel XE#4208] / [i915#2575]) +89 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_cursor_crc@cursor-onscreen-64x64.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-64x64.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#455]) +14 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-435/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-sliding-32x32:
- shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#1424])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-4/igt@kms_cursor_crc@cursor-sliding-32x32.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#308])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-432/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-adlp: [PASS][73] -> [DMESG-WARN][74] ([Intel XE#2953] / [Intel XE#4173]) +2 other tests dmesg-warn
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-4/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-3/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
- shard-bmg: [PASS][75] -> [SKIP][76] ([Intel XE#2291]) +2 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-adlp: NOTRUN -> [SKIP][77] ([Intel XE#309]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-1/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#309]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][79] -> [FAIL][80] ([Intel XE#5299])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#1340])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#4354])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-464/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#4354])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-7/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-adlp: NOTRUN -> [SKIP][84] ([Intel XE#4354])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-4/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible:
- shard-adlp: NOTRUN -> [SKIP][85] ([Intel XE#310]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-1/igt@kms_flip@2x-flip-vs-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-bmg: [PASS][86] -> [SKIP][87] ([Intel XE#2316]) +5 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1421]) +3 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-5/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2316]) +2 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@flip-vs-rmfb:
- shard-adlp: [PASS][90] -> [DMESG-WARN][91] ([Intel XE#4543] / [Intel XE#5208])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-4/igt@kms_flip@flip-vs-rmfb.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-6/igt@kms_flip@flip-vs-rmfb.html
* igt@kms_flip@flip-vs-suspend:
- shard-bmg: NOTRUN -> [INCOMPLETE][92] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-6/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-adlp: [PASS][93] -> [DMESG-WARN][94] ([Intel XE#4543]) +5 other tests dmesg-warn
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-2/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-dg2-set2: [PASS][95] -> [SKIP][96] ([Intel XE#4208]) +190 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#1401] / [Intel XE#1745]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1401]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2293]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-adlp: NOTRUN -> [SKIP][101] ([Intel XE#455]) +2 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1397]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-adlp: [PASS][104] -> [DMESG-FAIL][105] ([Intel XE#4543] / [Intel XE#4921]) +1 other test dmesg-fail
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2311]) +27 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen:
- shard-adlp: NOTRUN -> [SKIP][107] ([Intel XE#651]) +2 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-8/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#651]) +3 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
- shard-adlp: [PASS][109] -> [DMESG-FAIL][110] ([Intel XE#4543]) +10 other tests dmesg-fail
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-9/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [PASS][111] -> [SKIP][112] ([Intel XE#2351] / [Intel XE#4208]) +9 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move:
- shard-dg2-set2: NOTRUN -> [SKIP][113] ([Intel XE#2351] / [Intel XE#4208]) +7 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#2312]) +3 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#5390]) +13 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#656]) +18 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#651]) +14 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2313]) +30 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-adlp: NOTRUN -> [SKIP][119] ([Intel XE#653]) +5 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-3/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#653]) +15 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-adlp: NOTRUN -> [SKIP][121] ([Intel XE#656]) +9 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_hdr@static-swap:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#1503]) +1 other test skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-6/igt@kms_hdr@static-swap.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [PASS][123] -> [SKIP][124] ([Intel XE#3012])
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-ytiled:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#4329])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-3/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html
* igt@kms_plane_cursor@viewport:
- shard-dg2-set2: [PASS][126] -> [FAIL][127] ([Intel XE#616]) +1 other test fail
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_plane_cursor@viewport.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-433/igt@kms_plane_cursor@viewport.html
* igt@kms_plane_lowres@tiling-y:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#599])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-8/igt@kms_plane_lowres@tiling-y.html
- shard-bmg: NOTRUN -> [SKIP][129] ([Intel XE#2393])
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-8/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@2x-tiling-none:
- shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#4596])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-7/igt@kms_plane_multiple@2x-tiling-none.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#5020])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-3/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#2763]) +7 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][133] -> [FAIL][134] ([Intel XE#718])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-1/igt@kms_pm_dc@dc6-dpms.html
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-1/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-432/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#1406] / [Intel XE#2893])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area:
- shard-adlp: NOTRUN -> [SKIP][138] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-4/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#1406] / [Intel XE#4608]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#1406] / [Intel XE#1489]) +7 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@fbc-psr2-primary-render:
- shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#1406]) +3 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-1/igt@kms_psr@fbc-psr2-primary-render.html
* igt@kms_psr@fbc-psr2-primary-render@edp-1:
- shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#1406] / [Intel XE#4609])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-1/igt@kms_psr@fbc-psr2-primary-render@edp-1.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#1406] / [Intel XE#4208]) +1 other test skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr@pr-sprite-render:
- shard-dg2-set2: NOTRUN -> [SKIP][145] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208])
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_psr@pr-sprite-render.html
* igt@kms_psr@psr-dpms:
- shard-dg2-set2: NOTRUN -> [SKIP][146] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +7 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-463/igt@kms_psr@psr-dpms.html
* igt@kms_psr@psr2-suspend:
- shard-adlp: NOTRUN -> [SKIP][147] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +4 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-1/igt@kms_psr@psr2-suspend.html
- shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +16 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-7/igt@kms_psr@psr2-suspend.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#3414] / [Intel XE#3904])
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#2413])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-8/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#1435])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-8/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_vrr@flipline:
- shard-lnl: [PASS][152] -> [FAIL][153] ([Intel XE#4227]) +1 other test fail
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-8/igt@kms_vrr@flipline.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-5/igt@kms_vrr@flipline.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#1499]) +2 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-3/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@xe_ccs@ctrl-surf-copy-new-ctx:
- shard-adlp: NOTRUN -> [SKIP][155] ([Intel XE#455] / [Intel XE#488] / [Intel XE#5607])
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-8/igt@xe_ccs@ctrl-surf-copy-new-ctx.html
* igt@xe_compute@ccs-mode-basic:
- shard-bmg: NOTRUN -> [FAIL][156] ([Intel XE#5794])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-3/igt@xe_compute@ccs-mode-basic.html
* igt@xe_eudebug@basic-vm-access-userptr-faultable:
- shard-lnl: NOTRUN -> [SKIP][157] ([Intel XE#4837]) +4 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-4/igt@xe_eudebug@basic-vm-access-userptr-faultable.html
* igt@xe_eudebug@discovery-empty:
- shard-bmg: NOTRUN -> [SKIP][158] ([Intel XE#4837]) +12 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-5/igt@xe_eudebug@discovery-empty.html
* igt@xe_eudebug@vm-bind-clear:
- shard-adlp: NOTRUN -> [SKIP][159] ([Intel XE#4837] / [Intel XE#5565]) +2 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-6/igt@xe_eudebug@vm-bind-clear.html
* igt@xe_eudebug_sriov@deny-eudebug:
- shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#4518])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-1/igt@xe_eudebug_sriov@deny-eudebug.html
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#5793])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-2/igt@xe_eudebug_sriov@deny-eudebug.html
* igt@xe_evict@evict-small-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#688])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-4/igt@xe_evict@evict-small-multi-vm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#2322]) +8 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
- shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#1392]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null:
- shard-dg2-set2: [PASS][165] -> [SKIP][166] ([Intel XE#1392]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html
* igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap:
- shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#1392]) +5 other tests skip
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-7/igt@xe_exec_basic@multigpu-no-exec-basic-defer-mmap.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind:
- shard-adlp: NOTRUN -> [SKIP][168] ([Intel XE#1392] / [Intel XE#5575]) +3 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-9/igt@xe_exec_basic@multigpu-once-bindexecqueue-rebind.html
* igt@xe_exec_fault_mode@many-userptr-invalidate-race:
- shard-adlp: NOTRUN -> [SKIP][169] ([Intel XE#288] / [Intel XE#5561]) +3 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-9/igt@xe_exec_fault_mode@many-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch:
- shard-dg2-set2: NOTRUN -> [SKIP][170] ([Intel XE#288]) +10 other tests skip
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-433/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind-prefetch.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence:
- shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#2360])
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-432/igt@xe_exec_mix_modes@exec-spinner-interrupted-dma-fence.html
* igt@xe_exec_sip_eudebug@breakpoint-waitsip:
- shard-dg2-set2: NOTRUN -> [SKIP][172] ([Intel XE#4837]) +4 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-466/igt@xe_exec_sip_eudebug@breakpoint-waitsip.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc:
- shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#4915]) +122 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-433/igt@xe_exec_system_allocator@threads-shared-vm-many-large-malloc.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-free-huge:
- shard-lnl: NOTRUN -> [SKIP][174] ([Intel XE#4943]) +9 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-7/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-adlp: NOTRUN -> [SKIP][175] ([Intel XE#4915]) +64 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-2/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-free-huge:
- shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#4943]) +16 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-free-huge.html
* igt@xe_live_ktest@xe_bo:
- shard-dg2-set2: [PASS][177] -> [SKIP][178] ([Intel XE#2229] / [Intel XE#455]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_live_ktest@xe_bo.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_live_ktest@xe_bo.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-dg2-set2: [PASS][179] -> [SKIP][180] ([Intel XE#2229])
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_dma_buf:
- shard-bmg: [PASS][181] -> [FAIL][182] ([Intel XE#2909]) +1 other test fail
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@xe_live_ktest@xe_dma_buf.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-8/igt@xe_live_ktest@xe_dma_buf.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [PASS][189], [PASS][190], [PASS][191], [PASS][192], [PASS][193], [PASS][194], [PASS][195], [PASS][196], [PASS][197], [PASS][198], [PASS][199], [PASS][200], [PASS][201], [PASS][202], [PASS][203], [PASS][204], [PASS][205], [PASS][206], [PASS][207]) -> ([PASS][208], [PASS][209], [PASS][210], [PASS][211], [PASS][212], [PASS][213], [PASS][214], [PASS][215], [PASS][216], [PASS][217], [PASS][218], [PASS][219], [PASS][220], [PASS][221], [PASS][222], [PASS][223], [PASS][224], [PASS][225], [PASS][226], [PASS][227], [PASS][228], [PASS][229], [SKIP][230], [PASS][231], [PASS][232], [PASS][233]) ([Intel XE#378])
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-1/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-2/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-2/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-1/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-3/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-5/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-5/igt@xe_module_load@load.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-5/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-1/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-7/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-7/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-7/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-8/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-8/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-2/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-3/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-3/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-3/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-5/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-4/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-4/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-4/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-4/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-8/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-8/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-1/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-1/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-8/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-3/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-3/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-7/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-7/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-2/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-2/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-8/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-8/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-3/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-3/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-8/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-4/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-5/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-1/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-2/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-4/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-5/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-5/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-7/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-8/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-1/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-4/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-4/igt@xe_module_load@load.html
- shard-bmg: ([PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240], [PASS][241], [PASS][242], [PASS][243], [PASS][244], [PASS][245], [PASS][246], [PASS][247], [PASS][248], [PASS][249], [PASS][250], [PASS][251], [PASS][252], [PASS][253], [PASS][254], [PASS][255]) -> ([PASS][256], [PASS][257], [PASS][258], [PASS][259], [PASS][260], [PASS][261], [PASS][262], [PASS][263], [PASS][264], [PASS][265], [PASS][266], [SKIP][267], [PASS][268], [PASS][269], [PASS][270], [PASS][271], [PASS][272], [PASS][273], [PASS][274], [PASS][275], [PASS][276], [PASS][277], [PASS][278], [PASS][279], [PASS][280], [PASS][281]) ([Intel XE#2457])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-3/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-3/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-1/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@xe_module_load@load.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-3/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-4/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-4/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-7/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-7/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-4/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-7/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-1/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-4/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-5/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-6/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-6/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-6/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-3/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-5/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-1/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-1/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-8/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-8/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-3/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-3/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-3/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-1/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-6/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-8/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-5/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-2/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-2/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-7/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-7/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-2/igt@xe_module_load@load.html
- shard-dg2-set2: ([PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291], [PASS][292], [PASS][293], [PASS][294], [PASS][295], [PASS][296], [PASS][297], [PASS][298], [PASS][299], [PASS][300], [PASS][301], [PASS][302], [PASS][303], [PASS][304], [PASS][305], [PASS][306]) -> ([PASS][307], [PASS][308], [PASS][309], [PASS][310], [PASS][311], [PASS][312], [PASS][313], [PASS][314], [PASS][315], [PASS][316], [SKIP][317], [PASS][318], [PASS][319], [PASS][320], [PASS][321], [PASS][322], [PASS][323], [PASS][324], [PASS][325], [PASS][326], [PASS][327], [PASS][328], [PASS][329], [PASS][330], [PASS][331], [PASS][332]) ([Intel XE#378])
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-466/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@xe_module_load@load.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_module_load@load.html
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_module_load@load.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_module_load@load.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_module_load@load.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@xe_module_load@load.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@xe_module_load@load.html
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_module_load@load.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_module_load@load.html
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_module_load@load.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_module_load@load.html
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-464/igt@xe_module_load@load.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-435/igt@xe_module_load@load.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-435/igt@xe_module_load@load.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-466/igt@xe_module_load@load.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-432/igt@xe_module_load@load.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-466/igt@xe_module_load@load.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-436/igt@xe_module_load@load.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-433/igt@xe_module_load@load.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_module_load@load.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-432/igt@xe_module_load@load.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-463/igt@xe_module_load@load.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_module_load@load.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_module_load@load.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-463/igt@xe_module_load@load.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-463/igt@xe_module_load@load.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_module_load@load.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-433/igt@xe_module_load@load.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-433/igt@xe_module_load@load.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-463/igt@xe_module_load@load.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_module_load@load.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-432/igt@xe_module_load@load.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-436/igt@xe_module_load@load.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_module_load@load.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_module_load@load.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-464/igt@xe_module_load@load.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-464/igt@xe_module_load@load.html
* igt@xe_module_load@reload:
- shard-dg2-set2: NOTRUN -> [FAIL][333] ([Intel XE#4208])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_module_load@reload.html
* igt@xe_oa@buffer-fill:
- shard-adlp: NOTRUN -> [SKIP][334] ([Intel XE#3573]) +2 other tests skip
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-3/igt@xe_oa@buffer-fill.html
* igt@xe_oa@syncs-ufence-wait-cfg:
- shard-dg2-set2: NOTRUN -> [SKIP][335] ([Intel XE#3573]) +2 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-432/igt@xe_oa@syncs-ufence-wait-cfg.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][336] ([Intel XE#1173]) +1 other test fail
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-463/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@s3-mocs:
- shard-lnl: NOTRUN -> [SKIP][337] ([Intel XE#584])
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-5/igt@xe_pm@s3-mocs.html
* igt@xe_pxp@display-black-pxp-fb:
- shard-dg2-set2: NOTRUN -> [SKIP][338] ([Intel XE#4733]) +2 other tests skip
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-433/igt@xe_pxp@display-black-pxp-fb.html
* igt@xe_pxp@pxp-stale-bo-exec-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][339] ([Intel XE#4733]) +3 other tests skip
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-2/igt@xe_pxp@pxp-stale-bo-exec-post-suspend.html
* igt@xe_sriov_auto_provisioning@exclusive-ranges:
- shard-lnl: NOTRUN -> [SKIP][340] ([Intel XE#4130])
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-4/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
* igt@xe_sriov_scheduling@equal-throughput:
- shard-lnl: NOTRUN -> [SKIP][341] ([Intel XE#4351])
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-1/igt@xe_sriov_scheduling@equal-throughput.html
#### Possible fixes ####
* igt@fbdev@pan:
- shard-dg2-set2: [SKIP][342] ([Intel XE#2134]) -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@fbdev@pan.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-435/igt@fbdev@pan.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1:
- shard-adlp: [DMESG-WARN][344] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][345] +4 other tests pass
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-6/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-8/igt@kms_async_flips@async-flip-suspend-resume@pipe-c-hdmi-a-1.html
* igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1:
- shard-adlp: [FAIL][346] ([Intel XE#3884]) -> [PASS][347] +1 other test pass
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-6/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-3/igt@kms_async_flips@crc-atomic@pipe-d-hdmi-a-1.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-adlp: [DMESG-FAIL][348] ([Intel XE#4543]) -> [PASS][349] +10 other tests pass
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p:
- shard-bmg: [SKIP][350] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][351]
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2:
- shard-bmg: [INCOMPLETE][352] ([Intel XE#3862]) -> [PASS][353]
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4:
- shard-dg2-set2: [INCOMPLETE][354] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][355]
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4:
- shard-dg2-set2: [INCOMPLETE][356] ([Intel XE#3124]) -> [PASS][357]
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6:
- shard-dg2-set2: [DMESG-WARN][358] ([Intel XE#1727] / [Intel XE#3113]) -> [PASS][359]
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-bmg: [SKIP][360] ([Intel XE#2291]) -> [PASS][361] +2 other tests pass
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [DMESG-WARN][362] ([Intel XE#5354]) -> [PASS][363]
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_dp_aux_dev:
- shard-bmg: [SKIP][364] ([Intel XE#3009]) -> [PASS][365]
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_dp_aux_dev.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-8/igt@kms_dp_aux_dev.html
* igt@kms_flip@2x-plain-flip:
- shard-bmg: [SKIP][366] ([Intel XE#2316]) -> [PASS][367] +3 other tests pass
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_flip@2x-plain-flip.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-5/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][368] ([Intel XE#301]) -> [PASS][369] +1 other test pass
[368]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[369]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1:
- shard-adlp: [DMESG-WARN][370] ([Intel XE#4543]) -> [PASS][371] +12 other tests pass
[370]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1.html
[371]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling:
- shard-dg2-set2: [SKIP][372] ([Intel XE#2351] / [Intel XE#4208]) -> [PASS][373] +13 other tests pass
[372]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
[373]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-464/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][374] ([Intel XE#1503]) -> [PASS][375] +1 other test pass
[374]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_hdr@invalid-hdr.html
[375]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
* igt@kms_lease@invalid-create-leases:
- shard-dg2-set2: [SKIP][376] ([Intel XE#4208] / [i915#2575]) -> [PASS][377] +105 other tests pass
[376]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_lease@invalid-create-leases.html
[377]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-436/igt@kms_lease@invalid-create-leases.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: [SKIP][378] ([Intel XE#1435]) -> [PASS][379]
[378]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
[379]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue:
- shard-dg2-set2: [SKIP][380] ([Intel XE#1392]) -> [PASS][381] +3 other tests pass
[380]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
[381]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-435/igt@xe_exec_basic@multigpu-once-bindexecqueue.html
* igt@xe_exec_basic@once-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][382] ([Intel XE#4208]) -> [PASS][383] +222 other tests pass
[382]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_exec_basic@once-userptr-invalidate-race.html
[383]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-432/igt@xe_exec_basic@once-userptr-invalidate-race.html
* igt@xe_pmu@engine-activity-idle:
- shard-bmg: [DMESG-WARN][384] ([Intel XE#5213]) -> [PASS][385] +1 other test pass
[384]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@xe_pmu@engine-activity-idle.html
[385]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-1/igt@xe_pmu@engine-activity-idle.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random:
- shard-bmg: [FAIL][386] -> [PASS][387] +2 other tests pass
[386]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
[387]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-7/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs@vf-random.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-dg2-set2: [SKIP][388] ([Intel XE#316]) -> [SKIP][389] ([Intel XE#2351] / [Intel XE#4208])
[388]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
[389]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2-set2: [SKIP][390] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][391] ([Intel XE#316]) +1 other test skip
[390]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[391]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-433/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][392] ([Intel XE#4208]) -> [SKIP][393] ([Intel XE#316])
[392]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_big_fb@linear-8bpp-rotate-270.html
[393]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-433/igt@kms_big_fb@linear-8bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-dg2-set2: [SKIP][394] ([Intel XE#316]) -> [SKIP][395] ([Intel XE#4208])
[394]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[395]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg2-set2: [SKIP][396] ([Intel XE#1124]) -> [SKIP][397] ([Intel XE#2351] / [Intel XE#4208]) +5 other tests skip
[396]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
[397]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2-set2: [SKIP][398] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][399] ([Intel XE#607])
[398]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
[399]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-463/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2-set2: [SKIP][400] ([Intel XE#4208]) -> [SKIP][401] ([Intel XE#1124]) +7 other tests skip
[400]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[401]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-436/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][402] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][403] ([Intel XE#1124]) +4 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
[403]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2-set2: [SKIP][404] ([Intel XE#1124]) -> [SKIP][405] ([Intel XE#4208]) +5 other tests skip
[404]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
[405]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: [SKIP][406] ([Intel XE#2191]) -> [SKIP][407] ([Intel XE#4208] / [i915#2575]) +1 other test skip
[406]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
[407]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-dg2-set2: [SKIP][408] ([Intel XE#4208] / [i915#2575]) -> [SKIP][409] ([Intel XE#2191]) +1 other test skip
[408]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
[409]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: [SKIP][410] ([Intel XE#367]) -> [SKIP][411] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
[410]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
[411]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html
* igt@kms_bw@linear-tiling-3-displays-2560x1440p:
- shard-dg2-set2: [SKIP][412] ([Intel XE#4208] / [i915#2575]) -> [SKIP][413] ([Intel XE#367]) +3 other tests skip
[412]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
[413]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-436/igt@kms_bw@linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][414] ([Intel XE#4208]) -> [SKIP][415] ([Intel XE#455] / [Intel XE#787]) +12 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html
[415]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-433/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2-set2: [SKIP][416] ([Intel XE#2907]) -> [SKIP][417] ([Intel XE#4208]) +1 other test skip
[416]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
[417]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][418] ([Intel XE#4208]) -> [SKIP][419] ([Intel XE#2907]) +1 other test skip
[418]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
[419]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-436/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: [SKIP][420] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][421] ([Intel XE#2351] / [Intel XE#4208]) +3 other tests skip
[420]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
[421]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc:
- shard-dg2-set2: [SKIP][422] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][423] ([Intel XE#455] / [Intel XE#787]) +1 other test skip
[422]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
[423]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-dg2-set2: [SKIP][424] ([Intel XE#4208]) -> [SKIP][425] ([Intel XE#3442]) +1 other test skip
[424]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[425]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][426] ([Intel XE#3862]) -> [SKIP][427] ([Intel XE#4208])
[426]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
[427]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][428] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][429] ([Intel XE#4208]) +8 other tests skip
[428]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
[429]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs:
- shard-dg2-set2: [INCOMPLETE][430] ([Intel XE#1727] / [Intel XE#3113]) -> [INCOMPLETE][431] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345])
[430]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
[431]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][432] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) -> [INCOMPLETE][433] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#4212] / [Intel XE#4345] / [Intel XE#4522])
[432]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[433]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [INCOMPLETE][434] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [SKIP][435] ([Intel XE#4208])
[434]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[435]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-0-50:
- shard-dg2-set2: [SKIP][436] ([Intel XE#306]) -> [SKIP][437] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_chamelium_color@ctm-0-50.html
[437]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_chamelium_color@ctm-0-50.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-dg2-set2: [SKIP][438] ([Intel XE#4208] / [i915#2575]) -> [SKIP][439] ([Intel XE#306]) +1 other test skip
[438]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_chamelium_color@ctm-limited-range.html
[439]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-463/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-dg2-set2: [SKIP][440] ([Intel XE#4208] / [i915#2575]) -> [SKIP][441] ([Intel XE#373]) +10 other tests skip
[440]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
[441]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-432/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-dg2-set2: [SKIP][442] ([Intel XE#373]) -> [SKIP][443] ([Intel XE#4208] / [i915#2575]) +8 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_chamelium_hpd@vga-hpd.html
[443]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@atomic:
- shard-bmg: [FAIL][444] ([Intel XE#1178]) -> [SKIP][445] ([Intel XE#2341]) +1 other test skip
[444]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@kms_content_protection@atomic.html
[445]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-6/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2-set2: [FAIL][446] ([Intel XE#1178]) -> [SKIP][447] ([Intel XE#4208] / [i915#2575]) +1 other test skip
[446]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_content_protection@atomic-dpms.html
[447]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2-set2: [SKIP][448] ([Intel XE#307]) -> [SKIP][449] ([Intel XE#4208] / [i915#2575])
[448]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_content_protection@dp-mst-lic-type-1.html
[449]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@lic-type-0:
- shard-bmg: [SKIP][450] ([Intel XE#2341]) -> [FAIL][451] ([Intel XE#1178])
[450]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_content_protection@lic-type-0.html
[451]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-4/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-dg2-set2: [SKIP][452] ([Intel XE#455]) -> [SKIP][453] ([Intel XE#4208] / [i915#2575]) +8 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_content_protection@lic-type-1.html
[453]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@uevent:
- shard-dg2-set2: [SKIP][454] ([Intel XE#4208] / [i915#2575]) -> [FAIL][455] ([Intel XE#1188])
[454]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_content_protection@uevent.html
[455]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-466/igt@kms_content_protection@uevent.html
- shard-bmg: [SKIP][456] ([Intel XE#2341]) -> [FAIL][457] ([Intel XE#1188])
[456]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_content_protection@uevent.html
[457]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-8/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-dg2-set2: [SKIP][458] ([Intel XE#308]) -> [SKIP][459] ([Intel XE#4208] / [i915#2575]) +2 other tests skip
[458]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[459]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-dg2-set2: [SKIP][460] ([Intel XE#323]) -> [SKIP][461] ([Intel XE#4208] / [i915#2575])
[460]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[461]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2-set2: [SKIP][462] ([Intel XE#4208] / [i915#2575]) -> [SKIP][463] ([Intel XE#323])
[462]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[463]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-436/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-dg2-set2: [SKIP][464] ([Intel XE#4208]) -> [SKIP][465] ([Intel XE#4356])
[464]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_dp_link_training@uhbr-sst.html
[465]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-463/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats:
- shard-dg2-set2: [SKIP][466] ([Intel XE#4208]) -> [SKIP][467] ([Intel XE#4422])
[466]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
[467]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-433/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html
* igt@kms_feature_discovery@chamelium:
- shard-dg2-set2: [SKIP][468] ([Intel XE#701]) -> [SKIP][469] ([Intel XE#4208] / [i915#2575])
[468]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_feature_discovery@chamelium.html
[469]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-dg2-set2: [SKIP][470] ([Intel XE#4208] / [i915#2575]) -> [SKIP][471] ([Intel XE#703])
[470]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_feature_discovery@display-3x.html
[471]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-432/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: [SKIP][472] ([Intel XE#1138]) -> [SKIP][473] ([Intel XE#4208] / [i915#2575])
[472]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_feature_discovery@display-4x.html
[473]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: [SKIP][474] ([Intel XE#4208] / [i915#2575]) -> [SKIP][475] ([Intel XE#1135]) +1 other test skip
[474]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_feature_discovery@psr1.html
[475]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-464/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@flip-vs-suspend:
- shard-adlp: [DMESG-WARN][476] ([Intel XE#2953] / [Intel XE#4173]) -> [DMESG-WARN][477] ([Intel XE#4543])
[476]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-6/igt@kms_flip@flip-vs-suspend.html
[477]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-2/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-adlp: [DMESG-WARN][478] ([Intel XE#4543]) -> [DMESG-WARN][479] ([Intel XE#2953] / [Intel XE#4173])
[478]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-adlp-2/igt@kms_flip@flip-vs-suspend-interruptible.html
[479]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-adlp-6/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-dg2-set2: [SKIP][480] ([Intel XE#455]) -> [SKIP][481] ([Intel XE#2351] / [Intel XE#4208]) +2 other tests skip
[480]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
[481]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][482] ([Intel XE#455]) -> [SKIP][483] ([Intel XE#4208]) +5 other tests skip
[482]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
[483]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][484] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][485] ([Intel XE#455]) +2 other tests skip
[484]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[485]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-435/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-dg2-set2: [SKIP][486] ([Intel XE#4208]) -> [SKIP][487] ([Intel XE#455]) +5 other tests skip
[486]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
[487]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][488] ([Intel XE#651]) -> [SKIP][489] ([Intel XE#4208]) +19 other tests skip
[488]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html
[489]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff:
- shard-dg2-set2: [SKIP][490] ([Intel XE#651]) -> [SKIP][491] ([Intel XE#2351] / [Intel XE#4208]) +9 other tests skip
[490]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
[491]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][492] ([Intel XE#2311]) -> [SKIP][493] ([Intel XE#2312]) +7 other tests skip
[492]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
[493]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move:
- shard-dg2-set2: [SKIP][494] ([Intel XE#4208]) -> [SKIP][495] ([Intel XE#651]) +20 other tests skip
[494]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move.html
[495]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@drrs-slowdraw:
- shard-dg2-set2: [SKIP][496] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][497] ([Intel XE#651]) +11 other tests skip
[496]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-slowdraw.html
[497]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-slowdraw.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt:
- shard-bmg: [SKIP][498] ([Intel XE#2312]) -> [SKIP][499] ([Intel XE#5390])
[498]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
[499]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt:
- shard-bmg: [SKIP][500] ([Intel XE#5390]) -> [SKIP][501] ([Intel XE#2312]) +3 other tests skip
[500]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
[501]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][502] ([Intel XE#2312]) -> [SKIP][503] ([Intel XE#2311]) +10 other tests skip
[502]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
[503]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-dg2-set2: [SKIP][504] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][505] ([Intel XE#658]) +1 other test skip
[504]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[505]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2-set2: [SKIP][506] ([Intel XE#653]) -> [SKIP][507] ([Intel XE#4208]) +21 other tests skip
[506]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[507]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][508] ([Intel XE#2312]) -> [SKIP][509] ([Intel XE#2313]) +7 other tests skip
[508]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html
[509]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: [SKIP][510] ([Intel XE#2313]) -> [SKIP][511] ([Intel XE#2312]) +8 other tests skip
[510]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
[511]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][512] ([Intel XE#653]) -> [SKIP][513] ([Intel XE#2351] / [Intel XE#4208]) +3 other tests skip
[512]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
[513]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-dg2-set2: [SKIP][514] ([Intel XE#2351] / [Intel XE#4208]) -> [SKIP][515] ([Intel XE#653]) +9 other tests skip
[514]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
[515]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt:
- shard-dg2-set2: [SKIP][516] ([Intel XE#4208]) -> [SKIP][517] ([Intel XE#653]) +21 other tests skip
[516]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
[517]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][518] ([Intel XE#3544]) -> [SKIP][519] ([Intel XE#3374] / [Intel XE#3544])
[518]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-5/igt@kms_hdr@brightness-with-hdr.html
[519]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-2/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-big-joiner:
- shard-dg2-set2: [SKIP][520] ([Intel XE#346]) -> [SKIP][521] ([Intel XE#4208])
[520]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_joiner@basic-big-joiner.html
[521]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2-set2: [SKIP][522] ([Intel XE#4208]) -> [SKIP][523] ([Intel XE#2925])
[522]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_joiner@basic-force-ultra-joiner.html
[523]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-436/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-dg2-set2: [SKIP][524] ([Intel XE#4298]) -> [SKIP][525] ([Intel XE#4208])
[524]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_joiner@basic-max-non-joiner.html
[525]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_plane_cursor@primary:
- shard-dg2-set2: [FAIL][526] ([Intel XE#616]) -> [SKIP][527] ([Intel XE#4208] / [i915#2575])
[526]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@kms_plane_cursor@primary.html
[527]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_plane_cursor@primary.html
* igt@kms_plane_multiple@tiling-yf:
- shard-dg2-set2: [SKIP][528] ([Intel XE#5020]) -> [SKIP][529] ([Intel XE#4208] / [i915#2575]) +1 other test skip
[528]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_plane_multiple@tiling-yf.html
[529]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-dg2-set2: [SKIP][530] ([Intel XE#870]) -> [SKIP][531] ([Intel XE#4208])
[530]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_pm_backlight@fade-with-dpms.html
[531]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-dg2-set2: [SKIP][532] ([Intel XE#4208]) -> [SKIP][533] ([Intel XE#870]) +1 other test skip
[532]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_pm_backlight@fade-with-suspend.html
[533]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-463/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc5-psr:
- shard-dg2-set2: [SKIP][534] ([Intel XE#4208]) -> [SKIP][535] ([Intel XE#1129])
[534]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_pm_dc@dc5-psr.html
[535]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-433/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-dg2-set2: [SKIP][536] ([Intel XE#908]) -> [SKIP][537] ([Intel XE#2351] / [Intel XE#4208])
[536]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_pm_dc@dc6-dpms.html
[537]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-dg2-set2: [SKIP][538] ([Intel XE#1129]) -> [SKIP][539] ([Intel XE#2351] / [Intel XE#4208])
[538]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@kms_pm_dc@dc6-psr.html
[539]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_pm_dc@dc6-psr.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-dg2-set2: [SKIP][540] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][541] ([Intel XE#1406] / [Intel XE#1489]) +8 other tests skip
[540]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
[541]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-466/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-dg2-set2: [SKIP][542] ([Intel XE#1406] / [Intel XE#1489]) -> [SKIP][543] ([Intel XE#1406] / [Intel XE#4208]) +7 other tests skip
[542]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
[543]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2-set2: [SKIP][544] ([Intel XE#1122] / [Intel XE#1406]) -> [SKIP][545] ([Intel XE#1406] / [Intel XE#4208]) +1 other test skip
[544]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@kms_psr2_su@page_flip-nv12.html
[545]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr-cursor-plane-onoff:
- shard-dg2-set2: [SKIP][546] ([Intel XE#1406] / [Intel XE#4208]) -> [SKIP][547] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +10 other tests skip
[546]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
[547]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-433/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr-sprite-plane-move:
- shard-dg2-set2: [SKIP][548] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][549] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) +4 other tests skip
[548]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-plane-move.html
[549]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_psr@fbc-psr-sprite-plane-move.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: [SKIP][550] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) -> [SKIP][551] ([Intel XE#1406] / [Intel XE#4208]) +7 other tests skip
[550]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@kms_psr@fbc-psr2-sprite-plane-move.html
[551]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-dg2-set2: [SKIP][552] ([Intel XE#1406] / [Intel XE#2351] / [Intel XE#4208]) -> [SKIP][553] ([Intel XE#1406] / [Intel XE#2850] / [Intel XE#929]) +2 other tests skip
[552]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-render.html
[553]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-466/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2-set2: [SKIP][554] ([Intel XE#3414]) -> [SKIP][555] ([Intel XE#4208] / [i915#2575])
[554]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@kms_rotation_crc@primary-rotation-270.html
[555]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2-set2: [SKIP][556] ([Intel XE#4208] / [i915#2575]) -> [SKIP][557] ([Intel XE#3414]) +3 other tests skip
[556]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-270.html
[557]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-464/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-full:
- shard-dg2-set2: [SKIP][558] ([Intel XE#4208] / [i915#2575]) -> [SKIP][559] ([Intel XE#455]) +9 other tests skip
[558]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_scaling_modes@scaling-mode-full.html
[559]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-466/igt@kms_scaling_modes@scaling-mode-full.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][560] ([Intel XE#2426]) -> [FAIL][561] ([Intel XE#1729])
[560]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html
[561]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html
- shard-dg2-set2: [SKIP][562] ([Intel XE#4208] / [i915#2575]) -> [FAIL][563] ([Intel XE#1729])
[562]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
[563]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-433/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: [SKIP][564] ([Intel XE#330]) -> [SKIP][565] ([Intel XE#4208] / [i915#2575])
[564]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@kms_tv_load_detect@load-detect.html
[565]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@kms_tv_load_detect@load-detect.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2-set2: [SKIP][566] ([Intel XE#1091] / [Intel XE#2849]) -> [SKIP][567] ([Intel XE#4208] / [i915#2575])
[566]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[567]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute_preempt@compute-preempt:
- shard-dg2-set2: [SKIP][568] ([Intel XE#1280] / [Intel XE#455]) -> [SKIP][569] ([Intel XE#4208])
[568]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@xe_compute_preempt@compute-preempt.html
[569]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_compute_preempt@compute-preempt.html
* igt@xe_copy_basic@mem-copy-linear-0x3fff:
- shard-dg2-set2: [SKIP][570] ([Intel XE#4208]) -> [SKIP][571] ([Intel XE#1123]) +1 other test skip
[570]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
[571]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0x3fff.html
* igt@xe_copy_basic@mem-copy-linear-0xfffe:
- shard-dg2-set2: [SKIP][572] ([Intel XE#1123]) -> [SKIP][573] ([Intel XE#4208]) +1 other test skip
[572]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
[573]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_copy_basic@mem-copy-linear-0xfffe.html
* igt@xe_copy_basic@mem-set-linear-0xfd:
- shard-dg2-set2: [SKIP][574] ([Intel XE#4208]) -> [SKIP][575] ([Intel XE#1126])
[574]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfd.html
[575]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfd.html
* igt@xe_eu_stall@blocking-read:
- shard-dg2-set2: [SKIP][576] ([Intel XE#5626]) -> [SKIP][577] ([Intel XE#4208])
[576]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_eu_stall@blocking-read.html
[577]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_eu_stall@blocking-read.html
* igt@xe_eu_stall@invalid-event-report-count:
- shard-dg2-set2: [SKIP][578] ([Intel XE#4208]) -> [SKIP][579] ([Intel XE#5626]) +1 other test skip
[578]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_eu_stall@invalid-event-report-count.html
[579]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-466/igt@xe_eu_stall@invalid-event-report-count.html
* igt@xe_eudebug@vm-bind-clear-faultable:
- shard-dg2-set2: [SKIP][580] ([Intel XE#4208]) -> [SKIP][581] ([Intel XE#4837]) +15 other tests skip
[580]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_eudebug@vm-bind-clear-faultable.html
[581]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-436/igt@xe_eudebug@vm-bind-clear-faultable.html
* igt@xe_exec_basic@multigpu-once-basic-defer-bind:
- shard-dg2-set2: [SKIP][582] ([Intel XE#1392]) -> [SKIP][583] ([Intel XE#4208])
[582]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
[583]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html
* igt@xe_exec_basic@multigpu-once-null-rebind:
- shard-dg2-set2: [SKIP][584] ([Intel XE#4208]) -> [SKIP][585] ([Intel XE#1392]) +1 other test skip
[584]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_exec_basic@multigpu-once-null-rebind.html
[585]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null-rebind.html
* igt@xe_exec_fault_mode@once-rebind-imm:
- shard-dg2-set2: [SKIP][586] ([Intel XE#288]) -> [SKIP][587] ([Intel XE#4208]) +26 other tests skip
[586]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_exec_fault_mode@once-rebind-imm.html
[587]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_exec_fault_mode@once-rebind-imm.html
* igt@xe_exec_fault_mode@twice-userptr-rebind-imm:
- shard-dg2-set2: [SKIP][588] ([Intel XE#4208]) -> [SKIP][589] ([Intel XE#288]) +29 other tests skip
[588]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
[589]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html
* igt@xe_exec_mix_modes@exec-spinner-interrupted-lr:
- shard-dg2-set2: [SKIP][590] ([Intel XE#2360]) -> [SKIP][591] ([Intel XE#4208])
[590]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
[591]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_exec_mix_modes@exec-spinner-interrupted-lr.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
- shard-dg2-set2: [SKIP][592] ([Intel XE#4837]) -> [SKIP][593] ([Intel XE#4208]) +13 other tests skip
[592]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-435/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
[593]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
* igt@xe_exec_system_allocator@threads-many-stride-mmap-remap-eocheck:
- shard-dg2-set2: [SKIP][594] ([Intel XE#4208]) -> [SKIP][595] ([Intel XE#4915]) +301 other tests skip
[594]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-stride-mmap-remap-eocheck.html
[595]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-463/igt@xe_exec_system_allocator@threads-many-stride-mmap-remap-eocheck.html
* igt@xe_exec_system_allocator@threads-many-stride-new-nomemset:
- shard-dg2-set2: [SKIP][596] ([Intel XE#4915]) -> [SKIP][597] ([Intel XE#4208]) +258 other tests skip
[596]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_exec_system_allocator@threads-many-stride-new-nomemset.html
[597]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_exec_system_allocator@threads-many-stride-new-nomemset.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv:
- shard-dg2-set2: [ABORT][598] ([Intel XE#4917]) -> [SKIP][599] ([Intel XE#4208])
[598]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
[599]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_fault_injection@probe-fail-guc-xe_guc_ct_send_recv.html
* igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv:
- shard-dg2-set2: [DMESG-WARN][600] ([Intel XE#5893]) -> [SKIP][601] ([Intel XE#4208])
[600]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
[601]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_fault_injection@probe-fail-guc-xe_guc_mmio_send_recv.html
* igt@xe_huc_copy@huc_copy:
- shard-dg2-set2: [SKIP][602] ([Intel XE#255]) -> [SKIP][603] ([Intel XE#4208])
[602]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-463/igt@xe_huc_copy@huc_copy.html
[603]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_huc_copy@huc_copy.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: [SKIP][604] ([Intel XE#4208]) -> [SKIP][605] ([Intel XE#512])
[604]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_mmap@small-bar.html
[605]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-433/igt@xe_mmap@small-bar.html
* igt@xe_oa@polling-small-buf:
- shard-dg2-set2: [SKIP][606] ([Intel XE#4208]) -> [SKIP][607] ([Intel XE#3573]) +7 other tests skip
[606]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_oa@polling-small-buf.html
[607]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-464/igt@xe_oa@polling-small-buf.html
* igt@xe_oa@whitelisted-registers-userspace-config:
- shard-dg2-set2: [SKIP][608] ([Intel XE#3573]) -> [SKIP][609] ([Intel XE#4208]) +6 other tests skip
[608]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_oa@whitelisted-registers-userspace-config.html
[609]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_oa@whitelisted-registers-userspace-config.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: [SKIP][610] ([Intel XE#4208]) -> [SKIP][611] ([Intel XE#979])
[610]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html
[611]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-463/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read:
- shard-dg2-set2: [SKIP][612] ([Intel XE#1061] / [Intel XE#4208]) -> [FAIL][613] ([Intel XE#1173]) +1 other test fail
[612]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_peer2peer@read.html
[613]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-463/igt@xe_peer2peer@read.html
* igt@xe_pm@d3cold-mocs:
- shard-bmg: [SKIP][614] ([Intel XE#2284]) -> [ABORT][615] ([Intel XE#4760] / [Intel XE#5545])
[614]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-bmg-3/igt@xe_pm@d3cold-mocs.html
[615]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-bmg-3/igt@xe_pm@d3cold-mocs.html
- shard-dg2-set2: [SKIP][616] ([Intel XE#2284]) -> [SKIP][617] ([Intel XE#4208])
[616]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_pm@d3cold-mocs.html
[617]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@s2idle-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][618] ([Intel XE#4208]) -> [SKIP][619] ([Intel XE#2284] / [Intel XE#366])
[618]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_pm@s2idle-d3cold-basic-exec.html
[619]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-464/igt@xe_pm@s2idle-d3cold-basic-exec.html
* igt@xe_pm@s3-d3cold-basic-exec:
- shard-dg2-set2: [SKIP][620] ([Intel XE#2284] / [Intel XE#366]) -> [SKIP][621] ([Intel XE#4208])
[620]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-432/igt@xe_pm@s3-d3cold-basic-exec.html
[621]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_pm@s3-d3cold-basic-exec.html
* igt@xe_pmu@all-fn-engine-activity-load:
- shard-dg2-set2: [SKIP][622] ([Intel XE#4208]) -> [SKIP][623] ([Intel XE#4650])
[622]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_pmu@all-fn-engine-activity-load.html
[623]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-435/igt@xe_pmu@all-fn-engine-activity-load.html
* igt@xe_pxp@pxp-stale-bo-bind-post-suspend:
- shard-dg2-set2: [SKIP][624] ([Intel XE#4208]) -> [SKIP][625] ([Intel XE#4733]) +2 other tests skip
[624]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
[625]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-464/igt@xe_pxp@pxp-stale-bo-bind-post-suspend.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-dg2-set2: [SKIP][626] ([Intel XE#4733]) -> [SKIP][627] ([Intel XE#4208]) +2 other tests skip
[626]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-436/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
[627]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-cs-cycles:
- shard-dg2-set2: [SKIP][628] ([Intel XE#944]) -> [SKIP][629] ([Intel XE#4208]) +2 other tests skip
[628]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-433/igt@xe_query@multigpu-query-cs-cycles.html
[629]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_query@multigpu-query-cs-cycles.html
* igt@xe_query@multigpu-query-oa-units:
- shard-dg2-set2: [SKIP][630] ([Intel XE#4208]) -> [SKIP][631] ([Intel XE#944]) +2 other tests skip
[630]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_query@multigpu-query-oa-units.html
[631]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-464/igt@xe_query@multigpu-query-oa-units.html
* igt@xe_render_copy@render-stress-2-copies:
- shard-dg2-set2: [SKIP][632] ([Intel XE#4814]) -> [SKIP][633] ([Intel XE#4208]) +1 other test skip
[632]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@xe_render_copy@render-stress-2-copies.html
[633]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_render_copy@render-stress-2-copies.html
* igt@xe_render_copy@render-stress-4-copies:
- shard-dg2-set2: [SKIP][634] ([Intel XE#4208]) -> [SKIP][635] ([Intel XE#4814])
[634]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_render_copy@render-stress-4-copies.html
[635]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-435/igt@xe_render_copy@render-stress-4-copies.html
* igt@xe_sriov_auto_provisioning@exclusive-ranges:
- shard-dg2-set2: [SKIP][636] ([Intel XE#4130]) -> [SKIP][637] ([Intel XE#4208])
[636]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-464/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
[637]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_sriov_auto_provisioning@exclusive-ranges.html
* igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling:
- shard-dg2-set2: [SKIP][638] ([Intel XE#4208]) -> [SKIP][639] ([Intel XE#4130]) +2 other tests skip
[638]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
[639]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-436/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-dg2-set2: [SKIP][640] ([Intel XE#3342]) -> [SKIP][641] ([Intel XE#4208])
[640]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-466/igt@xe_sriov_flr@flr-vf1-clear.html
[641]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-434/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-dg2-set2: [SKIP][642] ([Intel XE#4208]) -> [SKIP][643] ([Intel XE#4273])
[642]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_sriov_flr@flr-vfs-parallel.html
[643]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-433/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-dg2-set2: [SKIP][644] ([Intel XE#4208]) -> [SKIP][645] ([Intel XE#4351])
[644]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97/shard-dg2-434/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
[645]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/shard-dg2-464/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#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126
[Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[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#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467
[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#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#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#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#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[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#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[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#2909]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2909
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#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#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279
[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#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[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#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442
[Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346
[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#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[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#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[Intel XE#3884]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3884
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#3908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3908
[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#4208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4208
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329
[Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345
[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#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518
[Intel XE#4522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4522
[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#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609
[Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4760
[Intel XE#4814]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4814
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/488
[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#4921]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4921
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5103]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5103
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208
[Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213
[Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299
[Intel XE#5300]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5300
[Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354
[Intel XE#5390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5390
[Intel XE#5503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5503
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5561]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5561
[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#5607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5607
[Intel XE#5626]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5626
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#5794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5794
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5890
[Intel XE#5893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5893
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701
[Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[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#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8512 -> IGT_8513
* Linux: xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97 -> xe-pw-153648v1
IGT_8512: 8512
IGT_8513: 6540636111c1c01271f55abcc18c775426d4a18f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3631-a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97: a59cf1d7fe0e19ce3a6e8cf2a20cfb24896baa97
xe-pw-153648v1: 153648v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-153648v1/index.html
[-- Attachment #2: Type: text/html, Size: 190576 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread* Re: [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction
2025-08-28 15:42 [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction Thomas Hellström
` (3 preceding siblings ...)
2025-08-29 1:06 ` ✗ Xe.CI.Full: " Patchwork
@ 2025-08-29 7:42 ` Maarten Lankhorst
2025-08-29 10:55 ` Thomas Hellström
4 siblings, 1 reply; 11+ messages in thread
From: Maarten Lankhorst @ 2025-08-29 7:42 UTC (permalink / raw)
To: Thomas Hellström, intel-xe; +Cc: Matthew Brost, Matthew Auld, stable
Hey,
Den 2025-08-28 kl. 17:42, skrev Thomas Hellström:
> VRAM+TT bos that are evicted from VRAM to TT may remain in
> TT also after a revalidation following eviction or suspend.
>
> This manifests itself as applications becoming sluggish
> after buffer objects get evicted or after a resume from
> suspend or hibernation.
>
> If the bo supports placement in both VRAM and TT, and
> we are on DGFX, mark the TT placement as fallback. This means
> that it is tried only after VRAM + eviction.
>
> This flaw has probably been present since the xe module was
> upstreamed but use a Fixes: commit below where backporting is
> likely to be simple. For earlier versions we need to open-
> code the fallback algorithm in the driver.
>
> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5995
> Fixes: a78a8da51b36 ("drm/ttm: replace busy placement with flags v6")
I'd say it this closes a bug in the original driver, although effectively v6.8 is no longer supported anyway.
Should DESIRED also be set on the add_vram flags?
> Cc: Matthew Brost <matthew.brost@intel.com>
> Cc: Matthew Auld <matthew.auld@intel.com>
> Cc: <stable@vger.kernel.org> # v6.9+
> Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> ---
> drivers/gpu/drm/xe/xe_bo.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/gpu/drm/xe/xe_bo.c b/drivers/gpu/drm/xe/xe_bo.c
> index 4faf15d5fa6d..64dea4e478bd 100644
> --- a/drivers/gpu/drm/xe/xe_bo.c
> +++ b/drivers/gpu/drm/xe/xe_bo.c
> @@ -188,6 +188,8 @@ static void try_add_system(struct xe_device *xe, struct xe_bo *bo,
>
> bo->placements[*c] = (struct ttm_place) {
> .mem_type = XE_PL_TT,
> + .flags = (IS_DGFX(xe) && (bo_flags & XE_BO_FLAG_VRAM_MASK)) ?
> + TTM_PL_FLAG_FALLBACK : 0,
> };
> *c += 1;
> }
Kind regards,
~Maarten Lankhorst
^ permalink raw reply [flat|nested] 11+ messages in thread* Re: [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction
2025-08-29 7:42 ` [PATCH] " Maarten Lankhorst
@ 2025-08-29 10:55 ` Thomas Hellström
2025-08-29 11:21 ` Maarten Lankhorst
0 siblings, 1 reply; 11+ messages in thread
From: Thomas Hellström @ 2025-08-29 10:55 UTC (permalink / raw)
To: Maarten Lankhorst, intel-xe; +Cc: Matthew Brost, Matthew Auld, stable
On Fri, 2025-08-29 at 09:42 +0200, Maarten Lankhorst wrote:
> Hey,
>
> Den 2025-08-28 kl. 17:42, skrev Thomas Hellström:
> > VRAM+TT bos that are evicted from VRAM to TT may remain in
> > TT also after a revalidation following eviction or suspend.
> >
> > This manifests itself as applications becoming sluggish
> > after buffer objects get evicted or after a resume from
> > suspend or hibernation.
> >
> > If the bo supports placement in both VRAM and TT, and
> > we are on DGFX, mark the TT placement as fallback. This means
> > that it is tried only after VRAM + eviction.
> >
> > This flaw has probably been present since the xe module was
> > upstreamed but use a Fixes: commit below where backporting is
> > likely to be simple. For earlier versions we need to open-
> > code the fallback algorithm in the driver.
> >
> > Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5995
> > Fixes: a78a8da51b36 ("drm/ttm: replace busy placement with flags
> > v6")
> I'd say it this closes a bug in the original driver, although
> effectively v6.8 is no longer supported anyway.
>
> Should DESIRED also be set on the add_vram flags?
It looks for me from the TTM code that TTM then *skips* the placement
when doing a second pass with evictions.
So that's not really what we want IMO.
/Thomas
>
> > Cc: Matthew Brost <matthew.brost@intel.com>
> > Cc: Matthew Auld <matthew.auld@intel.com>
> > Cc: <stable@vger.kernel.org> # v6.9+
> > Signed-off-by: Thomas Hellström <thomas.hellstrom@linux.intel.com>
> > ---
> > drivers/gpu/drm/xe/xe_bo.c | 2 ++
> > 1 file changed, 2 insertions(+)
> >
> > diff --git a/drivers/gpu/drm/xe/xe_bo.c
> > b/drivers/gpu/drm/xe/xe_bo.c
> > index 4faf15d5fa6d..64dea4e478bd 100644
> > --- a/drivers/gpu/drm/xe/xe_bo.c
> > +++ b/drivers/gpu/drm/xe/xe_bo.c
> > @@ -188,6 +188,8 @@ static void try_add_system(struct xe_device
> > *xe, struct xe_bo *bo,
> >
> > bo->placements[*c] = (struct ttm_place) {
> > .mem_type = XE_PL_TT,
> > + .flags = (IS_DGFX(xe) && (bo_flags &
> > XE_BO_FLAG_VRAM_MASK)) ?
> > + TTM_PL_FLAG_FALLBACK : 0,
> > };
> > *c += 1;
> > }
>
> Kind regards,
> ~Maarten Lankhorst
^ permalink raw reply [flat|nested] 11+ messages in thread* Re: [PATCH] drm/xe: Attempt to bring bos back to VRAM after eviction
2025-08-29 10:55 ` Thomas Hellström
@ 2025-08-29 11:21 ` Maarten Lankhorst
0 siblings, 0 replies; 11+ messages in thread
From: Maarten Lankhorst @ 2025-08-29 11:21 UTC (permalink / raw)
To: Thomas Hellström, intel-xe; +Cc: Matthew Brost, Matthew Auld, stable
Hey,
Den 2025-08-29 kl. 12:55, skrev Thomas Hellström:
> On Fri, 2025-08-29 at 09:42 +0200, Maarten Lankhorst wrote:
>> Hey,
>>
>> Den 2025-08-28 kl. 17:42, skrev Thomas Hellström:
>>> VRAM+TT bos that are evicted from VRAM to TT may remain in
>>> TT also after a revalidation following eviction or suspend.
>>>
>>> This manifests itself as applications becoming sluggish
>>> after buffer objects get evicted or after a resume from
>>> suspend or hibernation.
>>>
>>> If the bo supports placement in both VRAM and TT, and
>>> we are on DGFX, mark the TT placement as fallback. This means
>>> that it is tried only after VRAM + eviction.
>>>
>>> This flaw has probably been present since the xe module was
>>> upstreamed but use a Fixes: commit below where backporting is
>>> likely to be simple. For earlier versions we need to open-
>>> code the fallback algorithm in the driver.
>>>
>>> Closes: https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/5995
>>> Fixes: a78a8da51b36 ("drm/ttm: replace busy placement with flags
>>> v6")
>> I'd say it this closes a bug in the original driver, although
>> effectively v6.8 is no longer supported anyway.
>>
>> Should DESIRED also be set on the add_vram flags?
>
> It looks for me from the TTM code that TTM then *skips* the placement
> when doing a second pass with evictions.
>
> So that's not really what we want IMO.
> Yeah, seems the flag name is a bit misleading, it's more of an opportunistic placement
when space is available.
Kind regards,
~Maarten Lankhorst
^ permalink raw reply [flat|nested] 11+ messages in thread