* [PATCH] drm/xe/xe_pmu: Validate gt in event supported
@ 2025-06-30 9:37 Riana Tauro
2025-06-30 15:33 ` Poosa, Karthik
` (4 more replies)
0 siblings, 5 replies; 13+ messages in thread
From: Riana Tauro @ 2025-06-30 9:37 UTC (permalink / raw)
To: intel-xe
Cc: riana.tauro, anshuman.gupta, umesh.nerlige.ramappa, sk.anirban,
soham.purkait
Validate gt instead of checking gt_id is lesser
than max gts per tile
Signed-off-by: Riana Tauro <riana.tauro@intel.com>
---
drivers/gpu/drm/xe/xe_pmu.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/xe/xe_pmu.c b/drivers/gpu/drm/xe/xe_pmu.c
index 69df0e3520a5..cab51d826345 100644
--- a/drivers/gpu/drm/xe/xe_pmu.c
+++ b/drivers/gpu/drm/xe/xe_pmu.c
@@ -157,10 +157,13 @@ static bool event_gt_forcewake(struct perf_event *event)
return true;
}
-static bool event_supported(struct xe_pmu *pmu, unsigned int gt,
+static bool event_supported(struct xe_pmu *pmu, unsigned int gt_id,
unsigned int id)
{
- if (gt >= XE_MAX_GT_PER_TILE)
+ struct xe_device *xe = container_of(pmu, typeof(*xe), pmu);
+ struct xe_gt *gt = xe_device_get_gt(xe, gt_id);
+
+ if (!gt)
return false;
return id < sizeof(pmu->supported_events) * BITS_PER_BYTE &&
--
2.47.1
^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: drm/xe/xe_pmu: Validate gt in event supported
2025-06-30 9:37 [PATCH] drm/xe/xe_pmu: Validate gt in event supported Riana Tauro
@ 2025-06-30 15:33 ` Poosa, Karthik
2025-06-30 16:32 ` Riana Tauro
2025-06-30 22:28 ` [PATCH] " Lucas De Marchi
` (3 subsequent siblings)
4 siblings, 1 reply; 13+ messages in thread
From: Poosa, Karthik @ 2025-06-30 15:33 UTC (permalink / raw)
To: Riana Tauro, intel-xe
Cc: anshuman.gupta, umesh.nerlige.ramappa, sk.anirban, soham.purkait
[-- Attachment #1: Type: text/plain, Size: 1146 bytes --]
On 30-06-2025 15:07, Riana Tauro wrote:
> Validate gt instead of checking gt_id is lesser
> than max gts per tile
>
> Signed-off-by: Riana Tauro<riana.tauro@intel.com>
> ---
> drivers/gpu/drm/xe/xe_pmu.c | 7 +++++--
> 1 file changed, 5 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/xe/xe_pmu.c b/drivers/gpu/drm/xe/xe_pmu.c
> index 69df0e3520a5..cab51d826345 100644
> --- a/drivers/gpu/drm/xe/xe_pmu.c
> +++ b/drivers/gpu/drm/xe/xe_pmu.c
> @@ -157,10 +157,13 @@ static bool event_gt_forcewake(struct perf_event *event)
> return true;
> }
>
> -static bool event_supported(struct xe_pmu *pmu, unsigned int gt,
> +static bool event_supported(struct xe_pmu *pmu, unsigned int gt_id,
> unsigned int id)
> {
> - if (gt >= XE_MAX_GT_PER_TILE)
> + struct xe_device *xe = container_of(pmu, typeof(*xe), pmu);
> + struct xe_gt *gt = xe_device_get_gt(xe, gt_id);
Looks like xe_device_get_gt() would return primary_gt handle, instead of NULL, if gt_id >
XE_MAX_GT_PER_TILE. gt would be always valid then !
> +
> + if (!gt)
> return false;
>
> return id < sizeof(pmu->supported_events) * BITS_PER_BYTE &&
[-- Attachment #2: Type: text/html, Size: 1825 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: drm/xe/xe_pmu: Validate gt in event supported
2025-06-30 15:33 ` Poosa, Karthik
@ 2025-06-30 16:32 ` Riana Tauro
0 siblings, 0 replies; 13+ messages in thread
From: Riana Tauro @ 2025-06-30 16:32 UTC (permalink / raw)
To: Poosa, Karthik, intel-xe
Cc: anshuman.gupta, umesh.nerlige.ramappa, sk.anirban, soham.purkait
Hi Karthik
On 6/30/2025 9:03 PM, Poosa, Karthik wrote:
>
> On 30-06-2025 15:07, Riana Tauro wrote:
>> Validate gt instead of checking gt_id is lesser
>> than max gts per tile
>>
>> Signed-off-by: Riana Tauro<riana.tauro@intel.com>
>> ---
>> drivers/gpu/drm/xe/xe_pmu.c | 7 +++++--
>> 1 file changed, 5 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/xe/xe_pmu.c b/drivers/gpu/drm/xe/xe_pmu.c
>> index 69df0e3520a5..cab51d826345 100644
>> --- a/drivers/gpu/drm/xe/xe_pmu.c
>> +++ b/drivers/gpu/drm/xe/xe_pmu.c
>> @@ -157,10 +157,13 @@ static bool event_gt_forcewake(struct perf_event
>> *event)
>> return true;
>> }
>> -static bool event_supported(struct xe_pmu *pmu, unsigned int gt,
>> +static bool event_supported(struct xe_pmu *pmu, unsigned int gt_id,
>> unsigned int id)
>> {
>> - if (gt >= XE_MAX_GT_PER_TILE)
>> + struct xe_device *xe = container_of(pmu, typeof(*xe), pmu);
>> + struct xe_gt *gt = xe_device_get_gt(xe, gt_id);
>
> Looks like xe_device_get_gt() would return primary_gt handle, instead of
> NULL, if gt_id > XE_MAX_GT_PER_TILE. gt would be always valid then !
Yes it returns the gt struct for the id. If its NULL then the gt_id is
invalid and event is not supported.
Thanks
Riana>
>> +
>> + if (!gt)
>> return false;
>> return id < sizeof(pmu->supported_events) * BITS_PER_BYTE &&
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH] drm/xe/xe_pmu: Validate gt in event supported
2025-06-30 9:37 [PATCH] drm/xe/xe_pmu: Validate gt in event supported Riana Tauro
2025-06-30 15:33 ` Poosa, Karthik
@ 2025-06-30 22:28 ` Lucas De Marchi
2025-07-01 5:08 ` Riana Tauro
2025-07-01 20:31 ` Matt Roper
2025-06-30 23:49 ` ✓ CI.KUnit: success for " Patchwork
` (2 subsequent siblings)
4 siblings, 2 replies; 13+ messages in thread
From: Lucas De Marchi @ 2025-06-30 22:28 UTC (permalink / raw)
To: Riana Tauro
Cc: intel-xe, anshuman.gupta, umesh.nerlige.ramappa, sk.anirban,
soham.purkait
On Mon, Jun 30, 2025 at 03:07:41PM +0530, Riana Tauro wrote:
>Validate gt instead of checking gt_id is lesser
>than max gts per tile
I prefer the series from Matt Roper that is refactoring this part well.
Lucas De Marchi
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ CI.KUnit: success for drm/xe/xe_pmu: Validate gt in event supported
2025-06-30 9:37 [PATCH] drm/xe/xe_pmu: Validate gt in event supported Riana Tauro
2025-06-30 15:33 ` Poosa, Karthik
2025-06-30 22:28 ` [PATCH] " Lucas De Marchi
@ 2025-06-30 23:49 ` Patchwork
2025-07-01 0:42 ` ✓ Xe.CI.BAT: " Patchwork
2025-07-02 11:00 ` ✓ Xe.CI.Full: " Patchwork
4 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-06-30 23:49 UTC (permalink / raw)
To: Riana Tauro; +Cc: intel-xe
== Series Details ==
Series: drm/xe/xe_pmu: Validate gt in event supported
URL : https://patchwork.freedesktop.org/series/150943/
State : success
== Summary ==
+ trap cleanup EXIT
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/xe/.kunitconfig
[23:47:59] Configuring KUnit Kernel ...
Generating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:48:03] 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=25
[23:48:36] Starting KUnit Kernel (1/1)...
[23:48:36] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:48:36] ================== guc_buf (11 subtests) ===================
[23:48:36] [PASSED] test_smallest
[23:48:36] [PASSED] test_largest
[23:48:36] [PASSED] test_granular
[23:48:36] [PASSED] test_unique
[23:48:36] [PASSED] test_overlap
[23:48:36] [PASSED] test_reusable
[23:48:36] [PASSED] test_too_big
[23:48:36] [PASSED] test_flush
[23:48:36] [PASSED] test_lookup
[23:48:36] [PASSED] test_data
[23:48:36] [PASSED] test_class
[23:48:36] ===================== [PASSED] guc_buf =====================
[23:48:36] =================== guc_dbm (7 subtests) ===================
[23:48:36] [PASSED] test_empty
[23:48:36] [PASSED] test_default
[23:48:36] ======================== test_size ========================
[23:48:36] [PASSED] 4
[23:48:36] [PASSED] 8
[23:48:36] [PASSED] 32
[23:48:36] [PASSED] 256
[23:48:36] ==================== [PASSED] test_size ====================
[23:48:36] ======================= test_reuse ========================
[23:48:36] [PASSED] 4
[23:48:36] [PASSED] 8
[23:48:36] [PASSED] 32
[23:48:36] [PASSED] 256
[23:48:36] =================== [PASSED] test_reuse ====================
[23:48:36] =================== test_range_overlap ====================
[23:48:36] [PASSED] 4
[23:48:36] [PASSED] 8
[23:48:36] [PASSED] 32
[23:48:36] [PASSED] 256
[23:48:36] =============== [PASSED] test_range_overlap ================
[23:48:36] =================== test_range_compact ====================
[23:48:36] [PASSED] 4
[23:48:36] [PASSED] 8
[23:48:36] [PASSED] 32
[23:48:36] [PASSED] 256
[23:48:36] =============== [PASSED] test_range_compact ================
[23:48:36] ==================== test_range_spare =====================
[23:48:36] [PASSED] 4
[23:48:36] [PASSED] 8
[23:48:36] [PASSED] 32
[23:48:36] [PASSED] 256
[23:48:36] ================ [PASSED] test_range_spare =================
[23:48:36] ===================== [PASSED] guc_dbm =====================
[23:48:36] =================== guc_idm (6 subtests) ===================
[23:48:36] [PASSED] bad_init
[23:48:36] [PASSED] no_init
[23:48:36] [PASSED] init_fini
[23:48:36] [PASSED] check_used
[23:48:36] [PASSED] check_quota
[23:48:36] [PASSED] check_all
[23:48:36] ===================== [PASSED] guc_idm =====================
[23:48:36] ================== no_relay (3 subtests) ===================
[23:48:36] [PASSED] xe_drops_guc2pf_if_not_ready
[23:48:36] [PASSED] xe_drops_guc2vf_if_not_ready
[23:48:36] [PASSED] xe_rejects_send_if_not_ready
[23:48:36] ==================== [PASSED] no_relay =====================
[23:48:36] ================== pf_relay (14 subtests) ==================
[23:48:36] [PASSED] pf_rejects_guc2pf_too_short
[23:48:36] [PASSED] pf_rejects_guc2pf_too_long
[23:48:36] [PASSED] pf_rejects_guc2pf_no_payload
[23:48:36] [PASSED] pf_fails_no_payload
[23:48:36] [PASSED] pf_fails_bad_origin
[23:48:36] [PASSED] pf_fails_bad_type
[23:48:36] [PASSED] pf_txn_reports_error
[23:48:36] [PASSED] pf_txn_sends_pf2guc
[23:48:36] [PASSED] pf_sends_pf2guc
[23:48:36] [SKIPPED] pf_loopback_nop
[23:48:36] [SKIPPED] pf_loopback_echo
[23:48:36] [SKIPPED] pf_loopback_fail
[23:48:36] [SKIPPED] pf_loopback_busy
[23:48:36] [SKIPPED] pf_loopback_retry
[23:48:36] ==================== [PASSED] pf_relay =====================
[23:48:36] ================== vf_relay (3 subtests) ===================
[23:48:36] [PASSED] vf_rejects_guc2vf_too_short
[23:48:36] [PASSED] vf_rejects_guc2vf_too_long
[23:48:36] [PASSED] vf_rejects_guc2vf_no_payload
[23:48:36] ==================== [PASSED] vf_relay =====================
[23:48:36] ================= pf_service (11 subtests) =================
[23:48:36] [PASSED] pf_negotiate_any
[23:48:36] [PASSED] pf_negotiate_base_match
[23:48:36] [PASSED] pf_negotiate_base_newer
[23:48:36] [PASSED] pf_negotiate_base_next
[23:48:36] [SKIPPED] pf_negotiate_base_older
[23:48:36] [PASSED] pf_negotiate_base_prev
[23:48:36] [PASSED] pf_negotiate_latest_match
[23:48:36] [PASSED] pf_negotiate_latest_newer
[23:48:36] [PASSED] pf_negotiate_latest_next
[23:48:36] [SKIPPED] pf_negotiate_latest_older
[23:48:36] [SKIPPED] pf_negotiate_latest_prev
[23:48:36] =================== [PASSED] pf_service ====================
[23:48:36] ===================== lmtt (1 subtest) =====================
[23:48:36] ======================== test_ops =========================
[23:48:36] [PASSED] 2-level
[23:48:36] [PASSED] multi-level
[23:48:36] ==================== [PASSED] test_ops =====================
[23:48:36] ====================== [PASSED] lmtt =======================
[23:48:36] =================== xe_mocs (2 subtests) ===================
[23:48:36] ================ xe_live_mocs_kernel_kunit ================
[23:48:36] =========== [SKIPPED] xe_live_mocs_kernel_kunit ============
[23:48:36] ================ xe_live_mocs_reset_kunit =================
[23:48:36] ============ [SKIPPED] xe_live_mocs_reset_kunit ============
[23:48:36] ==================== [SKIPPED] xe_mocs =====================
[23:48:36] ================= xe_migrate (2 subtests) ==================
[23:48:36] ================= xe_migrate_sanity_kunit =================
[23:48:36] ============ [SKIPPED] xe_migrate_sanity_kunit =============
[23:48:36] ================== xe_validate_ccs_kunit ==================
[23:48:36] ============= [SKIPPED] xe_validate_ccs_kunit ==============
[23:48:36] =================== [SKIPPED] xe_migrate ===================
[23:48:36] ================== xe_dma_buf (1 subtest) ==================
[23:48:36] ==================== xe_dma_buf_kunit =====================
[23:48:36] ================ [SKIPPED] xe_dma_buf_kunit ================
[23:48:36] =================== [SKIPPED] xe_dma_buf ===================
[23:48:36] ================= xe_bo_shrink (1 subtest) =================
[23:48:36] =================== xe_bo_shrink_kunit ====================
[23:48:36] =============== [SKIPPED] xe_bo_shrink_kunit ===============
[23:48:36] ================== [SKIPPED] xe_bo_shrink ==================
[23:48:36] ==================== xe_bo (2 subtests) ====================
[23:48:36] ================== xe_ccs_migrate_kunit ===================
[23:48:36] ============== [SKIPPED] xe_ccs_migrate_kunit ==============
[23:48:36] ==================== xe_bo_evict_kunit ====================
[23:48:36] =============== [SKIPPED] xe_bo_evict_kunit ================
[23:48:36] ===================== [SKIPPED] xe_bo ======================
[23:48:36] ==================== args (11 subtests) ====================
[23:48:36] [PASSED] count_args_test
[23:48:36] [PASSED] call_args_example
[23:48:36] [PASSED] call_args_test
[23:48:36] [PASSED] drop_first_arg_example
[23:48:36] [PASSED] drop_first_arg_test
[23:48:36] [PASSED] first_arg_example
[23:48:36] [PASSED] first_arg_test
[23:48:36] [PASSED] last_arg_example
[23:48:36] [PASSED] last_arg_test
[23:48:36] [PASSED] pick_arg_example
[23:48:36] [PASSED] sep_comma_example
[23:48:36] ====================== [PASSED] args =======================
[23:48:36] =================== xe_pci (2 subtests) ====================
[23:48:36] ==================== check_graphics_ip ====================
[23:48:36] [PASSED] 12.70 Xe_LPG
[23:48:36] [PASSED] 12.71 Xe_LPG
[23:48:36] [PASSED] 12.74 Xe_LPG+
[23:48:36] [PASSED] 20.01 Xe2_HPG
[23:48:36] [PASSED] 20.02 Xe2_HPG
[23:48:36] [PASSED] 20.04 Xe2_LPG
[23:48:36] [PASSED] 30.00 Xe3_LPG
[23:48:36] [PASSED] 30.01 Xe3_LPG
[23:48:36] [PASSED] 30.03 Xe3_LPG
[23:48:36] ================ [PASSED] check_graphics_ip ================
[23:48:36] ===================== check_media_ip ======================
[23:48:36] [PASSED] 13.00 Xe_LPM+
[23:48:36] [PASSED] 13.01 Xe2_HPM
[23:48:36] [PASSED] 20.00 Xe2_LPM
[23:48:36] [PASSED] 30.00 Xe3_LPM
[23:48:36] [PASSED] 30.02 Xe3_LPM
stty: 'standard input': Inappropriate ioctl for device
[23:48:36] ================= [PASSED] check_media_ip ==================
[23:48:36] ===================== [PASSED] xe_pci ======================
[23:48:36] =================== xe_rtp (2 subtests) ====================
[23:48:36] =============== xe_rtp_process_to_sr_tests ================
[23:48:36] [PASSED] coalesce-same-reg
[23:48:36] [PASSED] no-match-no-add
[23:48:36] [PASSED] match-or
[23:48:36] [PASSED] match-or-xfail
[23:48:36] [PASSED] no-match-no-add-multiple-rules
[23:48:36] [PASSED] two-regs-two-entries
[23:48:36] [PASSED] clr-one-set-other
[23:48:36] [PASSED] set-field
[23:48:36] [PASSED] conflict-duplicate
[23:48:36] [PASSED] conflict-not-disjoint
[23:48:36] [PASSED] conflict-reg-type
[23:48:36] =========== [PASSED] xe_rtp_process_to_sr_tests ============
[23:48:36] ================== xe_rtp_process_tests ===================
[23:48:36] [PASSED] active1
[23:48:36] [PASSED] active2
[23:48:36] [PASSED] active-inactive
[23:48:36] [PASSED] inactive-active
[23:48:36] [PASSED] inactive-1st_or_active-inactive
[23:48:36] [PASSED] inactive-2nd_or_active-inactive
[23:48:36] [PASSED] inactive-last_or_active-inactive
[23:48:36] [PASSED] inactive-no_or_active-inactive
[23:48:36] ============== [PASSED] xe_rtp_process_tests ===============
[23:48:36] ===================== [PASSED] xe_rtp ======================
[23:48:36] ==================== xe_wa (1 subtest) =====================
[23:48:36] ======================== xe_wa_gt =========================
[23:48:36] [PASSED] TIGERLAKE (B0)
[23:48:36] [PASSED] DG1 (A0)
[23:48:36] [PASSED] DG1 (B0)
[23:48:36] [PASSED] ALDERLAKE_S (A0)
[23:48:36] [PASSED] ALDERLAKE_S (B0)
[23:48:36] [PASSED] ALDERLAKE_S (C0)
[23:48:36] [PASSED] ALDERLAKE_S (D0)
[23:48:36] [PASSED] ALDERLAKE_P (A0)
[23:48:36] [PASSED] ALDERLAKE_P (B0)
[23:48:36] [PASSED] ALDERLAKE_P (C0)
[23:48:36] [PASSED] ALDERLAKE_S_RPLS (D0)
[23:48:36] [PASSED] ALDERLAKE_P_RPLU (E0)
[23:48:36] [PASSED] DG2_G10 (C0)
[23:48:36] [PASSED] DG2_G11 (B1)
[23:48:36] [PASSED] DG2_G12 (A1)
[23:48:36] [PASSED] METEORLAKE (g:A0, m:A0)
[23:48:36] [PASSED] METEORLAKE (g:A0, m:A0)
[23:48:36] [PASSED] METEORLAKE (g:A0, m:A0)
[23:48:36] [PASSED] LUNARLAKE (g:A0, m:A0)
[23:48:36] [PASSED] LUNARLAKE (g:B0, m:A0)
[23:48:36] [PASSED] BATTLEMAGE (g:A0, m:A1)
[23:48:36] ==================== [PASSED] xe_wa_gt =====================
[23:48:36] ====================== [PASSED] xe_wa ======================
[23:48:36] ============================================================
[23:48:36] Testing complete. Ran 145 tests: passed: 129, skipped: 16
[23:48:36] Elapsed time: 37.361s total, 4.222s configuring, 32.822s building, 0.305s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/tests/.kunitconfig
[23:48:36] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:48:38] 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=25
[23:49:04] Starting KUnit Kernel (1/1)...
[23:49:04] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:49:04] == drm_test_atomic_get_connector_for_encoder (1 subtest) ===
[23:49:04] [PASSED] drm_test_drm_atomic_get_connector_for_encoder
[23:49:04] ==== [PASSED] drm_test_atomic_get_connector_for_encoder ====
[23:49:04] =========== drm_validate_clone_mode (2 subtests) ===========
[23:49:04] ============== drm_test_check_in_clone_mode ===============
[23:49:04] [PASSED] in_clone_mode
[23:49:04] [PASSED] not_in_clone_mode
[23:49:04] ========== [PASSED] drm_test_check_in_clone_mode ===========
[23:49:04] =============== drm_test_check_valid_clones ===============
[23:49:04] [PASSED] not_in_clone_mode
[23:49:04] [PASSED] valid_clone
[23:49:04] [PASSED] invalid_clone
[23:49:04] =========== [PASSED] drm_test_check_valid_clones ===========
[23:49:04] ============= [PASSED] drm_validate_clone_mode =============
[23:49:04] ============= drm_validate_modeset (1 subtest) =============
[23:49:04] [PASSED] drm_test_check_connector_changed_modeset
[23:49:04] ============== [PASSED] drm_validate_modeset ===============
[23:49:04] ====== drm_test_bridge_get_current_state (2 subtests) ======
[23:49:04] [PASSED] drm_test_drm_bridge_get_current_state_atomic
[23:49:04] [PASSED] drm_test_drm_bridge_get_current_state_legacy
[23:49:04] ======== [PASSED] drm_test_bridge_get_current_state ========
[23:49:04] ====== drm_test_bridge_helper_reset_crtc (3 subtests) ======
[23:49:04] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic
[23:49:04] [PASSED] drm_test_drm_bridge_helper_reset_crtc_atomic_disabled
[23:49:04] [PASSED] drm_test_drm_bridge_helper_reset_crtc_legacy
[23:49:04] ======== [PASSED] drm_test_bridge_helper_reset_crtc ========
[23:49:04] ============== drm_bridge_alloc (2 subtests) ===============
[23:49:04] [PASSED] drm_test_drm_bridge_alloc_basic
[23:49:04] [PASSED] drm_test_drm_bridge_alloc_get_put
[23:49:04] ================ [PASSED] drm_bridge_alloc =================
[23:49:04] ================== drm_buddy (7 subtests) ==================
[23:49:04] [PASSED] drm_test_buddy_alloc_limit
[23:49:04] [PASSED] drm_test_buddy_alloc_optimistic
[23:49:04] [PASSED] drm_test_buddy_alloc_pessimistic
[23:49:04] [PASSED] drm_test_buddy_alloc_pathological
[23:49:04] [PASSED] drm_test_buddy_alloc_contiguous
[23:49:04] [PASSED] drm_test_buddy_alloc_clear
[23:49:04] [PASSED] drm_test_buddy_alloc_range_bias
[23:49:04] ==================== [PASSED] drm_buddy ====================
[23:49:04] ============= drm_cmdline_parser (40 subtests) =============
[23:49:04] [PASSED] drm_test_cmdline_force_d_only
[23:49:04] [PASSED] drm_test_cmdline_force_D_only_dvi
[23:49:04] [PASSED] drm_test_cmdline_force_D_only_hdmi
[23:49:04] [PASSED] drm_test_cmdline_force_D_only_not_digital
[23:49:04] [PASSED] drm_test_cmdline_force_e_only
[23:49:04] [PASSED] drm_test_cmdline_res
[23:49:04] [PASSED] drm_test_cmdline_res_vesa
[23:49:04] [PASSED] drm_test_cmdline_res_vesa_rblank
[23:49:04] [PASSED] drm_test_cmdline_res_rblank
[23:49:04] [PASSED] drm_test_cmdline_res_bpp
[23:49:04] [PASSED] drm_test_cmdline_res_refresh
[23:49:04] [PASSED] drm_test_cmdline_res_bpp_refresh
[23:49:04] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced
[23:49:04] [PASSED] drm_test_cmdline_res_bpp_refresh_margins
[23:49:04] [PASSED] drm_test_cmdline_res_bpp_refresh_force_off
[23:49:04] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on
[23:49:04] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_analog
[23:49:04] [PASSED] drm_test_cmdline_res_bpp_refresh_force_on_digital
[23:49:04] [PASSED] drm_test_cmdline_res_bpp_refresh_interlaced_margins_force_on
[23:49:04] [PASSED] drm_test_cmdline_res_margins_force_on
[23:49:04] [PASSED] drm_test_cmdline_res_vesa_margins
[23:49:04] [PASSED] drm_test_cmdline_name
[23:49:04] [PASSED] drm_test_cmdline_name_bpp
[23:49:04] [PASSED] drm_test_cmdline_name_option
[23:49:04] [PASSED] drm_test_cmdline_name_bpp_option
[23:49:04] [PASSED] drm_test_cmdline_rotate_0
[23:49:04] [PASSED] drm_test_cmdline_rotate_90
[23:49:04] [PASSED] drm_test_cmdline_rotate_180
[23:49:04] [PASSED] drm_test_cmdline_rotate_270
[23:49:04] [PASSED] drm_test_cmdline_hmirror
[23:49:04] [PASSED] drm_test_cmdline_vmirror
[23:49:04] [PASSED] drm_test_cmdline_margin_options
[23:49:04] [PASSED] drm_test_cmdline_multiple_options
[23:49:04] [PASSED] drm_test_cmdline_bpp_extra_and_option
[23:49:04] [PASSED] drm_test_cmdline_extra_and_option
[23:49:04] [PASSED] drm_test_cmdline_freestanding_options
[23:49:04] [PASSED] drm_test_cmdline_freestanding_force_e_and_options
[23:49:04] [PASSED] drm_test_cmdline_panel_orientation
[23:49:04] ================ drm_test_cmdline_invalid =================
[23:49:04] [PASSED] margin_only
[23:49:04] [PASSED] interlace_only
[23:49:04] [PASSED] res_missing_x
[23:49:04] [PASSED] res_missing_y
[23:49:04] [PASSED] res_bad_y
[23:49:04] [PASSED] res_missing_y_bpp
[23:49:04] [PASSED] res_bad_bpp
[23:49:04] [PASSED] res_bad_refresh
[23:49:04] [PASSED] res_bpp_refresh_force_on_off
[23:49:04] [PASSED] res_invalid_mode
[23:49:04] [PASSED] res_bpp_wrong_place_mode
[23:49:04] [PASSED] name_bpp_refresh
[23:49:04] [PASSED] name_refresh
[23:49:04] [PASSED] name_refresh_wrong_mode
[23:49:04] [PASSED] name_refresh_invalid_mode
[23:49:04] [PASSED] rotate_multiple
[23:49:04] [PASSED] rotate_invalid_val
[23:49:04] [PASSED] rotate_truncated
[23:49:04] [PASSED] invalid_option
[23:49:04] [PASSED] invalid_tv_option
[23:49:04] [PASSED] truncated_tv_option
[23:49:04] ============ [PASSED] drm_test_cmdline_invalid =============
[23:49:04] =============== drm_test_cmdline_tv_options ===============
[23:49:04] [PASSED] NTSC
[23:49:04] [PASSED] NTSC_443
[23:49:04] [PASSED] NTSC_J
[23:49:04] [PASSED] PAL
[23:49:04] [PASSED] PAL_M
[23:49:04] [PASSED] PAL_N
[23:49:04] [PASSED] SECAM
[23:49:04] [PASSED] MONO_525
[23:49:04] [PASSED] MONO_625
[23:49:04] =========== [PASSED] drm_test_cmdline_tv_options ===========
[23:49:04] =============== [PASSED] drm_cmdline_parser ================
[23:49:04] ========== drmm_connector_hdmi_init (20 subtests) ==========
[23:49:04] [PASSED] drm_test_connector_hdmi_init_valid
[23:49:04] [PASSED] drm_test_connector_hdmi_init_bpc_8
[23:49:04] [PASSED] drm_test_connector_hdmi_init_bpc_10
[23:49:04] [PASSED] drm_test_connector_hdmi_init_bpc_12
[23:49:04] [PASSED] drm_test_connector_hdmi_init_bpc_invalid
[23:49:04] [PASSED] drm_test_connector_hdmi_init_bpc_null
[23:49:04] [PASSED] drm_test_connector_hdmi_init_formats_empty
[23:49:04] [PASSED] drm_test_connector_hdmi_init_formats_no_rgb
[23:49:04] === drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[23:49:04] [PASSED] supported_formats=0x9 yuv420_allowed=1
[23:49:04] [PASSED] supported_formats=0x9 yuv420_allowed=0
[23:49:04] [PASSED] supported_formats=0x3 yuv420_allowed=1
[23:49:04] [PASSED] supported_formats=0x3 yuv420_allowed=0
[23:49:04] === [PASSED] drm_test_connector_hdmi_init_formats_yuv420_allowed ===
[23:49:04] [PASSED] drm_test_connector_hdmi_init_null_ddc
[23:49:04] [PASSED] drm_test_connector_hdmi_init_null_product
[23:49:04] [PASSED] drm_test_connector_hdmi_init_null_vendor
[23:49:04] [PASSED] drm_test_connector_hdmi_init_product_length_exact
[23:49:04] [PASSED] drm_test_connector_hdmi_init_product_length_too_long
[23:49:04] [PASSED] drm_test_connector_hdmi_init_product_valid
[23:49:04] [PASSED] drm_test_connector_hdmi_init_vendor_length_exact
[23:49:04] [PASSED] drm_test_connector_hdmi_init_vendor_length_too_long
[23:49:04] [PASSED] drm_test_connector_hdmi_init_vendor_valid
[23:49:04] ========= drm_test_connector_hdmi_init_type_valid =========
[23:49:04] [PASSED] HDMI-A
[23:49:04] [PASSED] HDMI-B
[23:49:04] ===== [PASSED] drm_test_connector_hdmi_init_type_valid =====
[23:49:04] ======== drm_test_connector_hdmi_init_type_invalid ========
[23:49:04] [PASSED] Unknown
[23:49:04] [PASSED] VGA
[23:49:04] [PASSED] DVI-I
[23:49:04] [PASSED] DVI-D
[23:49:04] [PASSED] DVI-A
[23:49:04] [PASSED] Composite
[23:49:04] [PASSED] SVIDEO
[23:49:04] [PASSED] LVDS
[23:49:04] [PASSED] Component
[23:49:04] [PASSED] DIN
[23:49:04] [PASSED] DP
[23:49:04] [PASSED] TV
[23:49:04] [PASSED] eDP
[23:49:04] [PASSED] Virtual
[23:49:04] [PASSED] DSI
[23:49:04] [PASSED] DPI
[23:49:04] [PASSED] Writeback
[23:49:04] [PASSED] SPI
[23:49:04] [PASSED] USB
[23:49:04] ==== [PASSED] drm_test_connector_hdmi_init_type_invalid ====
[23:49:04] ============ [PASSED] drmm_connector_hdmi_init =============
[23:49:04] ============= drmm_connector_init (3 subtests) =============
[23:49:04] [PASSED] drm_test_drmm_connector_init
[23:49:04] [PASSED] drm_test_drmm_connector_init_null_ddc
[23:49:04] ========= drm_test_drmm_connector_init_type_valid =========
[23:49:04] [PASSED] Unknown
[23:49:04] [PASSED] VGA
[23:49:04] [PASSED] DVI-I
[23:49:04] [PASSED] DVI-D
[23:49:04] [PASSED] DVI-A
[23:49:04] [PASSED] Composite
[23:49:04] [PASSED] SVIDEO
[23:49:04] [PASSED] LVDS
[23:49:04] [PASSED] Component
[23:49:04] [PASSED] DIN
[23:49:04] [PASSED] DP
[23:49:04] [PASSED] HDMI-A
[23:49:04] [PASSED] HDMI-B
[23:49:04] [PASSED] TV
[23:49:04] [PASSED] eDP
[23:49:04] [PASSED] Virtual
[23:49:04] [PASSED] DSI
[23:49:04] [PASSED] DPI
[23:49:04] [PASSED] Writeback
[23:49:04] [PASSED] SPI
[23:49:04] [PASSED] USB
[23:49:04] ===== [PASSED] drm_test_drmm_connector_init_type_valid =====
[23:49:04] =============== [PASSED] drmm_connector_init ===============
[23:49:04] ========= drm_connector_dynamic_init (6 subtests) ==========
[23:49:04] [PASSED] drm_test_drm_connector_dynamic_init
[23:49:04] [PASSED] drm_test_drm_connector_dynamic_init_null_ddc
[23:49:04] [PASSED] drm_test_drm_connector_dynamic_init_not_added
[23:49:04] [PASSED] drm_test_drm_connector_dynamic_init_properties
[23:49:04] ===== drm_test_drm_connector_dynamic_init_type_valid ======
[23:49:04] [PASSED] Unknown
[23:49:04] [PASSED] VGA
[23:49:04] [PASSED] DVI-I
[23:49:04] [PASSED] DVI-D
[23:49:04] [PASSED] DVI-A
[23:49:04] [PASSED] Composite
[23:49:04] [PASSED] SVIDEO
[23:49:04] [PASSED] LVDS
[23:49:04] [PASSED] Component
[23:49:04] [PASSED] DIN
[23:49:04] [PASSED] DP
[23:49:04] [PASSED] HDMI-A
[23:49:04] [PASSED] HDMI-B
[23:49:04] [PASSED] TV
[23:49:04] [PASSED] eDP
[23:49:04] [PASSED] Virtual
[23:49:04] [PASSED] DSI
[23:49:04] [PASSED] DPI
[23:49:04] [PASSED] Writeback
[23:49:04] [PASSED] SPI
[23:49:04] [PASSED] USB
[23:49:04] = [PASSED] drm_test_drm_connector_dynamic_init_type_valid ==
[23:49:04] ======== drm_test_drm_connector_dynamic_init_name =========
[23:49:04] [PASSED] Unknown
[23:49:04] [PASSED] VGA
[23:49:04] [PASSED] DVI-I
[23:49:04] [PASSED] DVI-D
[23:49:04] [PASSED] DVI-A
[23:49:04] [PASSED] Composite
[23:49:04] [PASSED] SVIDEO
[23:49:04] [PASSED] LVDS
[23:49:04] [PASSED] Component
[23:49:04] [PASSED] DIN
[23:49:04] [PASSED] DP
[23:49:04] [PASSED] HDMI-A
[23:49:04] [PASSED] HDMI-B
[23:49:04] [PASSED] TV
[23:49:04] [PASSED] eDP
[23:49:04] [PASSED] Virtual
[23:49:04] [PASSED] DSI
[23:49:04] [PASSED] DPI
[23:49:04] [PASSED] Writeback
[23:49:04] [PASSED] SPI
[23:49:04] [PASSED] USB
[23:49:04] ==== [PASSED] drm_test_drm_connector_dynamic_init_name =====
[23:49:04] =========== [PASSED] drm_connector_dynamic_init ============
[23:49:04] ==== drm_connector_dynamic_register_early (4 subtests) =====
[23:49:04] [PASSED] drm_test_drm_connector_dynamic_register_early_on_list
[23:49:04] [PASSED] drm_test_drm_connector_dynamic_register_early_defer
[23:49:04] [PASSED] drm_test_drm_connector_dynamic_register_early_no_init
[23:49:04] [PASSED] drm_test_drm_connector_dynamic_register_early_no_mode_object
[23:49:04] ====== [PASSED] drm_connector_dynamic_register_early =======
[23:49:04] ======= drm_connector_dynamic_register (7 subtests) ========
[23:49:04] [PASSED] drm_test_drm_connector_dynamic_register_on_list
[23:49:04] [PASSED] drm_test_drm_connector_dynamic_register_no_defer
[23:49:04] [PASSED] drm_test_drm_connector_dynamic_register_no_init
[23:49:04] [PASSED] drm_test_drm_connector_dynamic_register_mode_object
[23:49:04] [PASSED] drm_test_drm_connector_dynamic_register_sysfs
[23:49:04] [PASSED] drm_test_drm_connector_dynamic_register_sysfs_name
[23:49:04] [PASSED] drm_test_drm_connector_dynamic_register_debugfs
[23:49:04] ========= [PASSED] drm_connector_dynamic_register ==========
[23:49:04] = drm_connector_attach_broadcast_rgb_property (2 subtests) =
[23:49:04] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property
[23:49:04] [PASSED] drm_test_drm_connector_attach_broadcast_rgb_property_hdmi_connector
[23:49:04] === [PASSED] drm_connector_attach_broadcast_rgb_property ===
[23:49:04] ========== drm_get_tv_mode_from_name (2 subtests) ==========
[23:49:04] ========== drm_test_get_tv_mode_from_name_valid ===========
[23:49:04] [PASSED] NTSC
[23:49:04] [PASSED] NTSC-443
[23:49:04] [PASSED] NTSC-J
[23:49:04] [PASSED] PAL
[23:49:04] [PASSED] PAL-M
[23:49:04] [PASSED] PAL-N
[23:49:04] [PASSED] SECAM
[23:49:04] [PASSED] Mono
[23:49:04] ====== [PASSED] drm_test_get_tv_mode_from_name_valid =======
[23:49:04] [PASSED] drm_test_get_tv_mode_from_name_truncated
[23:49:04] ============ [PASSED] drm_get_tv_mode_from_name ============
[23:49:04] = drm_test_connector_hdmi_compute_mode_clock (12 subtests) =
[23:49:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb
[23:49:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc
[23:49:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_10bpc_vic_1
[23:49:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc
[23:49:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_12bpc_vic_1
[23:49:04] [PASSED] drm_test_drm_hdmi_compute_mode_clock_rgb_double
[23:49:04] = drm_test_connector_hdmi_compute_mode_clock_yuv420_valid =
[23:49:04] [PASSED] VIC 96
[23:49:04] [PASSED] VIC 97
[23:49:04] [PASSED] VIC 101
[23:49:04] [PASSED] VIC 102
[23:49:04] [PASSED] VIC 106
[23:49:04] [PASSED] VIC 107
[23:49:04] === [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_valid ===
[23:49:04] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_10_bpc
[23:49:04] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv420_12_bpc
[23:49:04] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_8_bpc
[23:49:04] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_10_bpc
[23:49:04] [PASSED] drm_test_connector_hdmi_compute_mode_clock_yuv422_12_bpc
[23:49:04] === [PASSED] drm_test_connector_hdmi_compute_mode_clock ====
[23:49:04] == drm_hdmi_connector_get_broadcast_rgb_name (2 subtests) ==
[23:49:04] === drm_test_drm_hdmi_connector_get_broadcast_rgb_name ====
[23:49:04] [PASSED] Automatic
[23:49:04] [PASSED] Full
[23:49:04] [PASSED] Limited 16:235
[23:49:04] === [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name ===
[23:49:04] [PASSED] drm_test_drm_hdmi_connector_get_broadcast_rgb_name_invalid
[23:49:04] ==== [PASSED] drm_hdmi_connector_get_broadcast_rgb_name ====
[23:49:04] == drm_hdmi_connector_get_output_format_name (2 subtests) ==
[23:49:04] === drm_test_drm_hdmi_connector_get_output_format_name ====
[23:49:04] [PASSED] RGB
[23:49:04] [PASSED] YUV 4:2:0
[23:49:04] [PASSED] YUV 4:2:2
[23:49:04] [PASSED] YUV 4:4:4
[23:49:04] === [PASSED] drm_test_drm_hdmi_connector_get_output_format_name ===
[23:49:04] [PASSED] drm_test_drm_hdmi_connector_get_output_format_name_invalid
[23:49:04] ==== [PASSED] drm_hdmi_connector_get_output_format_name ====
[23:49:04] ============= drm_damage_helper (21 subtests) ==============
[23:49:04] [PASSED] drm_test_damage_iter_no_damage
[23:49:04] [PASSED] drm_test_damage_iter_no_damage_fractional_src
[23:49:04] [PASSED] drm_test_damage_iter_no_damage_src_moved
[23:49:04] [PASSED] drm_test_damage_iter_no_damage_fractional_src_moved
[23:49:04] [PASSED] drm_test_damage_iter_no_damage_not_visible
[23:49:04] [PASSED] drm_test_damage_iter_no_damage_no_crtc
[23:49:04] [PASSED] drm_test_damage_iter_no_damage_no_fb
[23:49:04] [PASSED] drm_test_damage_iter_simple_damage
[23:49:04] [PASSED] drm_test_damage_iter_single_damage
[23:49:04] [PASSED] drm_test_damage_iter_single_damage_intersect_src
[23:49:04] [PASSED] drm_test_damage_iter_single_damage_outside_src
[23:49:04] [PASSED] drm_test_damage_iter_single_damage_fractional_src
[23:49:04] [PASSED] drm_test_damage_iter_single_damage_intersect_fractional_src
[23:49:04] [PASSED] drm_test_damage_iter_single_damage_outside_fractional_src
[23:49:04] [PASSED] drm_test_damage_iter_single_damage_src_moved
[23:49:04] [PASSED] drm_test_damage_iter_single_damage_fractional_src_moved
[23:49:04] [PASSED] drm_test_damage_iter_damage
[23:49:04] [PASSED] drm_test_damage_iter_damage_one_intersect
[23:49:04] [PASSED] drm_test_damage_iter_damage_one_outside
[23:49:04] [PASSED] drm_test_damage_iter_damage_src_moved
[23:49:04] [PASSED] drm_test_damage_iter_damage_not_visible
[23:49:04] ================ [PASSED] drm_damage_helper ================
[23:49:04] ============== drm_dp_mst_helper (3 subtests) ==============
[23:49:04] ============== drm_test_dp_mst_calc_pbn_mode ==============
[23:49:04] [PASSED] Clock 154000 BPP 30 DSC disabled
[23:49:04] [PASSED] Clock 234000 BPP 30 DSC disabled
[23:49:04] [PASSED] Clock 297000 BPP 24 DSC disabled
[23:49:04] [PASSED] Clock 332880 BPP 24 DSC enabled
[23:49:04] [PASSED] Clock 324540 BPP 24 DSC enabled
[23:49:04] ========== [PASSED] drm_test_dp_mst_calc_pbn_mode ==========
[23:49:04] ============== drm_test_dp_mst_calc_pbn_div ===============
[23:49:04] [PASSED] Link rate 2000000 lane count 4
[23:49:04] [PASSED] Link rate 2000000 lane count 2
[23:49:04] [PASSED] Link rate 2000000 lane count 1
[23:49:04] [PASSED] Link rate 1350000 lane count 4
[23:49:04] [PASSED] Link rate 1350000 lane count 2
[23:49:04] [PASSED] Link rate 1350000 lane count 1
[23:49:04] [PASSED] Link rate 1000000 lane count 4
[23:49:04] [PASSED] Link rate 1000000 lane count 2
[23:49:04] [PASSED] Link rate 1000000 lane count 1
[23:49:04] [PASSED] Link rate 810000 lane count 4
[23:49:04] [PASSED] Link rate 810000 lane count 2
[23:49:04] [PASSED] Link rate 810000 lane count 1
[23:49:04] [PASSED] Link rate 540000 lane count 4
[23:49:04] [PASSED] Link rate 540000 lane count 2
[23:49:04] [PASSED] Link rate 540000 lane count 1
[23:49:04] [PASSED] Link rate 270000 lane count 4
[23:49:04] [PASSED] Link rate 270000 lane count 2
[23:49:04] [PASSED] Link rate 270000 lane count 1
[23:49:04] [PASSED] Link rate 162000 lane count 4
[23:49:04] [PASSED] Link rate 162000 lane count 2
[23:49:04] [PASSED] Link rate 162000 lane count 1
[23:49:04] ========== [PASSED] drm_test_dp_mst_calc_pbn_div ===========
[23:49:04] ========= drm_test_dp_mst_sideband_msg_req_decode =========
[23:49:04] [PASSED] DP_ENUM_PATH_RESOURCES with port number
[23:49:04] [PASSED] DP_POWER_UP_PHY with port number
[23:49:04] [PASSED] DP_POWER_DOWN_PHY with port number
[23:49:04] [PASSED] DP_ALLOCATE_PAYLOAD with SDP stream sinks
[23:49:04] [PASSED] DP_ALLOCATE_PAYLOAD with port number
[23:49:04] [PASSED] DP_ALLOCATE_PAYLOAD with VCPI
[23:49:04] [PASSED] DP_ALLOCATE_PAYLOAD with PBN
[23:49:04] [PASSED] DP_QUERY_PAYLOAD with port number
[23:49:04] [PASSED] DP_QUERY_PAYLOAD with VCPI
[23:49:04] [PASSED] DP_REMOTE_DPCD_READ with port number
[23:49:04] [PASSED] DP_REMOTE_DPCD_READ with DPCD address
[23:49:04] [PASSED] DP_REMOTE_DPCD_READ with max number of bytes
[23:49:04] [PASSED] DP_REMOTE_DPCD_WRITE with port number
[23:49:04] [PASSED] DP_REMOTE_DPCD_WRITE with DPCD address
[23:49:04] [PASSED] DP_REMOTE_DPCD_WRITE with data array
[23:49:04] [PASSED] DP_REMOTE_I2C_READ with port number
[23:49:04] [PASSED] DP_REMOTE_I2C_READ with I2C device ID
[23:49:04] [PASSED] DP_REMOTE_I2C_READ with transactions array
[23:49:04] [PASSED] DP_REMOTE_I2C_WRITE with port number
[23:49:04] [PASSED] DP_REMOTE_I2C_WRITE with I2C device ID
[23:49:04] [PASSED] DP_REMOTE_I2C_WRITE with data array
[23:49:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream ID
[23:49:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with client ID
[23:49:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream event
[23:49:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with valid stream event
[23:49:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with stream behavior
[23:49:04] [PASSED] DP_QUERY_STREAM_ENC_STATUS with a valid stream behavior
[23:49:04] ===== [PASSED] drm_test_dp_mst_sideband_msg_req_decode =====
[23:49:04] ================ [PASSED] drm_dp_mst_helper ================
[23:49:04] ================== drm_exec (7 subtests) ===================
[23:49:04] [PASSED] sanitycheck
[23:49:04] [PASSED] test_lock
[23:49:04] [PASSED] test_lock_unlock
[23:49:04] [PASSED] test_duplicates
[23:49:04] [PASSED] test_prepare
[23:49:04] [PASSED] test_prepare_array
[23:49:04] [PASSED] test_multiple_loops
[23:49:04] ==================== [PASSED] drm_exec =====================
[23:49:04] =========== drm_format_helper_test (17 subtests) ===========
[23:49:04] ============== drm_test_fb_xrgb8888_to_gray8 ==============
[23:49:04] [PASSED] single_pixel_source_buffer
[23:49:04] [PASSED] single_pixel_clip_rectangle
[23:49:04] [PASSED] well_known_colors
[23:49:04] [PASSED] destination_pitch
[23:49:04] ========== [PASSED] drm_test_fb_xrgb8888_to_gray8 ==========
[23:49:04] ============= drm_test_fb_xrgb8888_to_rgb332 ==============
[23:49:04] [PASSED] single_pixel_source_buffer
[23:49:04] [PASSED] single_pixel_clip_rectangle
[23:49:04] [PASSED] well_known_colors
[23:49:04] [PASSED] destination_pitch
[23:49:04] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb332 ==========
[23:49:04] ============= drm_test_fb_xrgb8888_to_rgb565 ==============
[23:49:04] [PASSED] single_pixel_source_buffer
[23:49:04] [PASSED] single_pixel_clip_rectangle
[23:49:04] [PASSED] well_known_colors
[23:49:04] [PASSED] destination_pitch
[23:49:04] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb565 ==========
[23:49:04] ============ drm_test_fb_xrgb8888_to_xrgb1555 =============
[23:49:04] [PASSED] single_pixel_source_buffer
[23:49:04] [PASSED] single_pixel_clip_rectangle
[23:49:04] [PASSED] well_known_colors
[23:49:04] [PASSED] destination_pitch
[23:49:04] ======== [PASSED] drm_test_fb_xrgb8888_to_xrgb1555 =========
[23:49:04] ============ drm_test_fb_xrgb8888_to_argb1555 =============
[23:49:04] [PASSED] single_pixel_source_buffer
[23:49:04] [PASSED] single_pixel_clip_rectangle
[23:49:04] [PASSED] well_known_colors
[23:49:04] [PASSED] destination_pitch
[23:49:04] ======== [PASSED] drm_test_fb_xrgb8888_to_argb1555 =========
[23:49:04] ============ drm_test_fb_xrgb8888_to_rgba5551 =============
[23:49:04] [PASSED] single_pixel_source_buffer
[23:49:04] [PASSED] single_pixel_clip_rectangle
[23:49:04] [PASSED] well_known_colors
[23:49:04] [PASSED] destination_pitch
[23:49:04] ======== [PASSED] drm_test_fb_xrgb8888_to_rgba5551 =========
[23:49:04] ============= drm_test_fb_xrgb8888_to_rgb888 ==============
[23:49:04] [PASSED] single_pixel_source_buffer
[23:49:04] [PASSED] single_pixel_clip_rectangle
[23:49:04] [PASSED] well_known_colors
[23:49:04] [PASSED] destination_pitch
[23:49:04] ========= [PASSED] drm_test_fb_xrgb8888_to_rgb888 ==========
[23:49:04] ============= drm_test_fb_xrgb8888_to_bgr888 ==============
[23:49:04] [PASSED] single_pixel_source_buffer
[23:49:04] [PASSED] single_pixel_clip_rectangle
[23:49:04] [PASSED] well_known_colors
[23:49:04] [PASSED] destination_pitch
[23:49:04] ========= [PASSED] drm_test_fb_xrgb8888_to_bgr888 ==========
[23:49:04] ============ drm_test_fb_xrgb8888_to_argb8888 =============
[23:49:04] [PASSED] single_pixel_source_buffer
[23:49:04] [PASSED] single_pixel_clip_rectangle
[23:49:04] [PASSED] well_known_colors
[23:49:04] [PASSED] destination_pitch
[23:49:04] ======== [PASSED] drm_test_fb_xrgb8888_to_argb8888 =========
[23:49:04] =========== drm_test_fb_xrgb8888_to_xrgb2101010 ===========
[23:49:04] [PASSED] single_pixel_source_buffer
[23:49:04] [PASSED] single_pixel_clip_rectangle
[23:49:04] [PASSED] well_known_colors
[23:49:04] [PASSED] destination_pitch
[23:49:04] ======= [PASSED] drm_test_fb_xrgb8888_to_xrgb2101010 =======
[23:49:04] =========== drm_test_fb_xrgb8888_to_argb2101010 ===========
[23:49:04] [PASSED] single_pixel_source_buffer
[23:49:04] [PASSED] single_pixel_clip_rectangle
[23:49:04] [PASSED] well_known_colors
[23:49:04] [PASSED] destination_pitch
[23:49:04] ======= [PASSED] drm_test_fb_xrgb8888_to_argb2101010 =======
[23:49:04] ============== drm_test_fb_xrgb8888_to_mono ===============
[23:49:04] [PASSED] single_pixel_source_buffer
[23:49:04] [PASSED] single_pixel_clip_rectangle
[23:49:04] [PASSED] well_known_colors
[23:49:04] [PASSED] destination_pitch
[23:49:04] ========== [PASSED] drm_test_fb_xrgb8888_to_mono ===========
[23:49:04] ==================== drm_test_fb_swab =====================
[23:49:04] [PASSED] single_pixel_source_buffer
[23:49:04] [PASSED] single_pixel_clip_rectangle
[23:49:04] [PASSED] well_known_colors
[23:49:04] [PASSED] destination_pitch
[23:49:04] ================ [PASSED] drm_test_fb_swab =================
[23:49:04] ============ drm_test_fb_xrgb8888_to_xbgr8888 =============
[23:49:04] [PASSED] single_pixel_source_buffer
[23:49:04] [PASSED] single_pixel_clip_rectangle
[23:49:04] [PASSED] well_known_colors
[23:49:04] [PASSED] destination_pitch
[23:49:04] ======== [PASSED] drm_test_fb_xrgb8888_to_xbgr8888 =========
[23:49:04] ============ drm_test_fb_xrgb8888_to_abgr8888 =============
[23:49:04] [PASSED] single_pixel_source_buffer
[23:49:04] [PASSED] single_pixel_clip_rectangle
[23:49:04] [PASSED] well_known_colors
[23:49:04] [PASSED] destination_pitch
[23:49:04] ======== [PASSED] drm_test_fb_xrgb8888_to_abgr8888 =========
[23:49:04] ================= drm_test_fb_clip_offset =================
[23:49:04] [PASSED] pass through
[23:49:04] [PASSED] horizontal offset
[23:49:04] [PASSED] vertical offset
[23:49:04] [PASSED] horizontal and vertical offset
[23:49:04] [PASSED] horizontal offset (custom pitch)
[23:49:04] [PASSED] vertical offset (custom pitch)
[23:49:04] [PASSED] horizontal and vertical offset (custom pitch)
[23:49:04] ============= [PASSED] drm_test_fb_clip_offset =============
[23:49:04] =================== drm_test_fb_memcpy ====================
[23:49:04] [PASSED] single_pixel_source_buffer: XR24 little-endian (0x34325258)
[23:49:04] [PASSED] single_pixel_source_buffer: XRA8 little-endian (0x38415258)
[23:49:04] [PASSED] single_pixel_source_buffer: YU24 little-endian (0x34325559)
[23:49:04] [PASSED] single_pixel_clip_rectangle: XB24 little-endian (0x34324258)
[23:49:04] [PASSED] single_pixel_clip_rectangle: XRA8 little-endian (0x38415258)
[23:49:04] [PASSED] single_pixel_clip_rectangle: YU24 little-endian (0x34325559)
[23:49:04] [PASSED] well_known_colors: XB24 little-endian (0x34324258)
[23:49:04] [PASSED] well_known_colors: XRA8 little-endian (0x38415258)
[23:49:04] [PASSED] well_known_colors: YU24 little-endian (0x34325559)
[23:49:04] [PASSED] destination_pitch: XB24 little-endian (0x34324258)
[23:49:04] [PASSED] destination_pitch: XRA8 little-endian (0x38415258)
[23:49:04] [PASSED] destination_pitch: YU24 little-endian (0x34325559)
[23:49:04] =============== [PASSED] drm_test_fb_memcpy ================
[23:49:04] ============= [PASSED] drm_format_helper_test ==============
[23:49:04] ================= drm_format (18 subtests) =================
[23:49:04] [PASSED] drm_test_format_block_width_invalid
[23:49:04] [PASSED] drm_test_format_block_width_one_plane
[23:49:04] [PASSED] drm_test_format_block_width_two_plane
[23:49:04] [PASSED] drm_test_format_block_width_three_plane
[23:49:04] [PASSED] drm_test_format_block_width_tiled
[23:49:04] [PASSED] drm_test_format_block_height_invalid
[23:49:04] [PASSED] drm_test_format_block_height_one_plane
[23:49:04] [PASSED] drm_test_format_block_height_two_plane
[23:49:04] [PASSED] drm_test_format_block_height_three_plane
[23:49:04] [PASSED] drm_test_format_block_height_tiled
[23:49:04] [PASSED] drm_test_format_min_pitch_invalid
[23:49:04] [PASSED] drm_test_format_min_pitch_one_plane_8bpp
[23:49:04] [PASSED] drm_test_format_min_pitch_one_plane_16bpp
[23:49:04] [PASSED] drm_test_format_min_pitch_one_plane_24bpp
[23:49:04] [PASSED] drm_test_format_min_pitch_one_plane_32bpp
[23:49:04] [PASSED] drm_test_format_min_pitch_two_plane
[23:49:04] [PASSED] drm_test_format_min_pitch_three_plane_8bpp
[23:49:04] [PASSED] drm_test_format_min_pitch_tiled
[23:49:04] =================== [PASSED] drm_format ====================
[23:49:04] ============== drm_framebuffer (10 subtests) ===============
[23:49:04] ========== drm_test_framebuffer_check_src_coords ==========
[23:49:04] [PASSED] Success: source fits into fb
[23:49:04] [PASSED] Fail: overflowing fb with x-axis coordinate
[23:49:04] [PASSED] Fail: overflowing fb with y-axis coordinate
[23:49:04] [PASSED] Fail: overflowing fb with source width
[23:49:04] [PASSED] Fail: overflowing fb with source height
[23:49:04] ====== [PASSED] drm_test_framebuffer_check_src_coords ======
[23:49:04] [PASSED] drm_test_framebuffer_cleanup
[23:49:04] =============== drm_test_framebuffer_create ===============
[23:49:04] [PASSED] ABGR8888 normal sizes
[23:49:04] [PASSED] ABGR8888 max sizes
[23:49:04] [PASSED] ABGR8888 pitch greater than min required
[23:49:04] [PASSED] ABGR8888 pitch less than min required
[23:49:04] [PASSED] ABGR8888 Invalid width
[23:49:04] [PASSED] ABGR8888 Invalid buffer handle
[23:49:04] [PASSED] No pixel format
[23:49:04] [PASSED] ABGR8888 Width 0
[23:49:04] [PASSED] ABGR8888 Height 0
[23:49:04] [PASSED] ABGR8888 Out of bound height * pitch combination
[23:49:04] [PASSED] ABGR8888 Large buffer offset
[23:49:04] [PASSED] ABGR8888 Buffer offset for inexistent plane
[23:49:04] [PASSED] ABGR8888 Invalid flag
[23:49:04] [PASSED] ABGR8888 Set DRM_MODE_FB_MODIFIERS without modifiers
[23:49:04] [PASSED] ABGR8888 Valid buffer modifier
[23:49:04] [PASSED] ABGR8888 Invalid buffer modifier(DRM_FORMAT_MOD_SAMSUNG_64_32_TILE)
[23:49:04] [PASSED] ABGR8888 Extra pitches without DRM_MODE_FB_MODIFIERS
[23:49:04] [PASSED] ABGR8888 Extra pitches with DRM_MODE_FB_MODIFIERS
[23:49:04] [PASSED] NV12 Normal sizes
[23:49:04] [PASSED] NV12 Max sizes
[23:49:04] [PASSED] NV12 Invalid pitch
[23:49:04] [PASSED] NV12 Invalid modifier/missing DRM_MODE_FB_MODIFIERS flag
[23:49:04] [PASSED] NV12 different modifier per-plane
[23:49:04] [PASSED] NV12 with DRM_FORMAT_MOD_SAMSUNG_64_32_TILE
[23:49:04] [PASSED] NV12 Valid modifiers without DRM_MODE_FB_MODIFIERS
[23:49:04] [PASSED] NV12 Modifier for inexistent plane
[23:49:04] [PASSED] NV12 Handle for inexistent plane
[23:49:04] [PASSED] NV12 Handle for inexistent plane without DRM_MODE_FB_MODIFIERS
[23:49:04] [PASSED] YVU420 DRM_MODE_FB_MODIFIERS set without modifier
[23:49:04] [PASSED] YVU420 Normal sizes
[23:49:04] [PASSED] YVU420 Max sizes
[23:49:04] [PASSED] YVU420 Invalid pitch
[23:49:04] [PASSED] YVU420 Different pitches
[23:49:04] [PASSED] YVU420 Different buffer offsets/pitches
[23:49:04] [PASSED] YVU420 Modifier set just for plane 0, without DRM_MODE_FB_MODIFIERS
[23:49:04] [PASSED] YVU420 Modifier set just for planes 0, 1, without DRM_MODE_FB_MODIFIERS
[23:49:04] [PASSED] YVU420 Modifier set just for plane 0, 1, with DRM_MODE_FB_MODIFIERS
[23:49:04] [PASSED] YVU420 Valid modifier
[23:49:04] [PASSED] YVU420 Different modifiers per plane
[23:49:04] [PASSED] YVU420 Modifier for inexistent plane
[23:49:04] [PASSED] YUV420_10BIT Invalid modifier(DRM_FORMAT_MOD_LINEAR)
[23:49:04] [PASSED] X0L2 Normal sizes
[23:49:04] [PASSED] X0L2 Max sizes
[23:49:04] [PASSED] X0L2 Invalid pitch
[23:49:04] [PASSED] X0L2 Pitch greater than minimum required
[23:49:04] [PASSED] X0L2 Handle for inexistent plane
[23:49:04] [PASSED] X0L2 Offset for inexistent plane, without DRM_MODE_FB_MODIFIERS set
[23:49:04] [PASSED] X0L2 Modifier without DRM_MODE_FB_MODIFIERS set
[23:49:04] [PASSED] X0L2 Valid modifier
[23:49:04] [PASSED] X0L2 Modifier for inexistent plane
[23:49:04] =========== [PASSED] drm_test_framebuffer_create ===========
[23:49:04] [PASSED] drm_test_framebuffer_free
[23:49:04] [PASSED] drm_test_framebuffer_init
[23:49:04] [PASSED] drm_test_framebuffer_init_bad_format
[23:49:04] [PASSED] drm_test_framebuffer_init_dev_mismatch
[23:49:04] [PASSED] drm_test_framebuffer_lookup
[23:49:04] [PASSED] drm_test_framebuffer_lookup_inexistent
[23:49:04] [PASSED] drm_test_framebuffer_modifiers_not_supported
[23:49:04] ================= [PASSED] drm_framebuffer =================
[23:49:04] ================ drm_gem_shmem (8 subtests) ================
[23:49:04] [PASSED] drm_gem_shmem_test_obj_create
[23:49:04] [PASSED] drm_gem_shmem_test_obj_create_private
[23:49:04] [PASSED] drm_gem_shmem_test_pin_pages
[23:49:04] [PASSED] drm_gem_shmem_test_vmap
[23:49:04] [PASSED] drm_gem_shmem_test_get_pages_sgt
[23:49:04] [PASSED] drm_gem_shmem_test_get_sg_table
[23:49:04] [PASSED] drm_gem_shmem_test_madvise
[23:49:04] [PASSED] drm_gem_shmem_test_purge
[23:49:04] ================== [PASSED] drm_gem_shmem ==================
[23:49:04] === drm_atomic_helper_connector_hdmi_check (27 subtests) ===
[23:49:04] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode
[23:49:04] [PASSED] drm_test_check_broadcast_rgb_auto_cea_mode_vic_1
[23:49:04] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode
[23:49:04] [PASSED] drm_test_check_broadcast_rgb_full_cea_mode_vic_1
[23:49:04] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode
[23:49:04] [PASSED] drm_test_check_broadcast_rgb_limited_cea_mode_vic_1
[23:49:04] ====== drm_test_check_broadcast_rgb_cea_mode_yuv420 =======
[23:49:04] [PASSED] Automatic
[23:49:04] [PASSED] Full
[23:49:04] [PASSED] Limited 16:235
[23:49:04] == [PASSED] drm_test_check_broadcast_rgb_cea_mode_yuv420 ===
[23:49:04] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_changed
[23:49:04] [PASSED] drm_test_check_broadcast_rgb_crtc_mode_not_changed
[23:49:04] [PASSED] drm_test_check_disable_connector
[23:49:04] [PASSED] drm_test_check_hdmi_funcs_reject_rate
[23:49:04] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_rgb
[23:49:04] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_yuv420
[23:49:04] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv422
[23:49:04] [PASSED] drm_test_check_max_tmds_rate_bpc_fallback_ignore_yuv420
[23:49:04] [PASSED] drm_test_check_driver_unsupported_fallback_yuv420
[23:49:04] [PASSED] drm_test_check_output_bpc_crtc_mode_changed
[23:49:04] [PASSED] drm_test_check_output_bpc_crtc_mode_not_changed
[23:49:04] [PASSED] drm_test_check_output_bpc_dvi
[23:49:04] [PASSED] drm_test_check_output_bpc_format_vic_1
[23:49:04] [PASSED] drm_test_check_output_bpc_format_display_8bpc_only
[23:49:04] [PASSED] drm_test_check_output_bpc_format_display_rgb_only
[23:49:04] [PASSED] drm_test_check_output_bpc_format_driver_8bpc_only
[23:49:04] [PASSED] drm_test_check_output_bpc_format_driver_rgb_only
[23:49:04] [PASSED] drm_test_check_tmds_char_rate_rgb_8bpc
[23:49:04] [PASSED] drm_test_check_tmds_char_rate_rgb_10bpc
[23:49:04] [PASSED] drm_test_check_tmds_char_rate_rgb_12bpc
[23:49:04] ===== [PASSED] drm_atomic_helper_connector_hdmi_check ======
[23:49:04] === drm_atomic_helper_connector_hdmi_reset (6 subtests) ====
[23:49:04] [PASSED] drm_test_check_broadcast_rgb_value
[23:49:04] [PASSED] drm_test_check_bpc_8_value
[23:49:04] [PASSED] drm_test_check_bpc_10_value
[23:49:04] [PASSED] drm_test_check_bpc_12_value
[23:49:04] [PASSED] drm_test_check_format_value
[23:49:04] [PASSED] drm_test_check_tmds_char_value
[23:49:04] ===== [PASSED] drm_atomic_helper_connector_hdmi_reset ======
[23:49:04] = drm_atomic_helper_connector_hdmi_mode_valid (4 subtests) =
[23:49:04] [PASSED] drm_test_check_mode_valid
[23:49:04] [PASSED] drm_test_check_mode_valid_reject
[23:49:04] [PASSED] drm_test_check_mode_valid_reject_rate
[23:49:04] [PASSED] drm_test_check_mode_valid_reject_max_clock
[23:49:04] === [PASSED] drm_atomic_helper_connector_hdmi_mode_valid ===
[23:49:04] ================= drm_managed (2 subtests) =================
[23:49:04] [PASSED] drm_test_managed_release_action
[23:49:04] [PASSED] drm_test_managed_run_action
[23:49:04] =================== [PASSED] drm_managed ===================
[23:49:04] =================== drm_mm (6 subtests) ====================
[23:49:04] [PASSED] drm_test_mm_init
[23:49:04] [PASSED] drm_test_mm_debug
[23:49:04] [PASSED] drm_test_mm_align32
[23:49:04] [PASSED] drm_test_mm_align64
[23:49:04] [PASSED] drm_test_mm_lowest
[23:49:04] [PASSED] drm_test_mm_highest
[23:49:04] ===================== [PASSED] drm_mm ======================
[23:49:04] ============= drm_modes_analog_tv (5 subtests) =============
[23:49:04] [PASSED] drm_test_modes_analog_tv_mono_576i
[23:49:04] [PASSED] drm_test_modes_analog_tv_ntsc_480i
[23:49:04] [PASSED] drm_test_modes_analog_tv_ntsc_480i_inlined
[23:49:04] [PASSED] drm_test_modes_analog_tv_pal_576i
[23:49:04] [PASSED] drm_test_modes_analog_tv_pal_576i_inlined
[23:49:04] =============== [PASSED] drm_modes_analog_tv ===============
[23:49:04] ============== drm_plane_helper (2 subtests) ===============
[23:49:04] =============== drm_test_check_plane_state ================
[23:49:04] [PASSED] clipping_simple
[23:49:04] [PASSED] clipping_rotate_reflect
[23:49:04] [PASSED] positioning_simple
[23:49:04] [PASSED] upscaling
[23:49:04] [PASSED] downscaling
[23:49:04] [PASSED] rounding1
[23:49:04] [PASSED] rounding2
[23:49:04] [PASSED] rounding3
[23:49:04] [PASSED] rounding4
[23:49:04] =========== [PASSED] drm_test_check_plane_state ============
[23:49:04] =========== drm_test_check_invalid_plane_state ============
[23:49:04] [PASSED] positioning_invalid
[23:49:04] [PASSED] upscaling_invalid
[23:49:04] [PASSED] downscaling_invalid
[23:49:04] ======= [PASSED] drm_test_check_invalid_plane_state ========
[23:49:04] ================ [PASSED] drm_plane_helper =================
[23:49:04] ====== drm_connector_helper_tv_get_modes (1 subtest) =======
[23:49:04] ====== drm_test_connector_helper_tv_get_modes_check =======
[23:49:04] [PASSED] None
[23:49:04] [PASSED] PAL
[23:49:04] [PASSED] NTSC
[23:49:04] [PASSED] Both, NTSC Default
[23:49:04] [PASSED] Both, PAL Default
[23:49:04] [PASSED] Both, NTSC Default, with PAL on command-line
[23:49:04] [PASSED] Both, PAL Default, with NTSC on command-line
[23:49:04] == [PASSED] drm_test_connector_helper_tv_get_modes_check ===
[23:49:04] ======== [PASSED] drm_connector_helper_tv_get_modes ========
[23:49:04] ================== drm_rect (9 subtests) ===================
[23:49:04] [PASSED] drm_test_rect_clip_scaled_div_by_zero
[23:49:04] [PASSED] drm_test_rect_clip_scaled_not_clipped
[23:49:04] [PASSED] drm_test_rect_clip_scaled_clipped
[23:49:04] [PASSED] drm_test_rect_clip_scaled_signed_vs_unsigned
[23:49:04] ================= drm_test_rect_intersect =================
[23:49:04] [PASSED] top-left x bottom-right: 2x2+1+1 x 2x2+0+0
[23:49:04] [PASSED] top-right x bottom-left: 2x2+0+0 x 2x2+1-1
[23:49:04] [PASSED] bottom-left x top-right: 2x2+1-1 x 2x2+0+0
[23:49:04] [PASSED] bottom-right x top-left: 2x2+0+0 x 2x2+1+1
[23:49:04] [PASSED] right x left: 2x1+0+0 x 3x1+1+0
[23:49:04] [PASSED] left x right: 3x1+1+0 x 2x1+0+0
[23:49:04] [PASSED] up x bottom: 1x2+0+0 x 1x3+0-1
[23:49:04] [PASSED] bottom x up: 1x3+0-1 x 1x2+0+0
[23:49:04] [PASSED] touching corner: 1x1+0+0 x 2x2+1+1
[23:49:04] [PASSED] touching side: 1x1+0+0 x 1x1+1+0
[23:49:04] [PASSED] equal rects: 2x2+0+0 x 2x2+0+0
[23:49:04] [PASSED] inside another: 2x2+0+0 x 1x1+1+1
[23:49:04] [PASSED] far away: 1x1+0+0 x 1x1+3+6
[23:49:04] [PASSED] points intersecting: 0x0+5+10 x 0x0+5+10
[23:49:04] [PASSED] points not intersecting: 0x0+0+0 x 0x0+5+10
[23:49:04] ============= [PASSED] drm_test_rect_intersect =============
[23:49:04] ================ drm_test_rect_calc_hscale ================
[23:49:04] [PASSED] normal use
[23:49:04] [PASSED] out of max range
[23:49:04] [PASSED] out of min range
[23:49:04] [PASSED] zero dst
[23:49:04] [PASSED] negative src
[23:49:04] [PASSED] negative dst
[23:49:04] ============ [PASSED] drm_test_rect_calc_hscale ============
[23:49:04] ================ drm_test_rect_calc_vscale ================
[23:49:04] [PASSED] normal use
[23:49:04] [PASSED] out of max range
[23:49:04] [PASSED] out of min range
[23:49:04] [PASSED] zero dst
[23:49:04] [PASSED] negative src
[23:49:04] [PASSED] negative dst
[23:49:04] ============ [PASSED] drm_test_rect_calc_vscale ============
[23:49:04] ================== drm_test_rect_rotate ===================
[23:49:04] [PASSED] reflect-x
[23:49:04] [PASSED] reflect-y
[23:49:04] [PASSED] rotate-0
[23:49:04] [PASSED] rotate-90
[23:49:04] [PASSED] rotate-180
[23:49:04] [PASSED] rotate-270
stty: 'standard input': Inappropriate ioctl for device
[23:49:04] ============== [PASSED] drm_test_rect_rotate ===============
[23:49:04] ================ drm_test_rect_rotate_inv =================
[23:49:04] [PASSED] reflect-x
[23:49:04] [PASSED] reflect-y
[23:49:04] [PASSED] rotate-0
[23:49:04] [PASSED] rotate-90
[23:49:04] [PASSED] rotate-180
[23:49:04] [PASSED] rotate-270
[23:49:04] ============ [PASSED] drm_test_rect_rotate_inv =============
[23:49:04] ==================== [PASSED] drm_rect =====================
[23:49:04] ============ drm_sysfb_modeset_test (1 subtest) ============
[23:49:04] ============ drm_test_sysfb_build_fourcc_list =============
[23:49:04] [PASSED] no native formats
[23:49:04] [PASSED] XRGB8888 as native format
[23:49:04] [PASSED] remove duplicates
[23:49:04] [PASSED] convert alpha formats
[23:49:04] [PASSED] random formats
[23:49:04] ======== [PASSED] drm_test_sysfb_build_fourcc_list =========
[23:49:04] ============= [PASSED] drm_sysfb_modeset_test ==============
[23:49:04] ============================================================
[23:49:04] Testing complete. Ran 616 tests: passed: 616
[23:49:04] Elapsed time: 27.550s total, 1.599s configuring, 25.734s building, 0.193s running
+ /kernel/tools/testing/kunit/kunit.py run --kunitconfig /kernel/drivers/gpu/drm/ttm/tests/.kunitconfig
[23:49:04] Configuring KUnit Kernel ...
Regenerating .config ...
Populating config with:
$ make ARCH=um O=.kunit olddefconfig
[23:49:06] 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=25
[23:49:13] Starting KUnit Kernel (1/1)...
[23:49:13] ============================================================
Running tests with:
$ .kunit/linux kunit.enable=1 mem=1G console=tty kunit_shutdown=halt
[23:49:14] ================= ttm_device (5 subtests) ==================
[23:49:14] [PASSED] ttm_device_init_basic
[23:49:14] [PASSED] ttm_device_init_multiple
[23:49:14] [PASSED] ttm_device_fini_basic
[23:49:14] [PASSED] ttm_device_init_no_vma_man
[23:49:14] ================== ttm_device_init_pools ==================
[23:49:14] [PASSED] No DMA allocations, no DMA32 required
[23:49:14] [PASSED] DMA allocations, DMA32 required
[23:49:14] [PASSED] No DMA allocations, DMA32 required
[23:49:14] [PASSED] DMA allocations, no DMA32 required
[23:49:14] ============== [PASSED] ttm_device_init_pools ==============
[23:49:14] =================== [PASSED] ttm_device ====================
[23:49:14] ================== ttm_pool (8 subtests) ===================
[23:49:14] ================== ttm_pool_alloc_basic ===================
[23:49:14] [PASSED] One page
[23:49:14] [PASSED] More than one page
[23:49:14] [PASSED] Above the allocation limit
[23:49:14] [PASSED] One page, with coherent DMA mappings enabled
[23:49:14] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[23:49:14] ============== [PASSED] ttm_pool_alloc_basic ===============
[23:49:14] ============== ttm_pool_alloc_basic_dma_addr ==============
[23:49:14] [PASSED] One page
[23:49:14] [PASSED] More than one page
[23:49:14] [PASSED] Above the allocation limit
[23:49:14] [PASSED] One page, with coherent DMA mappings enabled
[23:49:14] [PASSED] Above the allocation limit, with coherent DMA mappings enabled
[23:49:14] ========== [PASSED] ttm_pool_alloc_basic_dma_addr ==========
[23:49:14] [PASSED] ttm_pool_alloc_order_caching_match
[23:49:14] [PASSED] ttm_pool_alloc_caching_mismatch
[23:49:14] [PASSED] ttm_pool_alloc_order_mismatch
[23:49:14] [PASSED] ttm_pool_free_dma_alloc
[23:49:14] [PASSED] ttm_pool_free_no_dma_alloc
[23:49:14] [PASSED] ttm_pool_fini_basic
[23:49:14] ==================== [PASSED] ttm_pool =====================
[23:49:14] ================ ttm_resource (8 subtests) =================
[23:49:14] ================= ttm_resource_init_basic =================
[23:49:14] [PASSED] Init resource in TTM_PL_SYSTEM
[23:49:14] [PASSED] Init resource in TTM_PL_VRAM
[23:49:14] [PASSED] Init resource in a private placement
[23:49:14] [PASSED] Init resource in TTM_PL_SYSTEM, set placement flags
[23:49:14] ============= [PASSED] ttm_resource_init_basic =============
[23:49:14] [PASSED] ttm_resource_init_pinned
[23:49:14] [PASSED] ttm_resource_fini_basic
[23:49:14] [PASSED] ttm_resource_manager_init_basic
[23:49:14] [PASSED] ttm_resource_manager_usage_basic
[23:49:14] [PASSED] ttm_resource_manager_set_used_basic
[23:49:14] [PASSED] ttm_sys_man_alloc_basic
[23:49:14] [PASSED] ttm_sys_man_free_basic
[23:49:14] ================== [PASSED] ttm_resource ===================
[23:49:14] =================== ttm_tt (15 subtests) ===================
[23:49:14] ==================== ttm_tt_init_basic ====================
[23:49:14] [PASSED] Page-aligned size
[23:49:14] [PASSED] Extra pages requested
[23:49:14] ================ [PASSED] ttm_tt_init_basic ================
[23:49:14] [PASSED] ttm_tt_init_misaligned
[23:49:14] [PASSED] ttm_tt_fini_basic
[23:49:14] [PASSED] ttm_tt_fini_sg
[23:49:14] [PASSED] ttm_tt_fini_shmem
[23:49:14] [PASSED] ttm_tt_create_basic
[23:49:14] [PASSED] ttm_tt_create_invalid_bo_type
[23:49:14] [PASSED] ttm_tt_create_ttm_exists
[23:49:14] [PASSED] ttm_tt_create_failed
[23:49:14] [PASSED] ttm_tt_destroy_basic
[23:49:14] [PASSED] ttm_tt_populate_null_ttm
[23:49:14] [PASSED] ttm_tt_populate_populated_ttm
[23:49:14] [PASSED] ttm_tt_unpopulate_basic
[23:49:14] [PASSED] ttm_tt_unpopulate_empty_ttm
[23:49:14] [PASSED] ttm_tt_swapin_basic
[23:49:14] ===================== [PASSED] ttm_tt ======================
[23:49:14] =================== ttm_bo (14 subtests) ===================
[23:49:14] =========== ttm_bo_reserve_optimistic_no_ticket ===========
[23:49:14] [PASSED] Cannot be interrupted and sleeps
[23:49:14] [PASSED] Cannot be interrupted, locks straight away
[23:49:14] [PASSED] Can be interrupted, sleeps
[23:49:14] ======= [PASSED] ttm_bo_reserve_optimistic_no_ticket =======
[23:49:14] [PASSED] ttm_bo_reserve_locked_no_sleep
[23:49:14] [PASSED] ttm_bo_reserve_no_wait_ticket
[23:49:14] [PASSED] ttm_bo_reserve_double_resv
[23:49:14] [PASSED] ttm_bo_reserve_interrupted
[23:49:14] [PASSED] ttm_bo_reserve_deadlock
[23:49:14] [PASSED] ttm_bo_unreserve_basic
[23:49:14] [PASSED] ttm_bo_unreserve_pinned
[23:49:14] [PASSED] ttm_bo_unreserve_bulk
[23:49:14] [PASSED] ttm_bo_put_basic
[23:49:14] [PASSED] ttm_bo_put_shared_resv
[23:49:14] [PASSED] ttm_bo_pin_basic
[23:49:14] [PASSED] ttm_bo_pin_unpin_resource
[23:49:14] [PASSED] ttm_bo_multiple_pin_one_unpin
[23:49:14] ===================== [PASSED] ttm_bo ======================
[23:49:14] ============== ttm_bo_validate (22 subtests) ===============
[23:49:14] ============== ttm_bo_init_reserved_sys_man ===============
[23:49:14] [PASSED] Buffer object for userspace
[23:49:14] [PASSED] Kernel buffer object
[23:49:14] [PASSED] Shared buffer object
[23:49:14] ========== [PASSED] ttm_bo_init_reserved_sys_man ===========
[23:49:14] ============== ttm_bo_init_reserved_mock_man ==============
[23:49:14] [PASSED] Buffer object for userspace
[23:49:14] [PASSED] Kernel buffer object
[23:49:14] [PASSED] Shared buffer object
[23:49:14] ========== [PASSED] ttm_bo_init_reserved_mock_man ==========
[23:49:14] [PASSED] ttm_bo_init_reserved_resv
[23:49:14] ================== ttm_bo_validate_basic ==================
[23:49:14] [PASSED] Buffer object for userspace
[23:49:14] [PASSED] Kernel buffer object
[23:49:14] [PASSED] Shared buffer object
[23:49:14] ============== [PASSED] ttm_bo_validate_basic ==============
[23:49:14] [PASSED] ttm_bo_validate_invalid_placement
[23:49:14] ============= ttm_bo_validate_same_placement ==============
[23:49:14] [PASSED] System manager
[23:49:14] [PASSED] VRAM manager
[23:49:14] ========= [PASSED] ttm_bo_validate_same_placement ==========
[23:49:14] [PASSED] ttm_bo_validate_failed_alloc
[23:49:14] [PASSED] ttm_bo_validate_pinned
[23:49:14] [PASSED] ttm_bo_validate_busy_placement
[23:49:14] ================ ttm_bo_validate_multihop =================
[23:49:14] [PASSED] Buffer object for userspace
[23:49:14] [PASSED] Kernel buffer object
[23:49:14] [PASSED] Shared buffer object
[23:49:14] ============ [PASSED] ttm_bo_validate_multihop =============
[23:49:14] ========== ttm_bo_validate_no_placement_signaled ==========
[23:49:14] [PASSED] Buffer object in system domain, no page vector
[23:49:14] [PASSED] Buffer object in system domain with an existing page vector
[23:49:14] ====== [PASSED] ttm_bo_validate_no_placement_signaled ======
[23:49:14] ======== ttm_bo_validate_no_placement_not_signaled ========
[23:49:14] [PASSED] Buffer object for userspace
[23:49:14] [PASSED] Kernel buffer object
[23:49:14] [PASSED] Shared buffer object
[23:49:14] ==== [PASSED] ttm_bo_validate_no_placement_not_signaled ====
[23:49:14] [PASSED] ttm_bo_validate_move_fence_signaled
[23:49:14] ========= ttm_bo_validate_move_fence_not_signaled =========
[23:49:14] [PASSED] Waits for GPU
[23:49:14] [PASSED] Tries to lock straight away
[23:49:14] ===== [PASSED] ttm_bo_validate_move_fence_not_signaled =====
[23:49:14] [PASSED] ttm_bo_validate_swapout
[23:49:14] [PASSED] ttm_bo_validate_happy_evict
[23:49:14] [PASSED] ttm_bo_validate_all_pinned_evict
[23:49:14] [PASSED] ttm_bo_validate_allowed_only_evict
[23:49:14] [PASSED] ttm_bo_validate_deleted_evict
[23:49:14] [PASSED] ttm_bo_validate_busy_domain_evict
[23:49:14] [PASSED] ttm_bo_validate_evict_gutting
[23:49:14] [PASSED] ttm_bo_validate_recrusive_evict
stty: 'standard input': Inappropriate ioctl for device
[23:49:14] ================= [PASSED] ttm_bo_validate =================
[23:49:14] ============================================================
[23:49:14] Testing complete. Ran 102 tests: passed: 102
[23:49:14] Elapsed time: 10.041s total, 1.587s configuring, 7.736s building, 0.593s running
+ cleanup
++ stat -c %u:%g /kernel
+ chown -R 1003:1003 /kernel
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ Xe.CI.BAT: success for drm/xe/xe_pmu: Validate gt in event supported
2025-06-30 9:37 [PATCH] drm/xe/xe_pmu: Validate gt in event supported Riana Tauro
` (2 preceding siblings ...)
2025-06-30 23:49 ` ✓ CI.KUnit: success for " Patchwork
@ 2025-07-01 0:42 ` Patchwork
2025-07-02 11:00 ` ✓ Xe.CI.Full: " Patchwork
4 siblings, 0 replies; 13+ messages in thread
From: Patchwork @ 2025-07-01 0:42 UTC (permalink / raw)
To: Riana Tauro; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 1004 bytes --]
== Series Details ==
Series: drm/xe/xe_pmu: Validate gt in event supported
URL : https://patchwork.freedesktop.org/series/150943/
State : success
== Summary ==
CI Bug Log - changes from xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86_BAT -> xe-pw-150943v1_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8431 -> IGT_8432
* Linux: xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86 -> xe-pw-150943v1
IGT_8431: 8431
IGT_8432: 4871829d8b7117553eb2dc1bdb9a0d18de428a98 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86: d9007d535ea106181346f9988c97aa73a9cdfb86
xe-pw-150943v1: 150943v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/index.html
[-- Attachment #2: Type: text/html, Size: 1566 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH] drm/xe/xe_pmu: Validate gt in event supported
2025-06-30 22:28 ` [PATCH] " Lucas De Marchi
@ 2025-07-01 5:08 ` Riana Tauro
2025-07-01 20:31 ` Matt Roper
1 sibling, 0 replies; 13+ messages in thread
From: Riana Tauro @ 2025-07-01 5:08 UTC (permalink / raw)
To: Lucas De Marchi
Cc: intel-xe, anshuman.gupta, umesh.nerlige.ramappa, sk.anirban,
soham.purkait
Hi Lucas
On 7/1/2025 3:58 AM, Lucas De Marchi wrote:
> On Mon, Jun 30, 2025 at 03:07:41PM +0530, Riana Tauro wrote:
>> Validate gt instead of checking gt_id is lesser
>> than max gts per tile
>
> I prefer the series from Matt Roper that is refactoring this part well.
Hadn't seen the series. That patch needs some modification too,
Replied on the patch.
Thanks
Riana
>
> Lucas De Marchi
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH] drm/xe/xe_pmu: Validate gt in event supported
2025-06-30 22:28 ` [PATCH] " Lucas De Marchi
2025-07-01 5:08 ` Riana Tauro
@ 2025-07-01 20:31 ` Matt Roper
2025-07-01 21:09 ` Lucas De Marchi
1 sibling, 1 reply; 13+ messages in thread
From: Matt Roper @ 2025-07-01 20:31 UTC (permalink / raw)
To: Lucas De Marchi
Cc: Riana Tauro, intel-xe, anshuman.gupta, umesh.nerlige.ramappa,
sk.anirban, soham.purkait
On Mon, Jun 30, 2025 at 05:28:53PM -0500, Lucas De Marchi wrote:
> On Mon, Jun 30, 2025 at 03:07:41PM +0530, Riana Tauro wrote:
> > Validate gt instead of checking gt_id is lesser
> > than max gts per tile
>
> I prefer the series from Matt Roper that is refactoring this part well.
I think we want this change regardless. My series is about refactoring
to future-proof the behavior in case we wind up with multi-tile+multi-GT
platforms in the future. However Riana's patch here is fixing a real
bug in the code that exists for existing platforms like PVC (i.e., the
code currently lets "GT1" through as valid even on single-tile variants
of PVC).
So we should either land this patch first (which will remove a hunk from
one of my patches), or make this as a separate change on top of my
series. In the latest version of my series (v4) I included a patch
identical to this one as patch #1 since I didn't notice that this patch
was exactly the same thing; if this one lands, then we can drop the
first one from v4 of my series.
Matt
>
> Lucas De Marchi
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH] drm/xe/xe_pmu: Validate gt in event supported
2025-07-01 20:31 ` Matt Roper
@ 2025-07-01 21:09 ` Lucas De Marchi
2025-07-01 21:19 ` Matt Roper
0 siblings, 1 reply; 13+ messages in thread
From: Lucas De Marchi @ 2025-07-01 21:09 UTC (permalink / raw)
To: Matt Roper
Cc: Riana Tauro, intel-xe, anshuman.gupta, umesh.nerlige.ramappa,
sk.anirban, soham.purkait
On Tue, Jul 01, 2025 at 01:31:28PM -0700, Matt Roper wrote:
>On Mon, Jun 30, 2025 at 05:28:53PM -0500, Lucas De Marchi wrote:
>> On Mon, Jun 30, 2025 at 03:07:41PM +0530, Riana Tauro wrote:
>> > Validate gt instead of checking gt_id is lesser
>> > than max gts per tile
>>
>> I prefer the series from Matt Roper that is refactoring this part well.
>
>I think we want this change regardless. My series is about refactoring
>to future-proof the behavior in case we wind up with multi-tile+multi-GT
>platforms in the future. However Riana's patch here is fixing a real
>bug in the code that exists for existing platforms like PVC (i.e., the
>code currently lets "GT1" through as valid even on single-tile variants
>of PVC).
I misread this patch and thought it was an impossible condition that was
already protected during event init and it was added more as an "assert
we always have this". Now I see this is the call that actually protects
the event creation. So, yes, this looks the correct thing to do.
Riana, could you expand the commit message to emphasize this is a real
issue for platforms like PVC?
Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
thanks
Lucas De Marchi
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH] drm/xe/xe_pmu: Validate gt in event supported
2025-07-01 21:09 ` Lucas De Marchi
@ 2025-07-01 21:19 ` Matt Roper
2025-07-02 4:54 ` Riana Tauro
0 siblings, 1 reply; 13+ messages in thread
From: Matt Roper @ 2025-07-01 21:19 UTC (permalink / raw)
To: Lucas De Marchi
Cc: Riana Tauro, intel-xe, anshuman.gupta, umesh.nerlige.ramappa,
sk.anirban, soham.purkait
On Tue, Jul 01, 2025 at 04:09:44PM -0500, Lucas De Marchi wrote:
> On Tue, Jul 01, 2025 at 01:31:28PM -0700, Matt Roper wrote:
> > On Mon, Jun 30, 2025 at 05:28:53PM -0500, Lucas De Marchi wrote:
> > > On Mon, Jun 30, 2025 at 03:07:41PM +0530, Riana Tauro wrote:
> > > > Validate gt instead of checking gt_id is lesser
> > > > than max gts per tile
> > >
> > > I prefer the series from Matt Roper that is refactoring this part well.
> >
> > I think we want this change regardless. My series is about refactoring
> > to future-proof the behavior in case we wind up with multi-tile+multi-GT
> > platforms in the future. However Riana's patch here is fixing a real
> > bug in the code that exists for existing platforms like PVC (i.e., the
> > code currently lets "GT1" through as valid even on single-tile variants
> > of PVC).
>
> I misread this patch and thought it was an impossible condition that was
> already protected during event init and it was added more as an "assert
> we always have this". Now I see this is the call that actually protects
> the event creation. So, yes, this looks the correct thing to do.
>
> Riana, could you expand the commit message to emphasize this is a real
> issue for platforms like PVC?
>
> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
>
> thanks
> Lucas De Marchi
I did just notice (as Karthik also pointed out on another part of this
thread) that if we apply this patch _without_ my series, then
xe_device_get_gt() could throw a WARN and return something non-NULL if
the GT ID is too high, which doesn't actually help. But if we apply
this fix after my refactoring, then xe_device_get_gt() will return NULL
on any invalid GT ID and the logic here works as expected. So I guess
rather than applying this on its own, we could wait and apply it after
my series (and I'd drop the patch #1 that I had added to v4 of my
series).
Matt
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH] drm/xe/xe_pmu: Validate gt in event supported
2025-07-01 21:19 ` Matt Roper
@ 2025-07-02 4:54 ` Riana Tauro
0 siblings, 0 replies; 13+ messages in thread
From: Riana Tauro @ 2025-07-02 4:54 UTC (permalink / raw)
To: Matt Roper, Lucas De Marchi, Karthik Poosa
Cc: intel-xe, anshuman.gupta, umesh.nerlige.ramappa, sk.anirban,
soham.purkait
Hi Matt/Lucas
On 7/2/2025 2:49 AM, Matt Roper wrote:
> On Tue, Jul 01, 2025 at 04:09:44PM -0500, Lucas De Marchi wrote:
>> On Tue, Jul 01, 2025 at 01:31:28PM -0700, Matt Roper wrote:
>>> On Mon, Jun 30, 2025 at 05:28:53PM -0500, Lucas De Marchi wrote:
>>>> On Mon, Jun 30, 2025 at 03:07:41PM +0530, Riana Tauro wrote:
>>>>> Validate gt instead of checking gt_id is lesser
>>>>> than max gts per tile
>>>>
>>>> I prefer the series from Matt Roper that is refactoring this part well.
>>>
>>> I think we want this change regardless. My series is about refactoring
>>> to future-proof the behavior in case we wind up with multi-tile+multi-GT
>>> platforms in the future. However Riana's patch here is fixing a real
>>> bug in the code that exists for existing platforms like PVC (i.e., the
>>> code currently lets "GT1" through as valid even on single-tile variants
>>> of PVC).
>>
>> I misread this patch and thought it was an impossible condition that was
>> already protected during event init and it was added more as an "assert
>> we always have this". Now I see this is the call that actually protects
>> the event creation. So, yes, this looks the correct thing to do.
>>
>> Riana, could you expand the commit message to emphasize this is a real
>> issue for platforms like PVC?
Sure will do that.
>>
>> Reviewed-by: Lucas De Marchi <lucas.demarchi@intel.com>
Thank you for the review
>>
>> thanks
>> Lucas De Marchi
>
> I did just notice (as Karthik also pointed out on another part of this
> thread) that if we apply this patch _without_ my series, then
> xe_device_get_gt() could throw a WARN and return something non-NULL if
> the GT ID is too high, which doesn't actually help. But if we apply
> this fix after my refactoring, then xe_device_get_gt() will return NULL
> on any invalid GT ID and the logic here works as expected. So I guess
> rather than applying this on its own, we could wait and apply it after
> my series (and I'd drop the patch #1 that I had added to v4 of my
> series).
>
I misread Karthik's comment. Yeah makes sense. I will wait
and apply after your series.
Thanks
Riana
>
> Matt
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ Xe.CI.Full: success for drm/xe/xe_pmu: Validate gt in event supported
2025-06-30 9:37 [PATCH] drm/xe/xe_pmu: Validate gt in event supported Riana Tauro
` (3 preceding siblings ...)
2025-07-01 0:42 ` ✓ Xe.CI.BAT: " Patchwork
@ 2025-07-02 11:00 ` Patchwork
2025-07-02 23:16 ` Matt Roper
4 siblings, 1 reply; 13+ messages in thread
From: Patchwork @ 2025-07-02 11:00 UTC (permalink / raw)
To: Riana Tauro; +Cc: intel-xe
[-- Attachment #1: Type: text/plain, Size: 82925 bytes --]
== Series Details ==
Series: drm/xe/xe_pmu: Validate gt in event supported
URL : https://patchwork.freedesktop.org/series/150943/
State : success
== Summary ==
CI Bug Log - changes from xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86_FULL -> xe-pw-150943v1_FULL
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (4 -> 4)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in xe-pw-150943v1_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [PASS][1] -> [FAIL][2] ([Intel XE#911]) +3 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-8/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
- shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#1407]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#316])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-180:
- shard-lnl: [PASS][6] -> [ABORT][7] ([Intel XE#4760])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-7/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-adlp: NOTRUN -> [DMESG-FAIL][8] ([Intel XE#4543])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#610])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#610])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1428])
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-3/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +6 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-adlp: [PASS][13] -> [DMESG-FAIL][14] ([Intel XE#4543]) +7 other tests dmesg-fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#2191]) +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-4-displays-2560x1440p:
- shard-adlp: NOTRUN -> [SKIP][17] ([Intel XE#367])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-8/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
- shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#367]) +3 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1512])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-7/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#367])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-2/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +7 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#455] / [Intel XE#787]) +43 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4:
- shard-dg2-set2: [PASS][23] -> [INCOMPLETE][24] ([Intel XE#3862]) +1 other test incomplete
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#3432])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#3432])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
- shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#787]) +237 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +4 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-1/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-2:
- shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#4416]) +3 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@kms_cdclk@plane-scaling@pipe-b-dp-2.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2325])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-2/igt@kms_chamelium_color@ctm-green-to-red.html
- shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#306]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-466/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#373]) +10 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#373]) +1 other test skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2252]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-3/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
- shard-adlp: NOTRUN -> [SKIP][35] ([Intel XE#373])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-4/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#307])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@srm@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][37] ([Intel XE#1178]) +2 other tests fail
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@kms_content_protection@srm@pipe-a-dp-4.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2-set2: NOTRUN -> [FAIL][38] ([Intel XE#1188])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-466/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2320]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-512x512:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#308])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x512.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#309]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
- shard-adlp: NOTRUN -> [SKIP][42] ([Intel XE#309])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-3/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2291])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#2291])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [PASS][46] -> [FAIL][47] ([Intel XE#4633])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#4354])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-4/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#4354])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#4356])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_feature_discovery@psr1:
- shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1135])
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-dpms-on-nop:
- shard-bmg: [PASS][52] -> [SKIP][53] ([Intel XE#2316]) +4 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-7/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
* igt@kms_flip@2x-nonexisting-fb-interruptible:
- shard-adlp: NOTRUN -> [SKIP][54] ([Intel XE#310]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-6/igt@kms_flip@2x-nonexisting-fb-interruptible.html
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1421]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@kms_flip@2x-plain-flip-ts-check.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1:
- shard-adlp: [PASS][56] -> [DMESG-WARN][57] ([Intel XE#4543]) +16 other tests dmesg-warn
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-adlp-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1.html
* igt@kms_flip@flip-vs-expired-vblank@b-edp1:
- shard-lnl: [PASS][58] -> [FAIL][59] ([Intel XE#301]) +1 other test fail
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
* igt@kms_flip@flip-vs-suspend@c-dp4:
- shard-dg2-set2: [PASS][60] -> [INCOMPLETE][61] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-464/igt@kms_flip@flip-vs-suspend@c-dp4.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@kms_flip@flip-vs-suspend@c-dp4.html
* igt@kms_flip@flip-vs-suspend@d-hdmi-a1:
- shard-adlp: [PASS][62] -> [DMESG-WARN][63] ([Intel XE#2953] / [Intel XE#4173]) +5 other tests dmesg-warn
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-adlp-9/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-8/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#455]) +15 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-adlp: [PASS][66] -> [DMESG-FAIL][67] ([Intel XE#4543] / [Intel XE#4921]) +5 other tests dmesg-fail
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-adlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
- shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1401] / [Intel XE#1745])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1401])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2293]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y:
- shard-adlp: [PASS][71] -> [FAIL][72] ([Intel XE#1874])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2311]) +10 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
- shard-adlp: NOTRUN -> [SKIP][74] ([Intel XE#651])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-3/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
- shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#651]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#4141]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#651]) +35 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-rte:
- shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#656]) +7 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-rte.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2312]) +3 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-adlp: NOTRUN -> [SKIP][80] ([Intel XE#656]) +1 other test skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#653]) +32 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2313]) +8 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-adlp: NOTRUN -> [SKIP][83] ([Intel XE#653])
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_hdr@invalid-hdr:
- shard-dg2-set2: [PASS][84] -> [SKIP][85] ([Intel XE#455])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-bmg: [PASS][86] -> [SKIP][87] ([Intel XE#3012])
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#2927])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@kms_joiner@invalid-modeset-ultra-joiner.html
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2927])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#2925])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#2763]) +3 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: [PASS][92] -> [FAIL][93] ([Intel XE#718])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@legacy-planes@plane-53:
- shard-bmg: [PASS][94] -> [DMESG-WARN][95] ([Intel XE#3428]) +1 other test dmesg-warn
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-1/igt@kms_pm_rpm@legacy-planes@plane-53.html
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-4/igt@kms_pm_rpm@legacy-planes@plane-53.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#1489]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
- shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#2893])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-8/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#4608]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#1489]) +6 other tests skip
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2234] / [Intel XE#2850]) +8 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-3/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@fbc-psr-cursor-blt:
- shard-adlp: NOTRUN -> [SKIP][102] ([Intel XE#2850] / [Intel XE#929])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-3/igt@kms_psr@fbc-psr-cursor-blt.html
* igt@kms_psr@fbc-psr2-sprite-plane-move:
- shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2850] / [Intel XE#929]) +16 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@kms_psr@fbc-psr2-sprite-plane-move.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1406]) +1 other test skip
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-2/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2414])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#3414]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#3414] / [Intel XE#3904])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [PASS][108] -> [FAIL][109] ([Intel XE#2883]) +2 other tests fail
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-6/igt@kms_setmode@basic@pipe-b-edp-1.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_tv_load_detect@load-detect:
- shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#330])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@kms_tv_load_detect@load-detect.html
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#330])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@kms_tv_load_detect@load-detect.html
- shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2450])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vrr@flip-basic:
- shard-adlp: NOTRUN -> [SKIP][113] ([Intel XE#455])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-3/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#1499]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2168])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-2/igt@kms_vrr@lobf.html
- shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2168])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-bmg: [PASS][117] -> [SKIP][118] ([Intel XE#1499])
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-8/igt@kms_vrr@negative-basic.html
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_vrr@negative-basic.html
* igt@xe_eu_stall@invalid-gt-id:
- shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#5308])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@xe_eu_stall@invalid-gt-id.html
* igt@xe_eudebug@basic-close:
- shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#4837]) +11 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@xe_eudebug@basic-close.html
* igt@xe_eudebug@discovery-race:
- shard-adlp: NOTRUN -> [SKIP][121] ([Intel XE#4837])
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-1/igt@xe_eudebug@discovery-race.html
* igt@xe_eudebug@sysfs-toggle:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#4837]) +2 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@xe_eudebug@sysfs-toggle.html
* igt@xe_eudebug_online@single-step-one:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#4837]) +5 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-4/igt@xe_eudebug_online@single-step-one.html
* igt@xe_evict@evict-beng-small:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#688])
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-7/igt@xe_evict@evict-beng-small.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
- shard-dg2-set2: [PASS][125] -> [SKIP][126] ([Intel XE#1392]) +4 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-435/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
* igt@xe_exec_basic@multigpu-no-exec-null:
- shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2322]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-null.html
* igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
- shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1392])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
* igt@xe_exec_fault_mode@once-invalid-userptr-fault:
- shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#288]) +23 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind:
- shard-adlp: NOTRUN -> [SKIP][130] ([Intel XE#288]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind.html
* igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
- shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2360])
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
* igt@xe_exec_system_allocator@once-malloc-fork-read:
- shard-adlp: NOTRUN -> [SKIP][132] ([Intel XE#4915]) +17 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-8/igt@xe_exec_system_allocator@once-malloc-fork-read.html
* igt@xe_exec_system_allocator@once-mmap-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#4943]) +7 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@xe_exec_system_allocator@once-mmap-huge-nomemset.html
* igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-nomemset:
- shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#4915]) +256 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-nomemset.html
* igt@xe_exec_system_allocator@twice-mmap-new-huge:
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#4943]) +6 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@xe_exec_system_allocator@twice-mmap-new-huge.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-adlp: NOTRUN -> [SKIP][136] ([Intel XE#2229])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
- shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#2229])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#2229])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-3/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@small-bar:
- shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#512])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@xe_mmap@small-bar.html
* igt@xe_module_load@load:
- shard-lnl: ([PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164]) -> ([PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [SKIP][189]) ([Intel XE#378])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-5/igt@xe_module_load@load.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-7/igt@xe_module_load@load.html
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-2/igt@xe_module_load@load.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-4/igt@xe_module_load@load.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-1/igt@xe_module_load@load.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-8/igt@xe_module_load@load.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-6/igt@xe_module_load@load.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-6/igt@xe_module_load@load.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-5/igt@xe_module_load@load.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-5/igt@xe_module_load@load.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-1/igt@xe_module_load@load.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-4/igt@xe_module_load@load.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-8/igt@xe_module_load@load.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-7/igt@xe_module_load@load.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-6/igt@xe_module_load@load.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-7/igt@xe_module_load@load.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-4/igt@xe_module_load@load.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-2/igt@xe_module_load@load.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-2/igt@xe_module_load@load.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-3/igt@xe_module_load@load.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-3/igt@xe_module_load@load.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-3/igt@xe_module_load@load.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-3/igt@xe_module_load@load.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-8/igt@xe_module_load@load.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-5/igt@xe_module_load@load.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-2/igt@xe_module_load@load.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-3/igt@xe_module_load@load.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-3/igt@xe_module_load@load.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-4/igt@xe_module_load@load.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@xe_module_load@load.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-7/igt@xe_module_load@load.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-5/igt@xe_module_load@load.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-5/igt@xe_module_load@load.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-3/igt@xe_module_load@load.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-7/igt@xe_module_load@load.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-7/igt@xe_module_load@load.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-2/igt@xe_module_load@load.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@xe_module_load@load.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@xe_module_load@load.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-7/igt@xe_module_load@load.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-1/igt@xe_module_load@load.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-2/igt@xe_module_load@load.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-5/igt@xe_module_load@load.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-4/igt@xe_module_load@load.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-4/igt@xe_module_load@load.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-1/igt@xe_module_load@load.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-8/igt@xe_module_load@load.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-8/igt@xe_module_load@load.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-8/igt@xe_module_load@load.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-7/igt@xe_module_load@load.html
- shard-bmg: ([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], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240]) ([Intel XE#2457])
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-8/igt@xe_module_load@load.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-1/igt@xe_module_load@load.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-3/igt@xe_module_load@load.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-2/igt@xe_module_load@load.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-3/igt@xe_module_load@load.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-2/igt@xe_module_load@load.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-2/igt@xe_module_load@load.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-7/igt@xe_module_load@load.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-4/igt@xe_module_load@load.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-4/igt@xe_module_load@load.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-3/igt@xe_module_load@load.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-4/igt@xe_module_load@load.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-8/igt@xe_module_load@load.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-1/igt@xe_module_load@load.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-8/igt@xe_module_load@load.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-1/igt@xe_module_load@load.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-7/igt@xe_module_load@load.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-7/igt@xe_module_load@load.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-1/igt@xe_module_load@load.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@xe_module_load@load.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@xe_module_load@load.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-3/igt@xe_module_load@load.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@xe_module_load@load.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-7/igt@xe_module_load@load.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@xe_module_load@load.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-3/igt@xe_module_load@load.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-3/igt@xe_module_load@load.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-4/igt@xe_module_load@load.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-4/igt@xe_module_load@load.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-2/igt@xe_module_load@load.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-3/igt@xe_module_load@load.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@xe_module_load@load.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-8/igt@xe_module_load@load.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-8/igt@xe_module_load@load.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-8/igt@xe_module_load@load.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@xe_module_load@load.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@xe_module_load@load.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-8/igt@xe_module_load@load.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@xe_module_load@load.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@xe_module_load@load.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-8/igt@xe_module_load@load.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@xe_module_load@load.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@xe_module_load@load.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@xe_module_load@load.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@xe_module_load@load.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-3/igt@xe_module_load@load.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-4/igt@xe_module_load@load.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@xe_module_load@load.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@xe_module_load@load.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-2/igt@xe_module_load@load.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-2/igt@xe_module_load@load.html
- shard-dg2-set2: ([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], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291]) ([Intel XE#378])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-435/igt@xe_module_load@load.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-433/igt@xe_module_load@load.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-433/igt@xe_module_load@load.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-433/igt@xe_module_load@load.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-464/igt@xe_module_load@load.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-466/igt@xe_module_load@load.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-432/igt@xe_module_load@load.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-432/igt@xe_module_load@load.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-463/igt@xe_module_load@load.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-463/igt@xe_module_load@load.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-432/igt@xe_module_load@load.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-432/igt@xe_module_load@load.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-432/igt@xe_module_load@load.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-466/igt@xe_module_load@load.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-464/igt@xe_module_load@load.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-463/igt@xe_module_load@load.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-466/igt@xe_module_load@load.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-466/igt@xe_module_load@load.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-435/igt@xe_module_load@load.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-435/igt@xe_module_load@load.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-464/igt@xe_module_load@load.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-435/igt@xe_module_load@load.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-463/igt@xe_module_load@load.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-463/igt@xe_module_load@load.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-464/igt@xe_module_load@load.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@xe_module_load@load.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@xe_module_load@load.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-466/igt@xe_module_load@load.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@xe_module_load@load.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@xe_module_load@load.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@xe_module_load@load.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@xe_module_load@load.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@xe_module_load@load.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@xe_module_load@load.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@xe_module_load@load.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@xe_module_load@load.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@xe_module_load@load.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@xe_module_load@load.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@xe_module_load@load.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@xe_module_load@load.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-466/igt@xe_module_load@load.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@xe_module_load@load.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@xe_module_load@load.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@xe_module_load@load.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@xe_module_load@load.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@xe_module_load@load.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-466/igt@xe_module_load@load.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-466/igt@xe_module_load@load.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@xe_module_load@load.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@xe_module_load@load.html
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@xe_module_load@load.html
* igt@xe_oa@buffer-size:
- shard-dg2-set2: NOTRUN -> [SKIP][292] ([Intel XE#4501])
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-466/igt@xe_oa@buffer-size.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: NOTRUN -> [SKIP][293] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_oa@syncs-ufence-wait:
- shard-dg2-set2: NOTRUN -> [SKIP][294] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) +1 other test skip
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@xe_oa@syncs-ufence-wait.html
* igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][295] ([Intel XE#1173]) +1 other test fail
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html
* igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
- shard-dg2-set2: NOTRUN -> [SKIP][296] ([Intel XE#4733]) +1 other test skip
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html
* igt@xe_query@multigpu-query-invalid-cs-cycles:
- shard-bmg: NOTRUN -> [SKIP][297] ([Intel XE#944])
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@xe_query@multigpu-query-invalid-cs-cycles.html
- shard-lnl: NOTRUN -> [SKIP][298] ([Intel XE#944])
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-5/igt@xe_query@multigpu-query-invalid-cs-cycles.html
* igt@xe_query@multigpu-query-topology:
- shard-dg2-set2: NOTRUN -> [SKIP][299] ([Intel XE#944]) +1 other test skip
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@xe_query@multigpu-query-topology.html
* igt@xe_render_copy@render-stress-0-copies:
- shard-dg2-set2: NOTRUN -> [SKIP][300] ([Intel XE#4814])
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@xe_render_copy@render-stress-0-copies.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
- shard-bmg: NOTRUN -> [SKIP][301] ([Intel XE#4130])
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
- shard-dg2-set2: NOTRUN -> [SKIP][302] ([Intel XE#4130]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
- shard-lnl: NOTRUN -> [SKIP][303] ([Intel XE#4130])
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-5/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
* igt@xe_sriov_flr@flr-twice:
- shard-dg2-set2: NOTRUN -> [SKIP][304] ([Intel XE#4273])
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@xe_sriov_flr@flr-twice.html
* igt@xe_sriov_scheduling@nonpreempt-engine-resets:
- shard-dg2-set2: NOTRUN -> [SKIP][305] ([Intel XE#4351])
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
- shard-lnl: NOTRUN -> [SKIP][306] ([Intel XE#4351])
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-5/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
- shard-bmg: NOTRUN -> [SKIP][307] ([Intel XE#4351])
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
#### Possible fixes ####
* igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
- shard-lnl: [FAIL][308] ([Intel XE#911]) -> [PASS][309] +3 other tests pass
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-0:
- shard-adlp: [DMESG-FAIL][310] ([Intel XE#4543]) -> [PASS][311] +11 other tests pass
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-adlp-1/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-3/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [INCOMPLETE][312] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345]) -> [PASS][313]
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/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][314] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][315] +1 other test pass
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-bmg: [SKIP][316] ([Intel XE#2291]) -> [PASS][317] +4 other tests pass
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [FAIL][318] ([Intel XE#4633]) -> [PASS][319]
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-bmg: [SKIP][320] ([Intel XE#1340]) -> [PASS][321]
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-bmg: [SKIP][322] ([Intel XE#2316]) -> [PASS][323] +3 other tests pass
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@kms_flip@2x-plain-flip-interruptible.html
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-2/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip@blocking-wf_vblank:
- shard-lnl: [FAIL][324] ([Intel XE#886]) -> [PASS][325] +1 other test pass
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-8/igt@kms_flip@blocking-wf_vblank.html
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-5/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@blocking-wf_vblank@a-hdmi-a1:
- shard-adlp: [FAIL][326] ([Intel XE#2882]) -> [PASS][327] +1 other test pass
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-adlp-9/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-1/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html
* igt@kms_flip@flip-vs-panning-interruptible@b-hdmi-a1:
- shard-adlp: [DMESG-WARN][328] ([Intel XE#4543]) -> [PASS][329] +16 other tests pass
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-adlp-2/igt@kms_flip@flip-vs-panning-interruptible@b-hdmi-a1.html
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-3/igt@kms_flip@flip-vs-panning-interruptible@b-hdmi-a1.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg2-set2: [INCOMPLETE][330] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible.html
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-adlp: [DMESG-FAIL][332] ([Intel XE#4543] / [Intel XE#4921]) -> [PASS][333] +1 other test pass
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-adlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y:
- shard-adlp: [FAIL][334] ([Intel XE#1874]) -> [PASS][335]
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
* igt@kms_hdr@bpc-switch@pipe-a-dp-4:
- shard-dg2-set2: [INCOMPLETE][336] ([Intel XE#5383]) -> [PASS][337] +1 other test pass
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-435/igt@kms_hdr@bpc-switch@pipe-a-dp-4.html
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@kms_hdr@bpc-switch@pipe-a-dp-4.html
* igt@kms_hdr@static-toggle:
- shard-bmg: [SKIP][338] ([Intel XE#1503]) -> [PASS][339] +1 other test pass
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@kms_hdr@static-toggle.html
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-2/igt@kms_hdr@static-toggle.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
- shard-dg2-set2: [FAIL][340] ([Intel XE#616]) -> [PASS][341] +3 other tests pass
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-466/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-bmg: [SKIP][342] ([Intel XE#4596]) -> [PASS][343]
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-x.html
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [SKIP][344] ([Intel XE#1435]) -> [PASS][345] +1 other test pass
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@kms_setmode@clone-exclusive-crtc.html
* igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
- shard-dg2-set2: [SKIP][346] ([Intel XE#1392]) -> [PASS][347] +5 other tests pass
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
* igt@xe_pm@s2idle-basic-exec:
- shard-adlp: [DMESG-WARN][348] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-adlp-3/igt@xe_pm@s2idle-basic-exec.html
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-1/igt@xe_pm@s2idle-basic-exec.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
- shard-bmg: [SKIP][350] ([Intel XE#2311]) -> [SKIP][351] ([Intel XE#2312]) +11 other tests skip
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][352] ([Intel XE#2312]) -> [SKIP][353] ([Intel XE#2311]) +14 other tests skip
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
- shard-bmg: [SKIP][354] ([Intel XE#4141]) -> [SKIP][355] ([Intel XE#2312]) +3 other tests skip
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-bmg: [SKIP][356] ([Intel XE#2312]) -> [SKIP][357] ([Intel XE#4141]) +2 other tests skip
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
- shard-bmg: [SKIP][358] ([Intel XE#2313]) -> [SKIP][359] ([Intel XE#2312]) +9 other tests skip
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
[359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: [SKIP][360] ([Intel XE#2312]) -> [SKIP][361] ([Intel XE#2313]) +12 other tests skip
[360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
[361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: [SKIP][362] ([Intel XE#5021]) -> [SKIP][363] ([Intel XE#4596])
[362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-yf.html
[363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: [SKIP][364] ([Intel XE#2426]) -> [FAIL][365] ([Intel XE#1729])
[364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html
[365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][366] ([Intel XE#2509]) -> [SKIP][367] ([Intel XE#2426])
[366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
[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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
[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#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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
[Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[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#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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
[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#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
[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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
[Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
[Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
[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#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
[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#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
[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#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
[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#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
[Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
[Intel XE#5308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5308
[Intel XE#5383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5383
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[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
Build changes
-------------
* IGT: IGT_8431 -> IGT_8432
* Linux: xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86 -> xe-pw-150943v1
IGT_8431: 8431
IGT_8432: 4871829d8b7117553eb2dc1bdb9a0d18de428a98 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86: d9007d535ea106181346f9988c97aa73a9cdfb86
xe-pw-150943v1: 150943v1
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/index.html
[-- Attachment #2: Type: text/html, Size: 92643 bytes --]
^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: ✓ Xe.CI.Full: success for drm/xe/xe_pmu: Validate gt in event supported
2025-07-02 11:00 ` ✓ Xe.CI.Full: " Patchwork
@ 2025-07-02 23:16 ` Matt Roper
0 siblings, 0 replies; 13+ messages in thread
From: Matt Roper @ 2025-07-02 23:16 UTC (permalink / raw)
To: intel-xe; +Cc: Riana Tauro
On Wed, Jul 02, 2025 at 11:00:50AM -0000, Patchwork wrote:
> == Series Details ==
>
> Series: drm/xe/xe_pmu: Validate gt in event supported
> URL : https://patchwork.freedesktop.org/series/150943/
> State : success
>
> == Summary ==
>
> CI Bug Log - changes from xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86_FULL -> xe-pw-150943v1_FULL
> ====================================================
>
> Summary
> -------
>
> **SUCCESS**
>
> No regressions found.
Applied to drm-xe-next, after the GT refactoring patches that make the
lookup work as expected.
Thanks for the patch and review.
Matt
>
>
>
> Participating hosts (4 -> 4)
> ------------------------------
>
> No changes in participating hosts
>
> Known issues
> ------------
>
> Here are the changes found in xe-pw-150943v1_FULL that come from known issues:
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
> - shard-lnl: [PASS][1] -> [FAIL][2] ([Intel XE#911]) +3 other tests fail
> [1]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
> [2]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
>
> * igt@kms_big_fb@4-tiled-64bpp-rotate-270:
> - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327])
> [3]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-8/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
> - shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#1407]) +1 other test skip
> [4]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
>
> * igt@kms_big_fb@linear-16bpp-rotate-270:
> - shard-dg2-set2: NOTRUN -> [SKIP][5] ([Intel XE#316])
> [5]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@kms_big_fb@linear-16bpp-rotate-270.html
>
> * igt@kms_big_fb@x-tiled-8bpp-rotate-180:
> - shard-lnl: [PASS][6] -> [ABORT][7] ([Intel XE#4760])
> [6]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
> [7]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-7/igt@kms_big_fb@x-tiled-8bpp-rotate-180.html
>
> * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
> - shard-adlp: NOTRUN -> [DMESG-FAIL][8] ([Intel XE#4543])
> [8]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
>
> * igt@kms_big_fb@y-tiled-addfb-size-overflow:
> - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#610])
> [9]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
> - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#610])
> [10]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
> - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1428])
> [11]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-3/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
>
> * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0:
> - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +6 other tests skip
> [12]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0.html
>
> * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip:
> - shard-adlp: [PASS][13] -> [DMESG-FAIL][14] ([Intel XE#4543]) +7 other tests dmesg-fail
> [13]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
> [14]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
>
> * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
> - shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#1124]) +1 other test skip
> [15]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-4/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
>
> * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
> - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#2191]) +1 other test skip
> [16]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
>
> * igt@kms_bw@linear-tiling-4-displays-2560x1440p:
> - shard-adlp: NOTRUN -> [SKIP][17] ([Intel XE#367])
> [17]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-8/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
> - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#367]) +3 other tests skip
> [18]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-466/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
> - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1512])
> [19]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-7/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
> - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#367])
> [20]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-2/igt@kms_bw@linear-tiling-4-displays-2560x1440p.html
>
> * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs:
> - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +7 other tests skip
> [21]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs.html
>
> * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4:
> - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#455] / [Intel XE#787]) +43 other tests skip
> [22]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html
>
> * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4:
> - shard-dg2-set2: [PASS][23] -> [INCOMPLETE][24] ([Intel XE#3862]) +1 other test incomplete
> [23]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html
> [24]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4.html
>
> * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
> - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#3432])
> [25]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
> - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#3432])
> [26]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
>
> * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6:
> - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#787]) +237 other tests skip
> [27]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html
>
> * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs:
> - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#2887]) +4 other tests skip
> [28]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-1/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html
>
> * igt@kms_cdclk@plane-scaling@pipe-b-dp-2:
> - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#4416]) +3 other tests skip
> [29]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@kms_cdclk@plane-scaling@pipe-b-dp-2.html
>
> * igt@kms_chamelium_color@ctm-green-to-red:
> - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2325])
> [30]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-2/igt@kms_chamelium_color@ctm-green-to-red.html
> - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#306]) +2 other tests skip
> [31]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-466/igt@kms_chamelium_color@ctm-green-to-red.html
>
> * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
> - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#373]) +10 other tests skip
> [32]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-466/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
> - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#373]) +1 other test skip
> [33]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
> - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2252]) +1 other test skip
> [34]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-3/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
> - shard-adlp: NOTRUN -> [SKIP][35] ([Intel XE#373])
> [35]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-4/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
>
> * igt@kms_content_protection@dp-mst-type-1:
> - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#307])
> [36]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@kms_content_protection@dp-mst-type-1.html
>
> * igt@kms_content_protection@srm@pipe-a-dp-4:
> - shard-dg2-set2: NOTRUN -> [FAIL][37] ([Intel XE#1178]) +2 other tests fail
> [37]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@kms_content_protection@srm@pipe-a-dp-4.html
>
> * igt@kms_content_protection@uevent@pipe-a-dp-4:
> - shard-dg2-set2: NOTRUN -> [FAIL][38] ([Intel XE#1188])
> [38]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-466/igt@kms_content_protection@uevent@pipe-a-dp-4.html
>
> * igt@kms_cursor_crc@cursor-offscreen-256x85:
> - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#2320]) +1 other test skip
> [39]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-256x85.html
>
> * igt@kms_cursor_crc@cursor-onscreen-512x512:
> - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#308])
> [40]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x512.html
>
> * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
> - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#309]) +1 other test skip
> [41]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-5/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
> - shard-adlp: NOTRUN -> [SKIP][42] ([Intel XE#309])
> [42]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-3/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
> - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2291])
> [43]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
>
> * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
> - shard-bmg: [PASS][44] -> [SKIP][45] ([Intel XE#2291])
> [44]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
> [45]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
>
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic:
> - shard-bmg: [PASS][46] -> [FAIL][47] ([Intel XE#4633])
> [46]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
> [47]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
>
> * igt@kms_dp_link_training@non-uhbr-mst:
> - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#4354])
> [48]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-4/igt@kms_dp_link_training@non-uhbr-mst.html
> - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#4354])
> [49]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@kms_dp_link_training@non-uhbr-mst.html
>
> * igt@kms_dp_link_training@uhbr-sst:
> - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#4356])
> [50]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@kms_dp_link_training@uhbr-sst.html
>
> * igt@kms_feature_discovery@psr1:
> - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1135])
> [51]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@kms_feature_discovery@psr1.html
>
> * igt@kms_flip@2x-flip-vs-dpms-on-nop:
> - shard-bmg: [PASS][52] -> [SKIP][53] ([Intel XE#2316]) +4 other tests skip
> [52]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-7/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
> [53]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html
>
> * igt@kms_flip@2x-nonexisting-fb-interruptible:
> - shard-adlp: NOTRUN -> [SKIP][54] ([Intel XE#310]) +1 other test skip
> [54]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-6/igt@kms_flip@2x-nonexisting-fb-interruptible.html
>
> * igt@kms_flip@2x-plain-flip-ts-check:
> - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#1421]) +2 other tests skip
> [55]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@kms_flip@2x-plain-flip-ts-check.html
>
> * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1:
> - shard-adlp: [PASS][56] -> [DMESG-WARN][57] ([Intel XE#4543]) +16 other tests dmesg-warn
> [56]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-adlp-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1.html
> [57]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-hdmi-a1.html
>
> * igt@kms_flip@flip-vs-expired-vblank@b-edp1:
> - shard-lnl: [PASS][58] -> [FAIL][59] ([Intel XE#301]) +1 other test fail
> [58]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
> [59]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@b-edp1.html
>
> * igt@kms_flip@flip-vs-suspend@c-dp4:
> - shard-dg2-set2: [PASS][60] -> [INCOMPLETE][61] ([Intel XE#2049] / [Intel XE#2597]) +1 other test incomplete
> [60]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-464/igt@kms_flip@flip-vs-suspend@c-dp4.html
> [61]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@kms_flip@flip-vs-suspend@c-dp4.html
>
> * igt@kms_flip@flip-vs-suspend@d-hdmi-a1:
> - shard-adlp: [PASS][62] -> [DMESG-WARN][63] ([Intel XE#2953] / [Intel XE#4173]) +5 other tests dmesg-warn
> [62]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-adlp-9/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html
> [63]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-8/igt@kms_flip@flip-vs-suspend@d-hdmi-a1.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
> - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#455]) +15 other tests skip
> [64]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-466/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
>
> * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
> - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2293] / [Intel XE#2380]) +1 other test skip
> [65]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode:
> - shard-adlp: [PASS][66] -> [DMESG-FAIL][67] ([Intel XE#4543] / [Intel XE#4921]) +5 other tests dmesg-fail
> [66]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-adlp-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
> [67]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling:
> - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#1401] / [Intel XE#1745])
> [68]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode:
> - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1401])
> [69]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-default-mode.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode:
> - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#2293]) +1 other test skip
> [70]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling@pipe-a-valid-mode.html
>
> * igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y:
> - shard-adlp: [PASS][71] -> [FAIL][72] ([Intel XE#1874])
> [71]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y.html
> [72]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-c-hdmi-a-1-x-to-y.html
>
> * igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt:
> - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#2311]) +10 other tests skip
> [73]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
> - shard-adlp: NOTRUN -> [SKIP][74] ([Intel XE#651])
> [74]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-3/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-indfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
> - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#651]) +3 other tests skip
> [75]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
>
> * igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary:
> - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#4141]) +2 other tests skip
> [76]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-shrfb-scaledprimary.html
>
> * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render:
> - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#651]) +35 other tests skip
> [77]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html
>
> * igt@kms_frontbuffer_tracking@fbcdrrs-2p-rte:
> - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#656]) +7 other tests skip
> [78]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-rte.html
>
> * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
> - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2312]) +3 other tests skip
> [79]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc:
> - shard-adlp: NOTRUN -> [SKIP][80] ([Intel XE#656]) +1 other test skip
> [80]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt:
> - shard-dg2-set2: NOTRUN -> [SKIP][81] ([Intel XE#653]) +32 other tests skip
> [81]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
> - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2313]) +8 other tests skip
> [82]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
>
> * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
> - shard-adlp: NOTRUN -> [SKIP][83] ([Intel XE#653])
> [83]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
>
> * igt@kms_hdr@invalid-hdr:
> - shard-dg2-set2: [PASS][84] -> [SKIP][85] ([Intel XE#455])
> [84]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-463/igt@kms_hdr@invalid-hdr.html
> [85]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@kms_hdr@invalid-hdr.html
>
> * igt@kms_joiner@invalid-modeset-force-big-joiner:
> - shard-bmg: [PASS][86] -> [SKIP][87] ([Intel XE#3012])
> [86]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
> [87]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
>
> * igt@kms_joiner@invalid-modeset-ultra-joiner:
> - shard-dg2-set2: NOTRUN -> [SKIP][88] ([Intel XE#2927])
> [88]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@kms_joiner@invalid-modeset-ultra-joiner.html
> - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2927])
> [89]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html
>
> * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
> - shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#2925])
> [90]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
>
> * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b:
> - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#2763]) +3 other tests skip
> [91]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-4/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b.html
>
> * igt@kms_pm_dc@dc6-dpms:
> - shard-lnl: [PASS][92] -> [FAIL][93] ([Intel XE#718])
> [92]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html
> [93]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html
>
> * igt@kms_pm_rpm@legacy-planes@plane-53:
> - shard-bmg: [PASS][94] -> [DMESG-WARN][95] ([Intel XE#3428]) +1 other test dmesg-warn
> [94]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-1/igt@kms_pm_rpm@legacy-planes@plane-53.html
> [95]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-4/igt@kms_pm_rpm@legacy-planes@plane-53.html
>
> * igt@kms_pm_rpm@modeset-lpsp:
> - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836])
> [96]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp.html
>
> * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
> - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#1489]) +2 other tests skip
> [97]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
> - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#2893])
> [98]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-8/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
>
> * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1:
> - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#4608]) +2 other tests skip
> [99]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-sf@pipe-a-edp-1.html
>
> * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf:
> - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#1489]) +6 other tests skip
> [100]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html
>
> * igt@kms_psr@fbc-pr-cursor-blt:
> - shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2234] / [Intel XE#2850]) +8 other tests skip
> [101]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-3/igt@kms_psr@fbc-pr-cursor-blt.html
>
> * igt@kms_psr@fbc-psr-cursor-blt:
> - shard-adlp: NOTRUN -> [SKIP][102] ([Intel XE#2850] / [Intel XE#929])
> [102]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-3/igt@kms_psr@fbc-psr-cursor-blt.html
>
> * igt@kms_psr@fbc-psr2-sprite-plane-move:
> - shard-dg2-set2: NOTRUN -> [SKIP][103] ([Intel XE#2850] / [Intel XE#929]) +16 other tests skip
> [103]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@kms_psr@fbc-psr2-sprite-plane-move.html
>
> * igt@kms_psr@pr-cursor-plane-onoff:
> - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1406]) +1 other test skip
> [104]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-2/igt@kms_psr@pr-cursor-plane-onoff.html
>
> * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
> - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2414])
> [105]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
>
> * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
> - shard-dg2-set2: NOTRUN -> [SKIP][106] ([Intel XE#3414]) +1 other test skip
> [106]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
>
> * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
> - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#3414] / [Intel XE#3904])
> [107]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
>
> * igt@kms_setmode@basic@pipe-b-edp-1:
> - shard-lnl: [PASS][108] -> [FAIL][109] ([Intel XE#2883]) +2 other tests fail
> [108]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-6/igt@kms_setmode@basic@pipe-b-edp-1.html
> [109]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-4/igt@kms_setmode@basic@pipe-b-edp-1.html
>
> * igt@kms_tv_load_detect@load-detect:
> - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#330])
> [110]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@kms_tv_load_detect@load-detect.html
> - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#330])
> [111]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@kms_tv_load_detect@load-detect.html
> - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#2450])
> [112]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@kms_tv_load_detect@load-detect.html
>
> * igt@kms_vrr@flip-basic:
> - shard-adlp: NOTRUN -> [SKIP][113] ([Intel XE#455])
> [113]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-3/igt@kms_vrr@flip-basic.html
>
> * igt@kms_vrr@flip-suspend:
> - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#1499]) +1 other test skip
> [114]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@kms_vrr@flip-suspend.html
>
> * igt@kms_vrr@lobf:
> - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2168])
> [115]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-2/igt@kms_vrr@lobf.html
> - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#2168])
> [116]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@kms_vrr@lobf.html
>
> * igt@kms_vrr@negative-basic:
> - shard-bmg: [PASS][117] -> [SKIP][118] ([Intel XE#1499])
> [117]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-8/igt@kms_vrr@negative-basic.html
> [118]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_vrr@negative-basic.html
>
> * igt@xe_eu_stall@invalid-gt-id:
> - shard-dg2-set2: NOTRUN -> [SKIP][119] ([Intel XE#5308])
> [119]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@xe_eu_stall@invalid-gt-id.html
>
> * igt@xe_eudebug@basic-close:
> - shard-dg2-set2: NOTRUN -> [SKIP][120] ([Intel XE#4837]) +11 other tests skip
> [120]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@xe_eudebug@basic-close.html
>
> * igt@xe_eudebug@discovery-race:
> - shard-adlp: NOTRUN -> [SKIP][121] ([Intel XE#4837])
> [121]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-1/igt@xe_eudebug@discovery-race.html
>
> * igt@xe_eudebug@sysfs-toggle:
> - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#4837]) +2 other tests skip
> [122]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@xe_eudebug@sysfs-toggle.html
>
> * igt@xe_eudebug_online@single-step-one:
> - shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#4837]) +5 other tests skip
> [123]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-4/igt@xe_eudebug_online@single-step-one.html
>
> * igt@xe_evict@evict-beng-small:
> - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#688])
> [124]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-7/igt@xe_evict@evict-beng-small.html
>
> * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind:
> - shard-dg2-set2: [PASS][125] -> [SKIP][126] ([Intel XE#1392]) +4 other tests skip
> [125]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-435/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
> [126]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html
>
> * igt@xe_exec_basic@multigpu-no-exec-null:
> - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2322]) +1 other test skip
> [127]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-8/igt@xe_exec_basic@multigpu-no-exec-null.html
>
> * igt@xe_exec_basic@multigpu-no-exec-null-defer-bind:
> - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#1392])
> [128]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@xe_exec_basic@multigpu-no-exec-null-defer-bind.html
>
> * igt@xe_exec_fault_mode@once-invalid-userptr-fault:
> - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#288]) +23 other tests skip
> [129]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html
>
> * igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind:
> - shard-adlp: NOTRUN -> [SKIP][130] ([Intel XE#288]) +1 other test skip
> [130]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr-rebind.html
>
> * igt@xe_exec_mix_modes@exec-simple-batch-store-lr:
> - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#2360])
> [131]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html
>
> * igt@xe_exec_system_allocator@once-malloc-fork-read:
> - shard-adlp: NOTRUN -> [SKIP][132] ([Intel XE#4915]) +17 other tests skip
> [132]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-8/igt@xe_exec_system_allocator@once-malloc-fork-read.html
>
> * igt@xe_exec_system_allocator@once-mmap-huge-nomemset:
> - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#4943]) +7 other tests skip
> [133]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@xe_exec_system_allocator@once-mmap-huge-nomemset.html
>
> * igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-nomemset:
> - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#4915]) +256 other tests skip
> [134]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@xe_exec_system_allocator@process-many-large-execqueues-mmap-nomemset.html
>
> * igt@xe_exec_system_allocator@twice-mmap-new-huge:
> - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#4943]) +6 other tests skip
> [135]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@xe_exec_system_allocator@twice-mmap-new-huge.html
>
> * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
> - shard-adlp: NOTRUN -> [SKIP][136] ([Intel XE#2229])
> [136]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
> - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#2229])
> [137]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
> - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#2229])
> [138]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-3/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
>
> * igt@xe_mmap@small-bar:
> - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#512])
> [139]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@xe_mmap@small-bar.html
>
> * igt@xe_module_load@load:
> - shard-lnl: ([PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [PASS][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161], [PASS][162], [PASS][163], [PASS][164]) -> ([PASS][165], [PASS][166], [PASS][167], [PASS][168], [PASS][169], [PASS][170], [PASS][171], [PASS][172], [PASS][173], [PASS][174], [PASS][175], [PASS][176], [PASS][177], [PASS][178], [PASS][179], [PASS][180], [PASS][181], [PASS][182], [PASS][183], [PASS][184], [PASS][185], [PASS][186], [PASS][187], [PASS][188], [SKIP][189]) ([Intel XE#378])
> [140]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-5/igt@xe_module_load@load.html
> [141]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-7/igt@xe_module_load@load.html
> [142]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-2/igt@xe_module_load@load.html
> [143]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-4/igt@xe_module_load@load.html
> [144]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-1/igt@xe_module_load@load.html
> [145]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-8/igt@xe_module_load@load.html
> [146]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-6/igt@xe_module_load@load.html
> [147]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-6/igt@xe_module_load@load.html
> [148]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-5/igt@xe_module_load@load.html
> [149]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-5/igt@xe_module_load@load.html
> [150]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-1/igt@xe_module_load@load.html
> [151]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-4/igt@xe_module_load@load.html
> [152]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-8/igt@xe_module_load@load.html
> [153]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-7/igt@xe_module_load@load.html
> [154]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-6/igt@xe_module_load@load.html
> [155]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-7/igt@xe_module_load@load.html
> [156]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-4/igt@xe_module_load@load.html
> [157]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-2/igt@xe_module_load@load.html
> [158]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-2/igt@xe_module_load@load.html
> [159]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-3/igt@xe_module_load@load.html
> [160]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-3/igt@xe_module_load@load.html
> [161]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-3/igt@xe_module_load@load.html
> [162]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-3/igt@xe_module_load@load.html
> [163]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-8/igt@xe_module_load@load.html
> [164]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-5/igt@xe_module_load@load.html
> [165]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-2/igt@xe_module_load@load.html
> [166]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-3/igt@xe_module_load@load.html
> [167]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-3/igt@xe_module_load@load.html
> [168]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-4/igt@xe_module_load@load.html
> [169]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@xe_module_load@load.html
> [170]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-7/igt@xe_module_load@load.html
> [171]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-5/igt@xe_module_load@load.html
> [172]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-5/igt@xe_module_load@load.html
> [173]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-3/igt@xe_module_load@load.html
> [174]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-7/igt@xe_module_load@load.html
> [175]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-7/igt@xe_module_load@load.html
> [176]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-2/igt@xe_module_load@load.html
> [177]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@xe_module_load@load.html
> [178]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-6/igt@xe_module_load@load.html
> [179]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-7/igt@xe_module_load@load.html
> [180]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-1/igt@xe_module_load@load.html
> [181]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-2/igt@xe_module_load@load.html
> [182]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-5/igt@xe_module_load@load.html
> [183]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-4/igt@xe_module_load@load.html
> [184]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-4/igt@xe_module_load@load.html
> [185]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-1/igt@xe_module_load@load.html
> [186]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-8/igt@xe_module_load@load.html
> [187]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-8/igt@xe_module_load@load.html
> [188]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-8/igt@xe_module_load@load.html
> [189]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-7/igt@xe_module_load@load.html
> - shard-bmg: ([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], [PASS][234], [PASS][235], [PASS][236], [PASS][237], [PASS][238], [PASS][239], [PASS][240]) ([Intel XE#2457])
> [190]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-8/igt@xe_module_load@load.html
> [191]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-1/igt@xe_module_load@load.html
> [192]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-3/igt@xe_module_load@load.html
> [193]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-2/igt@xe_module_load@load.html
> [194]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-3/igt@xe_module_load@load.html
> [195]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-2/igt@xe_module_load@load.html
> [196]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-2/igt@xe_module_load@load.html
> [197]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-7/igt@xe_module_load@load.html
> [198]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-4/igt@xe_module_load@load.html
> [199]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-4/igt@xe_module_load@load.html
> [200]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-3/igt@xe_module_load@load.html
> [201]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-4/igt@xe_module_load@load.html
> [202]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-8/igt@xe_module_load@load.html
> [203]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-1/igt@xe_module_load@load.html
> [204]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-8/igt@xe_module_load@load.html
> [205]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-1/igt@xe_module_load@load.html
> [206]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-7/igt@xe_module_load@load.html
> [207]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-7/igt@xe_module_load@load.html
> [208]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-1/igt@xe_module_load@load.html
> [209]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@xe_module_load@load.html
> [210]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@xe_module_load@load.html
> [211]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-3/igt@xe_module_load@load.html
> [212]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@xe_module_load@load.html
> [213]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-7/igt@xe_module_load@load.html
> [214]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@xe_module_load@load.html
> [215]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-3/igt@xe_module_load@load.html
> [216]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-3/igt@xe_module_load@load.html
> [217]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-4/igt@xe_module_load@load.html
> [218]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-4/igt@xe_module_load@load.html
> [219]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-2/igt@xe_module_load@load.html
> [220]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-3/igt@xe_module_load@load.html
> [221]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@xe_module_load@load.html
> [222]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-8/igt@xe_module_load@load.html
> [223]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-8/igt@xe_module_load@load.html
> [224]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-8/igt@xe_module_load@load.html
> [225]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@xe_module_load@load.html
> [226]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@xe_module_load@load.html
> [227]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-8/igt@xe_module_load@load.html
> [228]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@xe_module_load@load.html
> [229]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@xe_module_load@load.html
> [230]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-8/igt@xe_module_load@load.html
> [231]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@xe_module_load@load.html
> [232]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@xe_module_load@load.html
> [233]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@xe_module_load@load.html
> [234]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@xe_module_load@load.html
> [235]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-3/igt@xe_module_load@load.html
> [236]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-4/igt@xe_module_load@load.html
> [237]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@xe_module_load@load.html
> [238]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@xe_module_load@load.html
> [239]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-2/igt@xe_module_load@load.html
> [240]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-2/igt@xe_module_load@load.html
> - shard-dg2-set2: ([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], [PASS][282], [PASS][283], [PASS][284], [PASS][285], [PASS][286], [PASS][287], [PASS][288], [PASS][289], [PASS][290], [PASS][291]) ([Intel XE#378])
> [241]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-435/igt@xe_module_load@load.html
> [242]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-433/igt@xe_module_load@load.html
> [243]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-433/igt@xe_module_load@load.html
> [244]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-433/igt@xe_module_load@load.html
> [245]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-464/igt@xe_module_load@load.html
> [246]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-466/igt@xe_module_load@load.html
> [247]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-432/igt@xe_module_load@load.html
> [248]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-432/igt@xe_module_load@load.html
> [249]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-463/igt@xe_module_load@load.html
> [250]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-463/igt@xe_module_load@load.html
> [251]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-432/igt@xe_module_load@load.html
> [252]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-432/igt@xe_module_load@load.html
> [253]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-432/igt@xe_module_load@load.html
> [254]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-466/igt@xe_module_load@load.html
> [255]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-464/igt@xe_module_load@load.html
> [256]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-463/igt@xe_module_load@load.html
> [257]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-466/igt@xe_module_load@load.html
> [258]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-466/igt@xe_module_load@load.html
> [259]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-435/igt@xe_module_load@load.html
> [260]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-435/igt@xe_module_load@load.html
> [261]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-464/igt@xe_module_load@load.html
> [262]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-435/igt@xe_module_load@load.html
> [263]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-463/igt@xe_module_load@load.html
> [264]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-463/igt@xe_module_load@load.html
> [265]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-464/igt@xe_module_load@load.html
> [266]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@xe_module_load@load.html
> [267]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@xe_module_load@load.html
> [268]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-466/igt@xe_module_load@load.html
> [269]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@xe_module_load@load.html
> [270]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@xe_module_load@load.html
> [271]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@xe_module_load@load.html
> [272]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@xe_module_load@load.html
> [273]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@xe_module_load@load.html
> [274]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@xe_module_load@load.html
> [275]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@xe_module_load@load.html
> [276]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@xe_module_load@load.html
> [277]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@xe_module_load@load.html
> [278]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@xe_module_load@load.html
> [279]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@xe_module_load@load.html
> [280]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@xe_module_load@load.html
> [281]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-466/igt@xe_module_load@load.html
> [282]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@xe_module_load@load.html
> [283]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@xe_module_load@load.html
> [284]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@xe_module_load@load.html
> [285]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@xe_module_load@load.html
> [286]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@xe_module_load@load.html
> [287]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-466/igt@xe_module_load@load.html
> [288]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-466/igt@xe_module_load@load.html
> [289]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@xe_module_load@load.html
> [290]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@xe_module_load@load.html
> [291]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@xe_module_load@load.html
>
> * igt@xe_oa@buffer-size:
> - shard-dg2-set2: NOTRUN -> [SKIP][292] ([Intel XE#4501])
> [292]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-466/igt@xe_oa@buffer-size.html
>
> * igt@xe_oa@closed-fd-and-unmapped-access:
> - shard-dg2-set2: NOTRUN -> [SKIP][293] ([Intel XE#2541] / [Intel XE#3573]) +5 other tests skip
> [293]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@xe_oa@closed-fd-and-unmapped-access.html
>
> * igt@xe_oa@syncs-ufence-wait:
> - shard-dg2-set2: NOTRUN -> [SKIP][294] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) +1 other test skip
> [294]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@xe_oa@syncs-ufence-wait.html
>
> * igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p:
> - shard-dg2-set2: NOTRUN -> [FAIL][295] ([Intel XE#1173]) +1 other test fail
> [295]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@xe_peer2peer@write@write-gpua-vram01-gpub-system-p2p.html
>
> * igt@xe_pxp@pxp-termination-key-update-post-termination-irq:
> - shard-dg2-set2: NOTRUN -> [SKIP][296] ([Intel XE#4733]) +1 other test skip
> [296]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@xe_pxp@pxp-termination-key-update-post-termination-irq.html
>
> * igt@xe_query@multigpu-query-invalid-cs-cycles:
> - shard-bmg: NOTRUN -> [SKIP][297] ([Intel XE#944])
> [297]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@xe_query@multigpu-query-invalid-cs-cycles.html
> - shard-lnl: NOTRUN -> [SKIP][298] ([Intel XE#944])
> [298]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-5/igt@xe_query@multigpu-query-invalid-cs-cycles.html
>
> * igt@xe_query@multigpu-query-topology:
> - shard-dg2-set2: NOTRUN -> [SKIP][299] ([Intel XE#944]) +1 other test skip
> [299]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@xe_query@multigpu-query-topology.html
>
> * igt@xe_render_copy@render-stress-0-copies:
> - shard-dg2-set2: NOTRUN -> [SKIP][300] ([Intel XE#4814])
> [300]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@xe_render_copy@render-stress-0-copies.html
>
> * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
> - shard-bmg: NOTRUN -> [SKIP][301] ([Intel XE#4130])
> [301]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
> - shard-dg2-set2: NOTRUN -> [SKIP][302] ([Intel XE#4130]) +1 other test skip
> [302]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
> - shard-lnl: NOTRUN -> [SKIP][303] ([Intel XE#4130])
> [303]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-5/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
>
> * igt@xe_sriov_flr@flr-twice:
> - shard-dg2-set2: NOTRUN -> [SKIP][304] ([Intel XE#4273])
> [304]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@xe_sriov_flr@flr-twice.html
>
> * igt@xe_sriov_scheduling@nonpreempt-engine-resets:
> - shard-dg2-set2: NOTRUN -> [SKIP][305] ([Intel XE#4351])
> [305]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
> - shard-lnl: NOTRUN -> [SKIP][306] ([Intel XE#4351])
> [306]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-5/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
> - shard-bmg: NOTRUN -> [SKIP][307] ([Intel XE#4351])
> [307]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@xe_sriov_scheduling@nonpreempt-engine-resets.html
>
>
> #### Possible fixes ####
>
> * igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1:
> - shard-lnl: [FAIL][308] ([Intel XE#911]) -> [PASS][309] +3 other tests pass
> [308]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
> [309]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear@pipe-c-edp-1.html
>
> * igt@kms_big_fb@x-tiled-8bpp-rotate-0:
> - shard-adlp: [DMESG-FAIL][310] ([Intel XE#4543]) -> [PASS][311] +11 other tests pass
> [310]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-adlp-1/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
> [311]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-3/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
>
> * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
> - shard-dg2-set2: [INCOMPLETE][312] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#4345]) -> [PASS][313]
> [312]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
> [313]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/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][314] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3113] / [Intel XE#4212] / [Intel XE#4522]) -> [PASS][315] +1 other test pass
> [314]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
> [315]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
>
> * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
> - shard-bmg: [SKIP][316] ([Intel XE#2291]) -> [PASS][317] +4 other tests pass
> [316]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
> [317]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
>
> * igt@kms_cursor_legacy@flip-vs-cursor-legacy:
> - shard-bmg: [FAIL][318] ([Intel XE#4633]) -> [PASS][319]
> [318]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
> [319]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
>
> * igt@kms_dither@fb-8bpc-vs-panel-6bpc:
> - shard-bmg: [SKIP][320] ([Intel XE#1340]) -> [PASS][321]
> [320]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
> [321]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
>
> * igt@kms_flip@2x-plain-flip-interruptible:
> - shard-bmg: [SKIP][322] ([Intel XE#2316]) -> [PASS][323] +3 other tests pass
> [322]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@kms_flip@2x-plain-flip-interruptible.html
> [323]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-2/igt@kms_flip@2x-plain-flip-interruptible.html
>
> * igt@kms_flip@blocking-wf_vblank:
> - shard-lnl: [FAIL][324] ([Intel XE#886]) -> [PASS][325] +1 other test pass
> [324]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-lnl-8/igt@kms_flip@blocking-wf_vblank.html
> [325]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-lnl-5/igt@kms_flip@blocking-wf_vblank.html
>
> * igt@kms_flip@blocking-wf_vblank@a-hdmi-a1:
> - shard-adlp: [FAIL][326] ([Intel XE#2882]) -> [PASS][327] +1 other test pass
> [326]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-adlp-9/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html
> [327]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-1/igt@kms_flip@blocking-wf_vblank@a-hdmi-a1.html
>
> * igt@kms_flip@flip-vs-panning-interruptible@b-hdmi-a1:
> - shard-adlp: [DMESG-WARN][328] ([Intel XE#4543]) -> [PASS][329] +16 other tests pass
> [328]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-adlp-2/igt@kms_flip@flip-vs-panning-interruptible@b-hdmi-a1.html
> [329]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-3/igt@kms_flip@flip-vs-panning-interruptible@b-hdmi-a1.html
>
> * igt@kms_flip@flip-vs-suspend-interruptible:
> - shard-dg2-set2: [INCOMPLETE][330] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][331]
> [330]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible.html
> [331]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-432/igt@kms_flip@flip-vs-suspend-interruptible.html
>
> * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
> - shard-adlp: [DMESG-FAIL][332] ([Intel XE#4543] / [Intel XE#4921]) -> [PASS][333] +1 other test pass
> [332]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-adlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
> [333]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
>
> * igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y:
> - shard-adlp: [FAIL][334] ([Intel XE#1874]) -> [PASS][335]
> [334]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-adlp-9/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
> [335]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-3/igt@kms_flip_tiling@flip-change-tiling@pipe-d-hdmi-a-1-x-to-y.html
>
> * igt@kms_hdr@bpc-switch@pipe-a-dp-4:
> - shard-dg2-set2: [INCOMPLETE][336] ([Intel XE#5383]) -> [PASS][337] +1 other test pass
> [336]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-435/igt@kms_hdr@bpc-switch@pipe-a-dp-4.html
> [337]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-433/igt@kms_hdr@bpc-switch@pipe-a-dp-4.html
>
> * igt@kms_hdr@static-toggle:
> - shard-bmg: [SKIP][338] ([Intel XE#1503]) -> [PASS][339] +1 other test pass
> [338]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@kms_hdr@static-toggle.html
> [339]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-2/igt@kms_hdr@static-toggle.html
>
> * igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64:
> - shard-dg2-set2: [FAIL][340] ([Intel XE#616]) -> [PASS][341] +3 other tests pass
> [340]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-466/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
> [341]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-435/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-6-size-64.html
>
> * igt@kms_plane_multiple@2x-tiling-x:
> - shard-bmg: [SKIP][342] ([Intel XE#4596]) -> [PASS][343]
> [342]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-x.html
> [343]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-3/igt@kms_plane_multiple@2x-tiling-x.html
>
> * igt@kms_setmode@clone-exclusive-crtc:
> - shard-bmg: [SKIP][344] ([Intel XE#1435]) -> [PASS][345] +1 other test pass
> [344]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@kms_setmode@clone-exclusive-crtc.html
> [345]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@kms_setmode@clone-exclusive-crtc.html
>
> * igt@xe_exec_basic@multigpu-once-basic-defer-mmap:
> - shard-dg2-set2: [SKIP][346] ([Intel XE#1392]) -> [PASS][347] +5 other tests pass
> [346]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
> [347]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-dg2-464/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html
>
> * igt@xe_pm@s2idle-basic-exec:
> - shard-adlp: [DMESG-WARN][348] ([Intel XE#2953] / [Intel XE#4173]) -> [PASS][349]
> [348]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-adlp-3/igt@xe_pm@s2idle-basic-exec.html
> [349]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-adlp-1/igt@xe_pm@s2idle-basic-exec.html
>
>
> #### Warnings ####
>
> * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render:
> - shard-bmg: [SKIP][350] ([Intel XE#2311]) -> [SKIP][351] ([Intel XE#2312]) +11 other tests skip
> [350]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
> [351]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html
>
> * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
> - shard-bmg: [SKIP][352] ([Intel XE#2312]) -> [SKIP][353] ([Intel XE#2311]) +14 other tests skip
> [352]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
> [353]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
> - shard-bmg: [SKIP][354] ([Intel XE#4141]) -> [SKIP][355] ([Intel XE#2312]) +3 other tests skip
> [354]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
> [355]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
> - shard-bmg: [SKIP][356] ([Intel XE#2312]) -> [SKIP][357] ([Intel XE#4141]) +2 other tests skip
> [356]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
> [357]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
>
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw:
> - shard-bmg: [SKIP][358] ([Intel XE#2313]) -> [SKIP][359] ([Intel XE#2312]) +9 other tests skip
> [358]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
> [359]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html
>
> * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
> - shard-bmg: [SKIP][360] ([Intel XE#2312]) -> [SKIP][361] ([Intel XE#2313]) +12 other tests skip
> [360]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
> [361]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
>
> * igt@kms_plane_multiple@2x-tiling-yf:
> - shard-bmg: [SKIP][362] ([Intel XE#5021]) -> [SKIP][363] ([Intel XE#4596])
> [362]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-2/igt@kms_plane_multiple@2x-tiling-yf.html
> [363]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-6/igt@kms_plane_multiple@2x-tiling-yf.html
>
> * igt@kms_tiled_display@basic-test-pattern:
> - shard-bmg: [SKIP][364] ([Intel XE#2426]) -> [FAIL][365] ([Intel XE#1729])
> [364]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern.html
> [365]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html
>
> * igt@kms_tiled_display@basic-test-pattern-with-chamelium:
> - shard-bmg: [SKIP][366] ([Intel XE#2509]) -> [SKIP][367] ([Intel XE#2426])
> [366]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
> [367]: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
>
>
> {name}: This element is suppressed. This means it is ignored when computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
> [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
> [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135
> [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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
> [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
> [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
> [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
> [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
> [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
> [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428
> [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#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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
> [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
> [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
> [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
> [Intel XE#1874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1874
> [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049
> [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
> [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#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#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
> [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
> [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
> [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
> [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
> [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360
> [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
> [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414
> [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
> [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450
> [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
> [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
> [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
> [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
> [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
> [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
> [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
> [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
> [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
> [Intel XE#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883
> [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#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
> [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
> [Intel XE#2953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2953
> [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
> [Intel XE#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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
> [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
> [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330
> [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
> [Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428
> [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
> [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573
> [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#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
> [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
> [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
> [Intel XE#4173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4173
> [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212
> [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273
> [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#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501
> [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#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633
> [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#4915]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4915
> [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#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
> [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512
> [Intel XE#5191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5191
> [Intel XE#5308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5308
> [Intel XE#5383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5383
> [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
> [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
> [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
> [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
> [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
> [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
> [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
> [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
> [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
> [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
> [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
>
>
> Build changes
> -------------
>
> * IGT: IGT_8431 -> IGT_8432
> * Linux: xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86 -> xe-pw-150943v1
>
> IGT_8431: 8431
> IGT_8432: 4871829d8b7117553eb2dc1bdb9a0d18de428a98 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> xe-3325-d9007d535ea106181346f9988c97aa73a9cdfb86: d9007d535ea106181346f9988c97aa73a9cdfb86
> xe-pw-150943v1: 150943v1
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/xe-pw-150943v1/index.html
--
Matt Roper
Graphics Software Engineer
Linux GPU Platform Enablement
Intel Corporation
^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2025-07-02 23:16 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-30 9:37 [PATCH] drm/xe/xe_pmu: Validate gt in event supported Riana Tauro
2025-06-30 15:33 ` Poosa, Karthik
2025-06-30 16:32 ` Riana Tauro
2025-06-30 22:28 ` [PATCH] " Lucas De Marchi
2025-07-01 5:08 ` Riana Tauro
2025-07-01 20:31 ` Matt Roper
2025-07-01 21:09 ` Lucas De Marchi
2025-07-01 21:19 ` Matt Roper
2025-07-02 4:54 ` Riana Tauro
2025-06-30 23:49 ` ✓ CI.KUnit: success for " Patchwork
2025-07-01 0:42 ` ✓ Xe.CI.BAT: " Patchwork
2025-07-02 11:00 ` ✓ Xe.CI.Full: " Patchwork
2025-07-02 23:16 ` Matt Roper
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox